double NormalizeDouble(double value, int digits)
Rounds the floating point value to the given precision. Returns normalized value of the double type.
浮動小数点値を指定した精度に丸めます。double 型に正規化した値を返します。
The calculated StopLoss and TakeProfit values, as well as open price of pending orders must be normalized with a precision the value of which is stored in the pre-defined variable of Digits.
StopLoss と TakeProfit の値の計算されるとき、保留中注文の OpenPrice と同様に、定義済み変数の Digitsに格納されている精度の値に正規化する必要があります。
Parameters:
パラメータ:
1 2 3 4 5 | <b>value</b> - Floating point value. 浮動小数点値。 <b>digits</b> - Precision format, number of digits after decimal point (0-8). 精密フォーマット、小数点以下の桁数(0-8)。 |
Sample:
サンプル:
1 2 3 | double var1=0.123456789; Print(DoubleToStr(NormalizeDouble(var1,5),8)); // output: 0.12346000 |