MT4(MQL4)/MT5(MQL5)のMathLog
指定された値の自然対数を返す関数です。
double MathLog(
double val // 対数を取る値
);
MT4→MT5に変わっても変わらず使えます。
log()でも同じ結果が得られます。
サンプルコード
void OnInit()
{
Print("MathLog(-1) = ",MathLog(-1));
Print("MathLog(0) = ",MathLog(0));
Print("MathLog(1) = ",MathLog(1));
Print("MathLog(2) = ",MathLog(2));
return;
}
結果
MathLog(-1) = -nan(ind)
MathLog(0) = -inf
MathLog(1) = 0.0
MathLog(2) = 0.6931471805599453
【参考】MQL5公式ページ
コメント / Comments