//+------------------------------------------------------------------+
//| Zero.mq4 |
//| Copyright © 2011, Íîâèêîâ Àëåêñàíäð. |
//| http://www.novikov.dp.ua |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2012, Íîâèêîâ Àëåêñàíäð"
#property link "http://www.novikov.dp.ua"
#property indicator_separate_window
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+
int init()
{
//---- indicators
IndicatorShortName("");
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator deinitialization function |
//+------------------------------------------------------------------+
int deinit()
{
//----
//----
return(0);
}
//+------------------------------------------------------------------+
//| Custom indicator iteration function |
//+------------------------------------------------------------------+
int start()
{
int counted_bars=IndicatorCounted();
//----
//----
return(0);
}
//+------------------------------------------------------------------+
Comments