地块价格值

Plot Price Value

下午,

我想将前一天 EQ 的价格包含到我的 plotshape 中。

我认为这是不可能的,是吗?

我需要使用标签吗?

plot(pdEQ, "pdEQ", change(pdEQ) ? na : color.orange, offset = 0)
plotshape(pdEQ, style=shape.labeldown, location=location.absolute, color=color.orange,  textcolor=color.white, show_last=1, text="pdEQ",  offset = offset_val, transp=20, title="pdEQ")

正确。 plotshape().
不可能做到这一点 text 参数必须是 const string,因此您不能为此使用可变变量。
您需要使用标签。