Pinescript/Tradingview 有限迭代

时间:2021-05-08 13:38:52

标签: pine-script trading

如下图所示,垂直线在一段时间后停止。 enter image description here

如何让它一直处理到可用数据的开始?

代码如下

//@version=4
study("script time lines", overlay=true)

LineLengthMult = 10
LineLength = 100

drawVerticalLine(offset, cor) =>
    line.new(bar_index[offset], low-LineLength, bar_index[offset], high+LineLength, color=cor, width=3)

yellow = color.new(color.yellow, 50)

if bar_index % 21 == 0
    drawVerticalLine(0, yellow)

1 个答案:

答案 0 :(得分:1)

每个脚本的行数限制为 500 行。默认情况下只保留最后的 ~50,要增加该数字,请使用:

study("script time lines", overlay=true, max_lines_count = 500)