Point

Devuelve el tamaño del punto del símbolo corriente en divisa de cotización.

double  Point();

Valor devuelto

Valor de la variable _Point que almacena el tamaño del punto del símbolo corriente en divisa de cotización.

Ejemplo:

//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
//--- obtenemos el tamaño en puntos del instrumento actual en la divisa de cotización
   double point = Point();
   
//--- mostramos los datos obtenidos en el diario de registro
   Print("Point size of the current symbol in the quote currency: "DoubleToString(point_Digits));
   /*
   resultado:
   Point size of the current symbol in the quote currency0.00001
   */
  }