ChartFirst

Returns the ID of the first chart of the client terminal.

long  ChartFirst();

Return Value

Chart ID.

Example:

//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
//--- get the ID of the very first chart opened in the client terminal
   long            chart_idChartFirst();
   
//--- additionally get the chart symbol and period using the obtained ID
   string          symbol  = ChartSymbol(chart_id);
   ENUM_TIMEFRAMES period  = ChartPeriod(chart_id);
   
//--- display the description of the client terminal first chart in the journal
   PrintFormat("ID of the first chart of the client terminal: %I64d, chart symbol: %s, chart period: %s"chart_idsymbolStringSubstr(EnumToString(period), 7));
   /*
   result:
   ID of the first chart of the client terminal133246248352168440chart symbolEURUSDchart periodM1
   */
  }