//+------------------------------------------------------------------+ //| Äîðàáîòàë Skoch Bar_kSove_Sell.mq4 | //| Copyright ? 2010. | //| http://mql4you.ru | //+------------------------------------------------------------------+ #property copyright "Copyright ? 2010." #property link "http://mql4you.ru" #property indicator_chart_window extern color BoxColor=Red; //+------------------------------------------------------------------+ int init() {return(0);} //+------------------------------------------------------------------+ int deinit() { for(int i=ObjectsTotal()-1;i>=0;i--) { string name=ObjectName(i); if(StringFind(name,"inBar")==0) ObjectDelete(name); } return(0); } //+------------------------------------------------------------------+ int start() { int counted_bars=IndicatorCounted(); if(counted_bars<0) return(-1); if(counted_bars>0) counted_bars--; int limit=Bars-counted_bars; if(counted_bars==0) limit-=2; for(int i=1; iClose[i+1])/*&& (Open[i]>Close[i] && Low[i]