Discussion of article "Graphical interfaces X: New features for the Rendered table (build 9)" - page 3

 
traderEvgen:

And even after the NormalizeDouble function, I get such values when I click on the increment/decrement to the right of the input field:

(string)NormalizeDouble(Num, Dig) != DoubleToString(Num, Dig)
 
fxsaber:

where do you keep DoubleToString(Num, Dig) ?

I use NormalizeDouble() and when opening a position there was an error on an incorrect lot value, so I print the value and saw why there was an error when opening.

 
traderEvgen:

where do you keep DoubleToString(Num, Dig) ?

I use NormalizeDouble() and when opening a position there was an error on an incorrect lot value, so I print the value and saw why there was an error when opening.

void OnStart()
{
  Print(0.07); // 0.07000000000000001
}
 
fxsaber:

thank you