無料でロボットをダウンロードする方法を見る
Twitter上で私たちを見つけてください。
私たちのファンページに参加してください
私たちのファンページに参加してください
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
数学ユーティリティ - MetaTrader 5のためのライブラリ
- ビュー:
- 767
- 評価:
- パブリッシュ済み:
- 2018.06.15 16:17
- アップデート済み:
- 2018.06.27 12:00
- このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動
浮動小数点数の比較のための便利な関数
bool EQ(double a, double b, int digits = 8); bool GT(double a, double b, int digits = 8); bool LT(double a, double b, int digits = 8); bool NE(double a, double b, int digits = 8); bool GE(double a, double b, int digits = 8); bool LE(double a, double b, int digits = 8);
浮動小数点数を丸めるために便利な関数
double RoundToDigit(double number, int digits); double RoundToDigitUp(double number, int digits); double RoundToDigitDown(double number, int digits); double RoundToStep(double number, double step); double RoundToStepUp(double number, double step); double RoundToStepDown(double number, double step); double RoundPrice(double pPrice, string pSymbol = NULL); double RoundVolume(double pVolume, string pSymbol = NULL);
MetaQuotes Ltdによって英語から翻訳されました。
元のコード: https://www.mql5.com/en/code/20822