//+------------------------------------------------------------------+ //| 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); } //+------------------------------------------------------------------+