
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi,
I have the below formula and would like to translate it to MQL4. Would you pls help me?
. hmmessage P { margin:0px; padding:0px } body.hmmessage { font-size: 10pt; font-family:Verdana } MACD MS Look Ahead I
a:=12;b:=26;x:=2/(1+a);y:=2/(1+b);
top:=Mov(C,b,E)*(1-y)-Mov(C,a,E)*(1-x);
{C required for trigger line crossover}
(Mov(MACD(),9,E)+top)/(x-y);
{C required for 0 value MACD}
top/(x-y)