警报交易视图 webhook 上的正文为空

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

我目前正在测试一些指标/策略,并希望实现自动化。 我使用 JSON 格式的字符串配置一些带有警报的 Webhook,例如:

alert("{'heyyy':'oohhhh!'}", freq = alert.freq_all)  

但是当触发警报时,发送了 webhook 并且我在我的服务器(node.js)上收到了调用,正文是空的:

{}

我在“每次alert()调用”时设置警报

我也尝试过

alertcondition
,但结果是一样的:空身体。

谢谢

json pine-script webhooks
1个回答
0
投票

尝试使用 log.info 来测试您的警报消息

msgAlert = "{'heyyy':'oohhhh!'}"
if testcondition and barstate.isconfirmed
    alert(msgAlert, freq = alert.freq_once_per_bar_close)
    log.info("\n{0}", msgAlert)

你的绳子看起来不错

enter image description here

这看起来不像是 pinescript 的问题

© www.soinside.com 2019 - 2024. All rights reserved.