我目前正在测试一些指标/策略,并希望实现自动化。 我使用 JSON 格式的字符串配置一些带有警报的 Webhook,例如:
alert("{'heyyy':'oohhhh!'}", freq = alert.freq_all)
但是当触发警报时,发送了 webhook 并且我在我的服务器(node.js)上收到了调用,正文是空的:
{}
我在“每次alert()调用”时设置警报
我也尝试过
alertcondition
,但结果是一样的:空身体。
谢谢
尝试使用 log.info 来测试您的警报消息
msgAlert = "{'heyyy':'oohhhh!'}"
if testcondition and barstate.isconfirmed
alert(msgAlert, freq = alert.freq_once_per_bar_close)
log.info("\n{0}", msgAlert)
你的绳子看起来不错
这看起来不像是 pinescript 的问题