OPEN-SOURCE SCRIPT

Multi TF Line Panel (5M–45M)

30
//version=5
indicator("Multi TF Line Panel (5M–45M)", overlay=false)

// Symbol chart
sym = syminfo.tickerid

// Ambil data close dari beberapa TF
c5 = request.security(sym, "5", close)
c10 = request.security(sym, "10", close)
c15 = request.security(sym, "15", close)
c30 = request.security(sym, "30", close)
c45 = request.security(sym, "45", close)

// Plot garis di panel terpisah
plot(c5, color=color.lime, linewidth=2, title="Close 5M")
plot(c10, color=color.aqua, linewidth=2, title="Close 10M")
plot(c15, color=color.blue, linewidth=2, title="Close 15M")
plot(c30, color=color.orange, linewidth=2, title="Close 30M")
plot(c45, color=color.red, linewidth=2, title="Close 45M")

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.