raymond1 / Publications
Forum
Old Marks
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
Code change from v3 to v4
Hi I'm updating my code from version 3 to version 4 and I could use some help! Here is my version 3 code: if Period=60 and iMA(10,MODE_EMA,0) > iMA(20,MODE_EMA,0) and iMA(20,MODE_EMA,0) > iMA(50,MODE_EMA,0) then Begin h1 = FileOpen(Symbol+"3", ";"); FileWrite(h1, "1"); FileClose(h1); end; How do I