Files
mql5-skills/skills/mql5/references/docs/12-check/0672-check-point.md
T
2026-06-23 21:47:51 +08:00

950 B

Point

Returns the point size of the current symbol in the quote currency.

double  Point();

Return Value

The value of the _Point variable which stores the point size of the current symbol in the quote currency.

Example:

//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
//--- get the current symbol point size in the quote currency
   double point = Point();
   
//--- send the obtained data to the journal
   Print("Point size of the current symbol in the quote currency: ", DoubleToString(point, _Digits));
   /*
   result:
   Point size of the current symbol in the quote currency: 0.00001
   */
  }