//+------------------------------------------------------------------+ //| Zigzag_ws_Chanel.mq4 | //| Copyright © 2008, Dolsergon & MetaQuotes Software Corp. | //| http://tradecoder.narod.ru/ | //| http://www.metaquotes.net/ | //+------------------------------------------------------------------+ #property copyright "Copyright © 2008, Dolsergon & MetaQuotes Software Corp." #property link "http://tradecoder.narod.ru/; http://www.metaquotes.net/" #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Red #property indicator_width1 2 #property indicator_color2 Pink #property indicator_color3 Pink //---- indicator parameters extern int ExtDepth=12; extern int ExtDeviation=5; extern int ExtBackstep=3; //---- indicator buffers double ZigzagBuffer[]; double HighMapBuffer[]; double LowMapBuffer[]; double BufChanelHigh[]; double BufChanelLow[]; int level=3; // recounting's depth bool downloadhistory=false; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { IndicatorBuffers(5); //---- drawing settings SetIndexStyle(0,DRAW_SECTION); SetIndexBuffer(0,ZigzagBuffer); SetIndexEmptyValue(0,0.0); SetIndexStyle(1, DRAW_SECTION); SetIndexBuffer(1,BufChanelHigh); SetIndexEmptyValue(1,0.0); SetIndexStyle(2, DRAW_SECTION); SetIndexBuffer(2,BufChanelLow); SetIndexEmptyValue(2,0.0); SetIndexBuffer(3,HighMapBuffer); SetIndexBuffer(4,LowMapBuffer); //---- indicator short name IndicatorShortName("ZigZag_ws_Chanel("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")"); //---- initialization done return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int start() { int i, counted_bars = IndicatorCounted(); int limit,counterZ,whatlookfor; int shift,back,lasthighpos,lastlowpos; double val,res; double curlow,curhigh,lasthigh,lastlow; if (counted_bars==0 && downloadhistory) // history was downloaded { ArrayInitialize(ZigzagBuffer,0.0); ArrayInitialize(BufChanelHigh,0.0); ArrayInitialize(BufChanelLow,0.0); ArrayInitialize(HighMapBuffer,0.0); ArrayInitialize(LowMapBuffer,0.0); } if (counted_bars==0) { limit=Bars-ExtDepth; downloadhistory=true; } if (counted_bars>0) { while (counterZ=0;i--) { ZigzagBuffer[i]=0.0; LowMapBuffer[i]=0.0; HighMapBuffer[i]=0.0; BufChanelHigh[i]=0.0; BufChanelLow[i]=0.0; } } for(shift=limit; shift>=0; shift--) { val=Low[iLowest(NULL,0,MODE_LOW,ExtDepth,shift)]; if(val==lastlow) val=0.0; else { lastlow=val; if((Low[shift]-val)>(ExtDeviation*Point)) val=0.0; else { for(back=1; back<=ExtBackstep; back++) { res=LowMapBuffer[shift+back]; if((res!=0)&&(res>val)) LowMapBuffer[shift+back]=0.0; } } } if (Low[shift]==val) LowMapBuffer[shift]=val; else LowMapBuffer[shift]=0.0; //--- high val=High[iHighest(NULL,0,MODE_HIGH,ExtDepth,shift)]; if(val==lasthigh) val=0.0; else { lasthigh=val; if((val-High[shift])>(ExtDeviation*Point)) val=0.0; else { for(back=1; back<=ExtBackstep; back++) { res=HighMapBuffer[shift+back]; if((res!=0)&&(res=0;shift--) { res=0.0; switch(whatlookfor) { case 0: // look for peak or lawn if (lastlow==0 && lasthigh==0) { if (HighMapBuffer[shift]!=0) { lasthigh=High[shift]; lasthighpos=shift; whatlookfor=-1; SetHighZZ(shift, lasthigh); res=1; } if (LowMapBuffer[shift]!=0) { lastlow=Low[shift]; lastlowpos=shift; whatlookfor=1; SetLowZZ(shift, lastlow); res=1; } } break; case 1: // look for peak if (LowMapBuffer[shift]!=0.0 && LowMapBuffer[shift]lasthigh && LowMapBuffer[shift]==0.0) { SetHighZZ(lasthighpos, 0.0); lasthighpos=shift; lasthigh=HighMapBuffer[shift]; SetHighZZ(shift, lasthigh); } if (LowMapBuffer[shift]!=0.0 && HighMapBuffer[shift]==0.0) { lastlow=LowMapBuffer[shift]; lastlowpos=shift; SetLowZZ(shift, lastlow); whatlookfor=1; } break; default: return; } } return(0); } //================================================================================================= void SetLowZZ(int pShift, double pValue) { ZigzagBuffer[pShift]=pValue; BufChanelLow[pShift]=pValue; } //================================================================================================= void SetHighZZ(int pShift, double pValue) { ZigzagBuffer[pShift]=pValue; BufChanelHigh[pShift]=pValue; }