寻找一种简单的方法来将累积音量范围指示器的输入设置为指定数量的 CANDLES,而不是选择一个 RESOLUTION 来回顾。
is_new_day = change(time(cTimeFrame)) != 0 ? 1 : 0
cnt_new_day = barssince(is_new_day)
// Accumulation
cvol = 0.0
for i = 0 to cnt_new_day
cvol := cvol + volume[i]
plot(cvol, "Cumulative Volume", style=plot.style_columns, color= color.yellow)