Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
I have this EA that places stop orders above and below current price. What I need is an EA that will place limit orders instead of stop orders above and below current price. Can you change this EA to do just that while keeping all of the parameters the same?
How to make an indicator work on another indicator?
If you drop the basic moving average (included as indicator in MT4) on another indicator, it is possible to calculate the MA of the indicator, but how do you change a custom indicator in such a way that it's possible to drop it on another indicator?
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
//----
if(counted_bars<0) return(-1);// if there is a error then exit and return -1
if(counted_bars>0) counted_bars--;
int pos = Bars-counted_bars;
Hola
I'm teaching mql.
I read Usage of Technical Indicators - Simple Programs in MQL4 - MQL4 Tutorial, but i don't find something like
Is it possible to color a single bar?Exemple during test your EA u can color the entry bar...
On metatrader i don't see any watch system, like to see the field of my variabile array there is in all C compilator
I wanto to to do this stupid system:
When price broke and close up the trend evelope (look the pic wich yellow cirlce) i open an alert and color a breakbar.
But my problem is that this that i read only the trend up indicator and not during short period why??