如何在数据窗口中绘制指标值

问题描述 投票:0回答:1

如何在此 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 中并不好,现在对我来说唯一的方法是堆栈溢出

pine-script pine-script-v5 tradingview-api indicator
1个回答
0
投票

lres
lsup
只是线条。它们的值分别是
lvalue
llvalue

所以,就这么做吧

plotchar(lvalue, "lvalue", "", display=display.data_window)
plotchar(llvalue, "llvalue", "", display=display.data_window)
© www.soinside.com 2019 - 2024. All rights reserved.