• Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)

Universal Indicator EA - Expert Advisor for any indicator

Hi sir how are you. i am very excited on this EA and its very helpful for me , sir i have a request please add 3 more input option
when open a trade then trade willbe close after 1/2/3 etc candle . trade stop loss close previous candle high low . its very important issue for me and some other indicator .
input tye
-----------
Trade close after candle = 1/2/3 etc
Trade sl candle high low = true /false
trade sl candle high low + pips = ?

Version 3 released with new updates



  • Two Types of Indicator Signals Supported
  1. SINGLE_SIGNAL - Example = Arrow Signals
  2. CONTINUOUS_SIGNAL - Example = Trend Line Signals


  • Trading Time Settings Added


  1. Open and Close Orders at given time under settings


Download Latest Version from https://drive.google.com/drive/folders/1d2ocl5qp6EZk6Oy-PEbU6qTPfdLrqCaK

Enjoy :)
 
"Universal Indicator EA" without any restrictions (No Time or Account Type Limit)

This EA is made with the concept of using a single expert advisor for all indicators
So It can work with any Indicator that gives Buy and Sell Signals.

This can work in demo or live account for unlimited period of time .

You can use it on any time frame ...

In settings Give the name of Indicator to be used by EA and start trading.
EA will use default settings of given Indicator.

Verify trades taken by EA comparing with Indicator signals. If found wrong find the right buffer for signal from indicator and change that under buffer settings.

Use it on demo first for at least a week ...
Congratulations for the beautiful work
This EA is getting better and better.
 
Hello Author, Thanks for your Wonderful EA. Please take this into consideration, Put Stoploss at swing high/low. Please add it in your next version.

Thank you
 
Hello Author,my indicator is giving signals of same side at different points. This EA is taking positions at all signals in the same side. It would be better to take another position of same side if there is no position in the same side. Please add this function.
 
Author please.

"Maximus Numbers of Trades" only opens one order at a time by changing it to 2 or more.
Review the code if it is similar to the one that works.

#include <stdlib.mqh>
#include <stderror.mqh>

extern int MaxOpenTrades = 4;
......
......
}
//test maximum trades
if((type % 2 == 0 && long_trades >= MaxLongTrades)
|| (type % 2 == 1 && short_trades >= MaxShortTrades)
|| (long_trades + short_trades >= MaxOpenTrades)
|| (type > 1 && long_pending + short_pending >= MaxPendingOrders))
{
myAlert("print", "Order"+ordername_+" not sent, maximum reached");
return(-1);
}
 
screenshot_133-jpg.104694
 
Afsal i have an indicator that looks very goood when you follow the arrows on charts but when trading it looks like it miss some arrows and end up losing , but when I look at the charts I will see an arrow but no trade no closing trade
 
Back
Top