Quote:
|
Originally Posted by demag
I am just playing with the ea from CoderGuru's course and have tried to add another MA.
But Meta-editor is returning an error. Error = 'if'-variable expected C:\Program files\ etc.\My_First_EA.mq4 (66, 4)
|
Semi-colon 
, it's the hell of forgetting a semi-colon which all the programmer (including me) always suffering it.
This line:
double shortEma, longEma, longSma
,
Sould be:
double shortEma, longEma, longSma
;
KEEP GOING MAN!