fix: Correct plotshape syntax and indentation in Sunny_Bands.pine

This commit is contained in:
Bobby (aider) 2025-02-08 10:18:26 -08:00
parent 6e79d3380e
commit 277492c7f8

View File

@ -31,21 +31,21 @@ fill(upper_plot, lower_plot, color.new(#673AB7, 90), "Band Area")
// Signal markers // Signal markers
plotshape( plotshape(
bullish, bullish,
"Bullish Signal", "Bullish Signal",
shape.triangleup, shape.triangleup,
location.belowbar, location.belowbar,
color.green, color.green,
size=size.small size.small
) )
plotshape( plotshape(
bearish, bearish,
"Bearish Signal", "Bearish Signal",
shape.triangledown, shape.triangledown,
location.abovebar, location.abovebar,
color.red, color.red,
size=size.small size.small
) )
// Alerts equivalent to get_signals() method // Alerts equivalent to get_signals() method