Pine Script 历史差距

Pine Script history gap

为什么这个脚本显示第 50 和 201 柱之间的差距?跟max_bars_back有关系吗?

// © mickes

//@version=5
indicator("History", overlay = true)

for i = 1 to 200
    label.new(bar_index - i, high[i], text = str.tostring(i))

https://www.tradingview.com/x/cVe3yga5/ https://www.tradingview.com/x/EOyvAMCn/

该问题与脚本允许的图表上的最大标签数量有关,您可以通过max_labels_count=参数来控制,默认值为50 - 最大值为 500。将参数值增加到 200 以解决问题:

//@version=5
indicator("History", overlay = true, max_labels_count = 200)

for i = 1 to 200
    label.new(bar_index - i, high[i], text = str.tostring(i))