//+------------------------------------------------------------------+ //| MTF_Forex_Freedom_Bar #MTF Supertrend Bar.mq4 | //| Copyright © 2006, Eli hayun | //| mod. 2007 ForexTSD.com ki http://www.elihayun.com | //+------------------------------------------------------------------+ #property copyright "Copyright © 2006, Eli hayun" #property link "http://www.elihayun.com" //---- #property indicator_separate_window #property indicator_minimum 0 #property indicator_maximum 5 #property indicator_buffers 8 #property indicator_color1 Blue #property indicator_color2 Red #property indicator_color3 Blue #property indicator_color4 Red #property indicator_color5 Blue #property indicator_color6 Red #property indicator_color7 Blue #property indicator_color8 Red //---- buffers double buf4_up[]; double buf4_down[]; double buf3_up[]; double buf3_down[]; double buf2_up[]; double buf2_down[]; double buf1_up[]; double buf1_down[]; //---- extern int CCI_Period = 50; extern int Period_1=PERIOD_M15; extern int Period_2=PERIOD_M30; extern int Period_3=PERIOD_H1; extern int Period_4=PERIOD_H4; extern bool AutoDisplay = true; extern int MaxBarsToCount = 1500; extern double Gap=1; // Gap between the lines of bars //---- string shortname=""; bool firstTime=true; int UniqueNum=23844; extern color TextColor = SlateGray; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { SetAutoDisplay(); shortname="Forex Freedom ("+CCI_Period+")["+Period_1+","+Period_2+","+Period_3+","+Period_4+"]"; firstTime=true; IndicatorShortName(shortname); //---- indicators SetIndexStyle(0,DRAW_ARROW); SetIndexArrow(0,110); SetIndexBuffer(0,buf1_up); SetIndexEmptyValue(0,0.0); SetIndexStyle(1,DRAW_ARROW); SetIndexArrow(1,110); SetIndexBuffer(1,buf1_down); SetIndexEmptyValue(1,0.0); SetIndexStyle(2,DRAW_ARROW); SetIndexArrow(2,110); SetIndexBuffer(2,buf2_up); SetIndexEmptyValue(2,0.0); SetIndexStyle(3,DRAW_ARROW); SetIndexArrow(3,110); SetIndexBuffer(3,buf2_down); SetIndexEmptyValue(3,0.0); SetIndexStyle(4,DRAW_ARROW); SetIndexArrow(4,110); SetIndexBuffer(4,buf3_up); SetIndexEmptyValue(4,0.0); SetIndexStyle(5,DRAW_ARROW); SetIndexArrow(5,110); SetIndexBuffer(5,buf3_down); SetIndexEmptyValue(5,0.0); SetIndexStyle(6,DRAW_ARROW); SetIndexArrow(6,110); SetIndexBuffer(6,buf4_up); SetIndexEmptyValue(6,0.0); SetIndexStyle(7,DRAW_ARROW); SetIndexArrow(7,110); SetIndexBuffer(7,buf4_down); SetIndexEmptyValue(7,0.0); SetIndexLabel(0,""); SetIndexLabel(1,""); SetIndexLabel(2,""); SetIndexLabel(3,""); SetIndexLabel(4,""); SetIndexLabel(5,""); SetIndexLabel(6,""); SetIndexLabel(7,""); if (Period_1-1; i--) { if (StringFind(ObjectName(i),"ST_"+UniqueNum+"_") >= 0) ObjectDelete(ObjectName(i)); } double shift = 0.2; for ( tf=1; tf<=4; tf++) { string txt = "??"; double gp; switch (tf) { case 1: txt = tf2txt(Period_4); gp = 1 + shift; break; case 2: txt = tf2txt(Period_3); gp = 1 + Gap + shift; break; case 3: txt = tf2txt(Period_2); gp = 1 + Gap*2 + shift; break; case 4: txt = tf2txt(Period_1); gp = 1 + Gap*3 + shift; break; } string name = "ST_"+UniqueNum+"_"+tf+"_"+txt; ObjectCreate(name, OBJ_TEXT, WindowFind(shortname), iTime(NULL,0,0)+dif*4, gp); ObjectSetText(name, txt,7,"Arial", TextColor); } ///// datetime TimeArray_4H[], TimeArray_1H[], TimeArray_30M[], TimeArray_15M[]; ArrayCopySeries(TimeArray_4H,MODE_TIME,Symbol(),Period_4); ArrayCopySeries(TimeArray_1H,MODE_TIME,Symbol(),Period_3); ArrayCopySeries(TimeArray_30M,MODE_TIME,Symbol(),Period_2); ArrayCopySeries(TimeArray_15M,MODE_TIME,Symbol(),Period_1); //---- for(i=0, y15m=0, y4h=0, y1h=0, y30m=0;i 0) dUp=1; else dDn=1; switch(tf) { case 0: if (dUp==EMPTY_VALUE) buf4_down[i] =1; else buf4_up[i] =1; break; case 1: if (dUp==EMPTY_VALUE) buf3_down[i] =1 + Gap * 1; else buf3_up[i] =1 + Gap * 1; break; case 2: if (dUp==EMPTY_VALUE) buf2_down[i] =1 + Gap * 2; else buf2_up[i] =1 + Gap * 2; break; case 3: if (dUp==EMPTY_VALUE) buf1_down[i] =1 + Gap * 3; else buf1_up[i] =1 + Gap * 3; break; } } } return(0); } //+------------------------------------------------------------------+ string tf2txt(int tf) { if (tf==PERIOD_M1) return("M1"); if (tf==PERIOD_M5) return("M5"); if (tf==PERIOD_M15) return("M15"); if (tf==PERIOD_M30) return("M30"); if (tf==PERIOD_H1) return("H1"); if (tf==PERIOD_H4) return("H4"); if (tf==PERIOD_D1) return("D1"); if (tf==PERIOD_W1) return("W1"); if (tf==PERIOD_MN1) return("MN1"); return("??"); } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void SetValues(int p1, int p2, int p3, int p4) { Period_1=p1; Period_2=p2; Period_3=p3; Period_4=p4; } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ void SetAutoDisplay() { if (AutoDisplay) { switch(Period()) { case PERIOD_M1 : SetValues(PERIOD_M1, PERIOD_M5, PERIOD_M15,PERIOD_M30); break; case PERIOD_M5 : SetValues(PERIOD_M5, PERIOD_M15,PERIOD_M30,PERIOD_H1 ); break; case PERIOD_M15 : SetValues(PERIOD_M15, PERIOD_M30,PERIOD_H1, PERIOD_H4 ); break; case PERIOD_M30 : SetValues(PERIOD_M30, PERIOD_H1, PERIOD_H4, PERIOD_D1 ); break; case PERIOD_H1 : SetValues(PERIOD_H1, PERIOD_H4, PERIOD_D1, PERIOD_W1 ); break; case PERIOD_H4 : SetValues(PERIOD_H4, PERIOD_D1, PERIOD_W1, PERIOD_MN1); break; case PERIOD_D1 : SetValues(PERIOD_D1, PERIOD_W1, PERIOD_MN1,PERIOD_MN1); break; case PERIOD_W1 : SetValues(PERIOD_W1, PERIOD_MN1,PERIOD_MN1,PERIOD_MN1); break; case PERIOD_MN1 : SetValues(PERIOD_MN1, PERIOD_MN1,PERIOD_MN1,PERIOD_MN1); break; } } } //+------------------------------------------------------------------+ //| | //+------------------------------------------------------------------+ //+------------------------------------------------------------------+ //+------------------------------------------------------------------+ //