如何在alert.freq中使用条件
您可以控制时间范围是否为 15 分钟,然后使用 alert.freq_once_per_bar_close
,如果时间范围为每日,则在 alert("message", freq)< 中使用
alert.freq_once_per_bar
/代码>?
我试过 alert("message", timeframe.isminutes?alert.freq_once_per_bar_close:alert.freq_once_per_bar)
但出现此错误:
“无法使用参数 'freq'='call 'operator ?:' (simple string) 调用 'alert''。使用了 'simple string' 类型的参数,但使用了 'input string'预期”
Can you control if timeframe is 15 min then use alert.freq_once_per_bar_close
, if timeframe is daily then use alert.freq_once_per_bar
in alert("message", freq)
?
I triedalert("message", timeframe.isminutes? alert.freq_once_per_bar_close: alert.freq_once_per_bar)
but getting this error:
"Cannot call 'alert' with argument 'freq'='call 'operator ?:' (simple string)'. An argument of 'simple string' type was used but a 'input string' is expected"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用两个 if 块来做到这一点。
You need to use two if blocks to do that.