MT4(MQL4)/MT5(MQL5)のMathSin
指定された値(角度)のサインを返します。(sinサイン・cosコサイン・tanタンジェントのsinサイン)
double MathSin(
double value // ラジアンでの引数
);
MT4→MT5に変わっても変わらず使えます。
sin()を使用しても同じ結果が得られます。
サンプルコード
void OnInit()
{
Print("MathSin(45) = ",MathSin(45));
Print("MathSin(60) = ",MathSin(60));
return;
}
結果
MathSin(45) = 0.8509035245341184
MathSin(60) = -0.3048106211022167
【参考】MQL5公式ページ
コメント / Comments