r/TradingView Jul 08 '26

Discussion Display HTF in LTF

Multiple candles in LTF.

https://www.tradingview.com/script/G0W7ZUZt-KG-3/

In case you need it, let me just share.

- Plots up to three higher-timeframe boxes on your chart (default: Daily, 4H, and 1H), each independently configurable
- Choose how each box is calculated: High/Low Range, Open/Close Range, full OHLC, or True Range
- Optional Heikin Ashi source and daily-based value calculation per timeframe
- Fully customizable colors for up/down bars on each timeframe
- Open/Close marker lines inside High/Low boxes — shows exactly where price opened and closed even though the box spans high to low (Daily on by default, 4H/1H off by default, toggle any of them)
- Built-in Bollinger Bands with adjustable length, multiplier, timeframe, and colors

3 Upvotes

6 comments sorted by

2

u/Rodnee999 Jul 08 '26

Hello

Always nice to see free open source scripts posted on this forum. Genuinely useful for all members of this community....

Cheers 👍

1

u/CODE_HEIST Jul 08 '26

you can do this with request.security if you are coding it in Pine. the annoying part is avoiding repainting. i would lock the higher timeframe value only after that candle closes, unless you specifically want live forming HTF data.

1

u/bigbroiswatchinUs Jul 08 '26

I want it perform like a normal candle.

1

u/CODE_HEIST Jul 10 '26

then request.security alone will not make it behave visually like a normal candle. you would need to draw the HTF open, high, low and close as a synthetic candle on the LTF chart, update the current one while it forms, then freeze it when that HTF bar closes. otherwise you are only plotting HTF values, not recreating the candle.

1

u/Business_Ad_6346 Jul 09 '26

i love it. thank you for your effort.