Pinescript 将系列字符串转换为 const 字符串

Pinescript convert series string to const string

我正在尝试创建一个 alertconditionmessage 参数上遇到问题,我的消息我希望它包含我的一些变量值,例如

str.format("{0} just broken recent high {1}, new high is {2}", syminfo.ticker, prev_hi, cur_hi)

然而,这将输出一个系列字符串,但 alertcondition message 参数需要一个 const 字符串。我试图浏览文档,但似乎找不到任何将系列字符串转换为常量字符串的函数。

是否可以使用 alertcondition 实现这种行为,还是我必须使用 alert

series 变量无法转换为 const 变量。您需要使用允许系列字符串的 alert() 函数,或者将您的变量传递给绘图,然后使用占位符引用这些绘图,如 here.

所述