gb50k

For Lolikeet - 2 time frames 1 chart

script below
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
//@version=2
study("My Script")
//plot(close)


res = input("240", type=resolution)
o = security(tickerid, res, open)
c = security(tickerid, res, close)
h = security(tickerid, res, high)
l = security(tickerid, res, low)


plotcandle(o, h, l, c, title='ceand', color = o < c ? green : red, wickcolor=black)
// most important for backtesting-
// if you use this code to add the 4hr time frame to a 1 hour chart....
// and you want to reference the last cadle in each time frame,
// its x[1]  for the 1hr and x[4] for the 4 hour.  you dont want to use the look at the last candle
// in the 4hr series it carries information that the 1 hr series doesnt have
// untill all 4 hours are done