如何在此 pinescript 代码中绘制数据窗口中 if 语句中的 lres 和 lsup 值:
if barstate.islast
lres = line.new(x1=bar_index, y1=lvalue, x2=lindex, y2=lvalue, color=isBullish ? bearishColor : bullishColor, width=2, style=line.style_dashed, extend=extend.left)
lsup = line.new(x1=bar_index, y1=llvalue, x2=llindex, y2=llvalue, color=isBullish ? bullishColor : bearishColor, width=2, style=line.style_dashed, extend=extend.left)
lsup
我是 pinescript 新手,请帮助这个菜鸟:)
我已经向 ChatGPT 询问过这个问题,不幸的是,这在 pinescript 中并不好,现在对我来说唯一的方法是堆栈溢出
lres
和 lsup
只是线条。它们的值分别是 lvalue
和 llvalue
。
所以,就这么做吧
plotchar(lvalue, "lvalue", "", display=display.data_window)
plotchar(llvalue, "llvalue", "", display=display.data_window)