提问人:jonahmano 提问时间:11/13/2023 更新时间:11/13/2023 访问量:4
当当前蜡烛时间低于 22 分钟时触发 condtion
Trigger a condtion when the current candle time is under 22 mins
问:
我只想在当前蜡烛的 22 分钟以下满足条件时触发条件。在交易视图中,我将触发一次警报。我在 30 分钟的蜡烛间隔中。如果我的条件在 23 分钟后得到满足,那么我不想触发该条件。
@version=5 indicator(“您的指标”, overlay=true)
strategy.entry(“买入”, strategy.long, when = rsi > 70 and (timenow - timestamp(year, month, dayofmonth, hour, minute)) <= 22 * 60 and (dayofmonth != dayofmonth[1] or hour != hour[1] or minute != minute[1]))
答: 暂无答案
评论