Pinescript 在警报中发回自定义变量

Posted

技术标签:

【中文标题】Pinescript 在警报中发回自定义变量【英文标题】:Pinescript sending back custom variables in alerts 【发布时间】:2020-05-18 16:49:03 【问题描述】:

我正在尝试通过 Pinescript 警报发回自定义变量。

top        = input(title="Top",                      type=input.float,    defval=10000, minval=1)
bottom     = input(title="Bottom",                   type=input.integer,  defval=5000, minval=0)

failedmessage = " \"processing\":\"NONE\" "
basemessage   = " \"processing\":\"COMPLETED\", \"top\":top, \"bottom\":bottom "

alertcondition( top > bottom, title="test",  message=basemessage   )

弹出警报条件时,“top”和“bottom”的值没有填写,我也试过了:

basemessage   = " \"processing\":\"COMPLETED\", \"top\":\"Top\", \"bottom\":\"Bottom\" "

但这也不起作用。

我可以在这里做什么?

谢谢!

【问题讨论】:

【参考方案1】:

您不能在警报消息中使用动态文本。

如果使用不同的数值来区分警报消息中的条件可以满足您的需求,请参阅该答案中的第一个链接以获取可用于实现此目的的技术示例。

【讨论】:

【参考方案2】:

现在您可以通过 strategy.entry 发送动态警报消息。下面是一个示例代码。

buy_msg = "TYPE:LE "+" :SYMBOL: "+syminfo.ticker +" :PRICE: "+tostring(close)+" :QTY: "+tostring(quant)
sell_msg = "TYPE:Lx "+" :SYMBOL: "+syminfo.ticker +" :PRICE: "+tostring(close)+" :QTY: "+tostring(quant)

strategy.entry("Long", strategy.long, when = buy,comment="Buy",alert_message=buy_msg )
strategy.entry("Short", strategy.short, when = sell,comment="Sell",alert_message=sell_msg)

【讨论】:

以上是关于Pinescript 在警报中发回自定义变量的主要内容,如果未能解决你的问题,请参考以下文章

如何在 JavaScript 中自定义警报?

在 Swift 的警报中使用自定义视图

Ionic 2 警报自定义

如何在 Android 的非活动类中编写自定义警报?

在swift 3中显示来自自定义单元格的警报

如何在特定时间显示自定义警报?