Point

現在の通貨/シンボルのポイントサイズを返します。

double  Point();

戻り値

現在の通貨/シンボルのポイントサイズを含む _Point 変数の内容

例:

//+------------------------------------------------------------------+
//| スクリプトプログラム開始関数                                              |
//+------------------------------------------------------------------+
void OnStart()
 {
//--- 相場通貨の現在のシンボルポイントサイズを取得する
  double point = Point();
 
//--- 取得したデータを操作ログに送信する
  Print("Point size of the current symbol in the quote currency: ", DoubleToString(point, _Digits));
  /*
  結果:
  Point size of the current symbol in the quote currency: 0.00001
  */
 }