can you fix me this error in mql5 language? ')' - open parenthesis expected

 

Can someone help me please?

This is the code in mql5 (MT5)


P=(AccountEquity()-equity);
if (FixRatio_Delta<50) FixRatio_Delta=50;
lot= NormalizeDouble(0.01*MathRound(P/FixRatio_Delta),Digits);
lot= NormalizeDouble(Starting_Lot+lot,Digits);
if (lot<0.01) lot=0.01;

 
Antonis Michos:


Digits()
 
Enrique Enguix #:
Digits()

Thank you very much!