I've this issue in my script code. The abc indicator each bar is a sum of value of abc on previous bar + the value of formula volume*(close - close[1])/close[1]
I don't undrstand why plotting abc I've alway zero value
//@version=5
indicator("myscript")
var abc = 0.0
abc := abc + volume*(close - close[1])/close[1]
plot(abc, title="abc")
Any ideas and explanation for this behaviours?