5 Min Candle on 1 Min Chart Window

sahil79

Active Member
#1
5 Min and 1 Min charts at the same window

Hi friends, Can someone help me plz? I wish a formula/afl to plot a candlstick price chart of 5 min time frame and a 1 min time frame candle chart at the same window. I have the earth afl with multi time frame but its candle is not a simple candlestick with candle patterns like doji, engulfing, hangingman etc.

Thanx in adv

Regards
SantosH
 
Last edited:

rajeabc

Well-Known Member
#3
Re: 5 Min and 1 Min charts at the same window

Hi friends, Can someone help me plz? I wish a formula/afl to plot a candlstick price chart of 5 min time frame and a 1 min time frame candle chart at the same window. I have the earth afl with multi time frame but its candle is not a simple candlestick with candle patterns like doji, engulfing, hangingman etc.

Thanx in adv

Regards
SantosH
add code below in your afl.

TimeFrameSet( in5Minute );


Plot( C, "Price", IIf( Close > Open, colorYellow, colorBlue), styleCandle|styleNoTitle );

TimeFrameRestore(); // restore time frame to original
 

Similar threads