如何在alert.freq中使用条件

发布于 2025-01-10 02:10:39 字数 429 浏览 0 评论 0原文

您可以控制时间范围是否为 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 tried
alert("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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放赐 2025-01-17 02:10:39

您需要使用两个 if 块来做到这一点。

f_tfInMinutes() => 
    _tfInMinutes = timeframe.multiplier * (
      timeframe.isseconds ? 1. / 60             :
      timeframe.isminutes ? 1.                  :
      timeframe.isdaily   ? 60. * 24            :
      timeframe.isweekly  ? 60. * 24 * 7        :
      timeframe.ismonthly ? 60. * 24 * 30.4375  : na)

is_15_min = f_tfInMinutes() == 15
is_daily = f_tfInMinutes() == 1440

if (is_15_min and alert_condition)
    alert("message", alert.freq_once_per_bar_close)
    
if (is_daily and alert_condition)
    alert("message", alert.freq_once_per_bar)

You need to use two if blocks to do that.

f_tfInMinutes() => 
    _tfInMinutes = timeframe.multiplier * (
      timeframe.isseconds ? 1. / 60             :
      timeframe.isminutes ? 1.                  :
      timeframe.isdaily   ? 60. * 24            :
      timeframe.isweekly  ? 60. * 24 * 7        :
      timeframe.ismonthly ? 60. * 24 * 30.4375  : na)

is_15_min = f_tfInMinutes() == 15
is_daily = f_tfInMinutes() == 1440

if (is_15_min and alert_condition)
    alert("message", alert.freq_once_per_bar_close)
    
if (is_daily and alert_condition)
    alert("message", alert.freq_once_per_bar)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文