MT4(MQL4)/MT5(MQL5)のMathExp
e の d 乗を返す関数です。
double MathExp(
double value // e の塁乗指数
);
MT4→MT5に変わっても変わらず使えます。
exp()でも同じ結果が得られます。
サンプルコード
void OnInit()
{
Print("MathExp(0.1) = ",MathExp(0.1));
Print("MathExp(1.0) = ",MathExp(1.0));
Print("MathExp(2.0) = ",MathExp(2.0));
Print("MathExp(3.0) = ",MathExp(3.0));
Print("MathExp(3) = ",MathExp(3));
return;
}
結果
MathExp(0.1) = 1.105170918075648
MathExp(1.0) = 2.718281828459045
MathExp(2.0) = 7.38905609893065
MathExp(3.0) = 20.08553692318767
MathExp(3) = 20.08553692318767
【参考】MQL5公式ページ
コメント / Comments