//+-----------------------------------------------------------------------------------+
//|   New SubWindow.mq5                                                               |
//|   https://www.forexfactory.com/thread/775659-timeframe-and-symbol-changer-for-mt5 |
//+-----------------------------------------------------------------------------------+
#property copyright   "Botan626, 2022"
#property link        "https://www.forexfactory.com/botan626"
#property description "https://www.forexfactory.com/botan626"
#property indicator_separate_window
#property indicator_plots 0
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int OnInit()
  {
//--- indicator buffers mapping
   return INIT_SUCCEEDED;
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int OnCalculate(const int rates_total,
                const int prev_calculated,
                const int begin,
                const double &price[])
  {
//---
   
//--- return value of prev_calculated for next call
   return 0;
  }
//+------------------------------------------------------------------+
