//+------------------------------------------------------------------+ //| VininI ConstTickHeikenAshi R.mq4 | //| Copyright © 2008, Victor Nicolaev aka Vinin | //| e-mail: vinin@mail.ru | //+------------------------------------------------------------------+ #property copyright "Copyright © 2008, Victor Nicolaev aka Vinin" #property link "e-mail: vinin@mail.ru" #property indicator_chart_window #property indicator_buffers 4 #property indicator_color1 clrRed #property indicator_color2 clrWhite #property indicator_color3 clrRed #property indicator_color4 clrWhite #property indicator_width1 1 #property indicator_width2 1 #property indicator_width3 2 #property indicator_width4 2 //---- extern int TickCount=100; extern bool DrawAll=false; //---- buffers double ExtMapBuffer1[]; double ExtMapBuffer2[]; double ExtMapBuffer3[]; double ExtMapBuffer4[]; //---- int ExtCountedBars=0; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //|------------------------------------------------------------------| int init() { //---- indicators SetIndexStyle(0,DRAW_HISTOGRAM, 0, 1); SetIndexBuffer(0, ExtMapBuffer1); SetIndexStyle(1,DRAW_HISTOGRAM, 0, 1); SetIndexBuffer(1, ExtMapBuffer2); SetIndexStyle(2,DRAW_HISTOGRAM, 0, 2); SetIndexBuffer(2, ExtMapBuffer3); SetIndexStyle(3,DRAW_HISTOGRAM, 0, 2); SetIndexBuffer(3, ExtMapBuffer4); SetIndexBuffer(0,ExtMapBuffer1); SetIndexBuffer(1,ExtMapBuffer2); SetIndexBuffer(2,ExtMapBuffer3); SetIndexBuffer(3,ExtMapBuffer4); //---- initialization done return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- TODO: add your code here //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { if(Period()>PERIOD_D1) return(0); double haOpen, haHigh, haLow, haClose; double _Open, _High, _Low, _Close; int shift; if(Bars<=10) return(0); ExtCountedBars=IndicatorCounted(); //---- check for possible errors if (ExtCountedBars<0) return(-1); //---- last counted bar will be recounted int i,pos=Bars-ExtCountedBars-3; if (ExtCountedBars==0) pos-=2; while(pos>=0){ fPrice(pos, _Open, _High, _Low, _Close); shift=iCustom(NULL,0,"VininI ConstTickPriceM",TickCount,4,pos); haOpen=(ExtMapBuffer3[pos+shift+1]+ExtMapBuffer4[pos+shift+1])/2; haClose=(_High+_Low+_Close)/3; haHigh=MathMax(_High, MathMax(haOpen, haClose)); haLow=MathMin(_Low, MathMin(haOpen, haClose)); if (haOpen