Trading View Pine 脚本:如何在不使用偏移的情况下左移指标?
右移工作正常。
左移有问题
//@version=5
indicator("right_left_shift", overlay=true)
shift = close
plot(shift)
plot(shift[25], color=color.green) //right shift correct
plot(shift[-25], color=color.red) //how to do left shift, without using offset?
错误:索引不能为负值