//+------------------------------------------------------------------+ //| NonLagMA_v5.mq4 | //| Copyright © 2006, TrendLaboratory | //| http://finance.groups.yahoo.com/group/TrendLaboratory | //| E-mail: igorad2003@yahoo.co.uk | //+------------------------------------------------------------------+ #property copyright "Copyright © 2006, TrendLaboratory" #property link "http://finance.groups.yahoo.com/group/TrendLaboratory" #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Yellow #property indicator_width1 4 #property indicator_color2 Blue #property indicator_width2 4 #property indicator_color3 Red #property indicator_width3 4 //---- input parameters extern int Price = 0; extern int Length = 8; extern int Displace = 0; extern int Filter = 3; extern int Color = 1; extern int ColorBarBack = 1; extern double Deviation = 0; //---- indicator buffers double MABuffer[]; double UpBuffer[]; double DnBuffer[]; double trend[]; //---- input parameters /* ***** Moving Average Types ***** 0 = MODE_SMA Simple moving average, 1 = MODE_EMA Exponential moving average, 2 = MODE_SMMA Smoothed moving average, 3 = MODE_LWMA Linear weighted moving average. */ /* ***** Price Constant Types ***** 0 = PRICE_CLOSE Close price. 1 = PRICE_OPEN Open price. 2 = PRICE_HIGH High price. 3 = PRICE_LOW Low price. 4 = PRICE_MEDIAN Median price, (high+low)/2. 5 = PRICE_TYPICAL Typical price, (high+low+close)/3. 6 = PRICE_WEIGHTED Weighted close price, (high+low+close+close)/4. */ double alfa[]; int i, Phase, Len, Cycle=4; double Coeff, beta, t, Sum, Weight, g; double pi = 3.1415926535; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { IndicatorBuffers(4); SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,MABuffer); SetIndexStyle(1,DRAW_LINE); SetIndexBuffer(1,UpBuffer); SetIndexStyle(2,DRAW_LINE); SetIndexBuffer(2,DnBuffer); SetIndexBuffer(3,trend); string short_name; //---- indicator line IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS)); //---- name for DataWindow and indicator subwindow label short_name="NonLagMA("+Length+")"; IndicatorShortName(short_name); SetIndexLabel(0,"NonLagMA"); SetIndexLabel(1,"Up"); SetIndexLabel(2,"Dn"); //---- SetIndexShift(0,Displace); SetIndexShift(1,Displace); SetIndexShift(2,Displace); SetIndexEmptyValue(0,EMPTY_VALUE); SetIndexEmptyValue(1,EMPTY_VALUE); SetIndexEmptyValue(2,EMPTY_VALUE); SetIndexDrawBegin(0,Length*Cycle+Length); SetIndexDrawBegin(1,Length*Cycle+Length); SetIndexDrawBegin(2,Length*Cycle+Length); //---- Coeff = 3*pi; Phase = Length-1; Len = Length*Cycle + Phase; ArrayResize(alfa,Len); Weight=0; for (i=0;i 0 ) limit=Bars-counted_bars; if ( counted_bars < 0 ) return(0); if ( counted_bars ==0 ) limit=Bars-Len-1; if ( counted_bars < 1 ) for(i=1;i=0;shift--) { Sum = 0; for (i=0;i<=Len-1;i++) { if (Price == PRICE_CLOSE ) price = Close[shift+i]; else if (Price == PRICE_OPEN ) price = Open[shift+i]; else if (Price == PRICE_HIGH ) price = High[shift+i]; else if (Price == PRICE_LOW ) price = Low[shift+i]; else if (Price == PRICE_MEDIAN) price = 0.5*(High[shift+i]+Low[shift+i]); else if (Price == PRICE_TYPICAL) price = (High[shift+i]+Low[shift+i]+Close[shift+i])/3.0; else if (Price == PRICE_WEIGHTED) price = (High[shift+i]+Low[shift+i]+2*Close[shift+i])/4.0; Sum += alfa[i]*price; } if (Weight > 0) MABuffer[shift] = (1.0+Deviation/100)*Sum/Weight; if (Filter>0) { if( MathAbs(MABuffer[shift]-MABuffer[shift+1]) < Filter*Point ) MABuffer[shift]=MABuffer[shift+1]; } if (Color>0) { trend[shift]=trend[shift+1]; if (MABuffer[shift]-MABuffer[shift+1] > Filter*Point) trend[shift]= 1; if (MABuffer[shift+1]-MABuffer[shift] > Filter*Point) trend[shift]=-1; if (trend[shift]>0) { UpBuffer[shift] = MABuffer[shift]; if (trend[shift+ColorBarBack]<0) UpBuffer[shift+ColorBarBack]=MABuffer[shift+ColorBarBack]; DnBuffer[shift] = EMPTY_VALUE; } if (trend[shift]<0) { DnBuffer[shift] = MABuffer[shift]; if (trend[shift+ColorBarBack]>0) DnBuffer[shift+ColorBarBack]=MABuffer[shift+ColorBarBack]; UpBuffer[shift] = EMPTY_VALUE; } } } return(0); }