问题描述
进入单柱反转,如果当前柱低于上一个柱的低点或高于上一个柱的高点,则收盘。进入标准运行正常,但不运行退出标准。不知道我做错了什么
//@version=4
exitShort = iff(close > open and close > high[1],true,false)
exitLong = iff(close < open and close < low[1],false)
strategy("OneBarReversal",overlay=true)
if (low < low[1] and close > high[1])
strategy.entry("RevBarUp",strategy.long)
strategy.close("Elong",when = exitLong)
if (high > high[1] and close < low[1])
strategy.entry("RevBarDn",strategy.short)
strategy.close("Eshort",when = exitShort)
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)