Point

在引用货币中返回当前交易品种大小点。

double  Point();

返回值

_Point 变量值,在引用货币中存储当前交易品种的磅值。

示例:

//+------------------------------------------------------------------+
//| EA交易初始化函数                                                   |
//+------------------------------------------------------------------+
void OnStart()
  {
//--- 获取以报价货币表示的当前交易品种点大小
   double point = Point();
   
//--- 将获得的数据发送到日志
   Print("Point size of the current symbol in the quote currency: "DoubleToString(point_Digits));
   /*
   result:
   Point size of the current symbol in the quote currency0.00001
   */
  }