//+------------------------------------------------------------------+ //| Custom Moving Average.mq4 | //| Copyright © 2005, MetaQuotes Software Corp. | //| http://www.metaquotes.net/ | //+------------------------------------------------------------------+ #property copyright "Copyright © 2005, MetaQuotes Software Corp." #property link "http://www.metaquotes.net/" #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Blue #property indicator_color2 Red #property indicator_color3 Gray //---- indicator parameters extern string TimeFrame=""; extern int ExtDepth=12; extern int ExtDeviation=5; extern int ExtBackstep=3; extern bool ShowZigZag=False; //---- indicator buffers double ExtMapBuffer[]; double ExtMapBuffer2[]; double ExtMapBufferU[]; double ExtMapBufferD[]; int timeFrame; string indicatorFileName; bool calculateValue; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { IndicatorBuffers(4); SetIndexBuffer(0,ExtMapBufferU); SetIndexStyle(0,DRAW_ARROW); SetIndexArrow(0,158); //159); SetIndexBuffer(1,ExtMapBufferD); SetIndexStyle(1,DRAW_ARROW); SetIndexArrow(1,158); //159); SetIndexBuffer(2,ExtMapBuffer); if(ShowZigZag) SetIndexStyle(2,DRAW_SECTION); else SetIndexStyle(2,DRAW_NONE); SetIndexBuffer(3,ExtMapBuffer2); SetIndexEmptyValue(0,0.0); SetIndexEmptyValue(1,0.0); SetIndexEmptyValue(2,0.0); indicatorFileName = WindowExpertName(); calculateValue = (TimeFrame=="calculateValue"); if (calculateValue) return(0); timeFrame = stringToTimeFrame(TimeFrame); IndicatorShortName("ZigZag("+ExtDepth+","+ExtDeviation+","+ExtBackstep+")"); return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int start() { int shift, back,lasthighpos,lastlowpos; double val,res; double curlow,curhigh,lasthigh,lastlow; if (calculateValue || timeFrame==Period()) { for(shift=Bars-ExtDepth; shift>=0; shift--) { ExtMapBufferU[shift]=0; ExtMapBufferD[shift]=0; val=Low[Lowest(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=ExtMapBuffer[shift+back]; if((res!=0)&&(res>val)) ExtMapBuffer[shift+back]=0.0; } } } ExtMapBuffer[shift]=val; //--- high val=High[Highest(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=ExtMapBuffer2[shift+back]; if((res!=0)&&(res=0; shift--) { curlow=ExtMapBuffer[shift]; curhigh=ExtMapBuffer2[shift]; if((curlow==0)&&(curhigh==0)) continue; //--- if(curhigh!=0) { if(lasthigh>0) { if(lasthigh0) { if(lastlow>curlow) ExtMapBuffer[lastlowpos]=0; else ExtMapBuffer[shift]=0; } //--- if((curlow=0; shift--) { if(shift>=Bars-ExtDepth) { ExtMapBuffer[shift] =0.0; ExtMapBufferU[shift]=0.0; ExtMapBufferD[shift]=0.0; } else { res=ExtMapBuffer2[shift]; if(res!=0.0) ExtMapBuffer[shift] =res; } res=ExtMapBuffer[shift]; ExtMapBufferU[shift]=ExtMapBufferU[shift+1]; ExtMapBufferD[shift]=ExtMapBufferD[shift+1]; if(res!=0.0) { if(res>prevPeak && prevPeak!=0) ExtMapBufferU[shift]=res; if(res=0; shift--) { int y = iBarShift(NULL,timeFrame,Time[shift]); int x = iBarShift(NULL,timeFrame,Time[shift+1]); ExtMapBufferU[shift] = iCustom(NULL,timeFrame,indicatorFileName,"calculateValue",ExtDepth,ExtDeviation,ExtBackstep,0,y); ExtMapBufferD[shift] = iCustom(NULL,timeFrame,indicatorFileName,"calculateValue",ExtDepth,ExtDeviation,ExtBackstep,1,y); ExtMapBuffer[shift] = 0; if (x!=y) ExtMapBuffer[shift] = iCustom(NULL,timeFrame,indicatorFileName,"calculateValue",ExtDepth,ExtDeviation,ExtBackstep,2,y); } return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ // // // // // string sTfTable[] = {"M1","M5","M15","M30","H1","H4","D1","W1","MN"}; int iTfTable[] = {1,5,15,30,60,240,1440,10080,43200}; // // // // // int stringToTimeFrame(string tfs) { tfs = StringUpperCase(tfs); for (int i=ArraySize(iTfTable)-1; i>=0; i--) if (tfs==sTfTable[i] || tfs==""+iTfTable[i]) return(MathMax(iTfTable[i],Period())); return(Period()); } // // // // // string StringUpperCase(string str) { string s = str; for (int length=StringLen(str)-1; length>=0; length--) { int char1 = StringGetChar(s, length); if((char1 > 96 && char1 < 123) || (char1 > 223 && char1 < 256)) s = StringSetChar(s, length, char1 - 32); else if(char1 > -33 && char1 < 0) s = StringSetChar(s, length, char1 + 224); } return(s); }