OPEN-SOURCE SCRIPT

Multi TF Line Panel (5M–45M)

50
//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")

Clause de non-responsabilité

Les informations et les publications ne sont pas destinées à être, et ne constituent pas, des conseils ou des recommandations en matière de finance, d'investissement, de trading ou d'autres types de conseils fournis ou approuvés par TradingView. Pour en savoir plus, consultez les Conditions d'utilisation.