Pine Editor Script
Pine Editor Script
strategy("ATR-Volume Strategy")
// Plot signals
plotshape(long_entry, style=shape.triangleup, color=color.green,
location=location.belowbar, size=size.small, text="Long Entry")
plotshape(long_exit, style=shape.triangledown, color=color.red,
location=location.abovebar, size=size.small, text="Long Exit")
plotshape(short_entry, style=shape.triangledown, color=color.red,
location=location.abovebar, size=size.small, text="Short Entry")
plotshape(short_exit, style=shape.triangleup, color=color.green,
location=location.belowbar, size=size.small, text="Short Exit")