//+------------------------------------------------------------------+ //| AvgRangeM AvgRange.mq4 | //| Copyright © 2005, tageiger aka fxid10t@yahoo.com | //| /www.forex-tsd.com http://www.metatrader.org | //+------------------------------------------------------------------+ #property copyright "Copyright © 2005, tageiger aka fxid10t@yahoo.com" #property link "http://www.metatrader.org http://www.forex-tsd.com" //---- #property indicator_chart_window #property indicator_buffers 3 #property indicator_color1 Yellow #property indicator_color2 SpringGreen #property indicator_color3 Tomato #property indicator_style1 2 //---- buffers double ExtMapBuffer1[]; double ExtMapBuffer2[]; double ExtMapBuffer3[]; double rng,sum.rng,avg.rng; double rng1,sum.rng1,avg.rng1; double rng2,sum.rng2,avg.rng2; double rng3,sum.rng3,avg.rng3; //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int init() { //---- indicators SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(0,ExtMapBuffer1); SetIndexStyle(1,DRAW_LINE); SetIndexBuffer(1,ExtMapBuffer2); SetIndexStyle(2,DRAW_LINE); SetIndexBuffer(2,ExtMapBuffer3); //---- return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int deinit() { return(0); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ int start() { int counted_bars=IndicatorCounted(); rng=0;sum.rng=0;avg.rng=0; rng1=0;sum.rng1=0;avg.rng1=0; rng2=0;sum.rng2=0;avg.rng2=0; rng3=0;sum.rng3=0;avg.rng3=0; //---- for(int i=0;i