如何让它一直处理到可用数据的开始?
代码如下
//@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)
答案 0 :(得分:1)
每个脚本的行数限制为 500 行。默认情况下只保留最后的 ~50,要增加该数字,请使用:
study("script time lines", overlay=true, max_lines_count = 500)