Point

시세 통화에서 현재 심볼에 대한 포인트 크기를 반환.

double  Point();

값 반환

현재 심볼의 포인트 크기를 시세 통화에 저장하는 _Point 변수의 값 입니다.

예:

//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
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 currency0.00001
   */
  }