What is problem my EA?

 

Dear My friend,

Please help me find problem below EA.

error is " '}'-"unbalanced parenthesis".

Thanks.

Files:
3.mq4  2 kb
 

Try changing this:


     if( Mom>0 && CCI>0 && WPR>0)

Alert("WPR=",WPR);
Alert("CCI=",CCI);
Alert("MA=",MA);
}

To this:

if( Mom>0 && CCI>0 && WPR>0)
{
Alert("WPR=",WPR);
Alert("CCI=",CCI);
Alert("MA=",MA);
}
 
bstone:

Try changing this:


Thanks my friend.

Reason: