Standard Deviation digits

 

Hi,

the Standard Deviation value in MT5 is 6 digits after the dot.

Is there a way to change it to 5 like the ATR?

 
betaTr5der :

Hi,

the Standard Deviation value in MT5 is 6 digits after the dot.

Is there a way to change it to 5 like the ATR?

Take ATR ([data folder]\MQL5\Indicators\Examples\ATR.mq5) example and see:

   IndicatorSetInteger(INDICATOR_DIGITS,_Digits);
 
Vladimir Karputov:

Take ATR ([data folder]\MQL5\Indicators\Examples\ATR.mq5) example and see:

Thanks :)