Ya that does not help? Does anyone know what the update code would be?

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 would like to get this to work in Metratrader 4 can anyone help?
Basically I want to back test and mark the chart with an x when the conditions are meet.
Thank You,
Raymond Minardi
rminardi1@verizon.net
if iMA(1,MODE_EMA,0) > iMA(1,MODE_EMA,2)
then Begin
SetArrow(CurTime,Bid,SYMBOL_STOPSIGN,Blue);
SetText(CurTime, High+(5*Point), When, Blue);
end;
//Short
//Retrace Exit
if iMA(1,MODE_EMA,0) < iMA(1,MODE_EMA,2)
then begin
SetArrow(CurTime,Ask,SYMBOL_STOPSIGN,Fuchsia);
end;