//+------------------------------------------------------------------+
//|                                                Weekly SIBKIS.mq4 |
//|                                                       AidanPryde |
//|                                         aidanpryde@nerdshack.com |
//+------------------------------------------------------------------+
#property copyright "AidanPryde"
#property link      "aidanpryde@nerdshack.com"

#property indicator_chart_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function                         |
//+------------------------------------------------------------------+
int init()
  {
//---- indicators
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start()
  {
   int    counted_bars=IndicatorCounted();
//----
   
//----
   return(0);
  }
//+------------------------------------------------------------------+
