Help!!!

 
Could someone please help
I am working on 5 digit broker & testing my own ea but when I try to find stoploss with following mql statement it gives me 4 digit result only instead of 5 digit pls. can anyone help in this

StopLoss =Low[iLowest(NULL,TimeFrame,MODE_LOW,Stop_Shift,1)];
 

Print outputs doubles to a 4 digit precision (Data of double type are printed with 4 decimal digits after point.), use DoubletoStr

Print("Stoploss= ",DoubleToStr(StopLoss, Digits));
 
RaptorUK:

Print outputs doubles to a 4 digit precision (Data of double type are printed with 4 decimal digits after point.), use DoubletoStr


Thanks it works

Reason: