ELR color.mq4
ELR color.mq4 FOREX MetaTrader4 Indicators Download
ELR color.mq4 download link will appear after 20 seconds.
ELR color.mq4 Programming source code.
#property indicator_separate_window #property indicator_buffers 4 #property indicator_color1 Red #property indicator_width1 2 #property indicator_color2 Red #property indicator_width2 1 #property indicator_color3 Aqua #property indicator_width3 2 #property indicator_color4 Orange #property indicator_width4 2 extern int PERIOD_Signal_1=13; extern int PERIOD_Signal_2=13; extern int N=2; double Buffer0[]; double Buffer1[]; double Buffer2[]; double Buffer3[]; //+------------------------------------------------------------------+ int init() { SetIndexBuffer(0,Buffer0); SetIndexStyle(0,DRAW_LINE); SetIndexBuffer(1,Buffer1); SetIndexStyle(1,DRAW_HISTOGRAM); SetIndexLabel(1,"ŒÒÌÓ‚ÌÓ Á̇˜ÂÌËÂ"); SetIndexBuffer(2,Buffer2); SetIndexStyle(2,DRAW_LINE); SetIndexLabel(2,"—˄̇θ̇ˇ ÎËÌˡ"); SetIndexBuffer(3,Buffer3); SetIndexStyle(3,DRAW_LINE); return(0); } //+------------------------------------------------------------------+ int start() { int counted_bars=IndicatorCounted(); int limit; limit=Bars-counted_bars; for(int i=0;i