ChartID

Returns the ID of the current chart.

long  ChartID();

Return Value

Value of long type.

Example:

//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
//--- variables for chart identifiers
   long curr_chart=ChartFirst();
   int i=0;
   //--- print the first chart data in the journal
   PrintFormat("Chart[%d] ID: %I64d,  symbol: %s"icurr_chartChartSymbol(curr_chart));
   
//--- until the open chart limit is reached (CHARTS_MAX)
   while(!IsStopped() && i < CHARTS_MAX)
     {
      //--- increase the chart counter
      i++;
      //--- get the next chart ID based on the previous one
      curr_chart=ChartNext(curr_chart);
      
      //--- terminate the loop if the end of the chart list is reached
      if(curr_chart<0)
         break;
         
      //--- print the next chart data in the journal
      PrintFormat("Chart[%d] ID: %I64d,  symbol: %s"icurr_chartChartSymbol(curr_chart));
     }
   /*
   result:
   Chart[0ID133246248352168440,  symbolEURUSD
   Chart[1ID133346697706632015,  symbolUSDJPY
   Chart[2ID133246248352168439,  symbolGBPUSD
   Chart[3ID133346697706632009,  symbolRU000A103661
   Chart[4ID133346697706632010,  symbolAEM4
   Chart[5ID133346697706632011,  symbolAA.SPB
   Chart[6ID133346697706632012,  symbolALLFUTMIX
   Chart[7ID133346697706632013,  symbolEURUSD
   Chart[8ID133346697706632014,  symbolSBER
   */
  }