限制交易时间为9:05-14:55
以5分钟K线为基准
当价格超出上根K线最高价,做多。当随后价格跌破前一根K线最低价止损。
当价格跌破上根K线最低价,做空。当随后价格上破前一根K线最高价止损。
谢谢各位
问题正在解决中
if c>ref(h,1) then buy(holding=0,1,market);
if c<ref(l,1) then sell(holding>0,market);
if c<ref(l,1) then buyshort(holding=0,market);
if c>ref(h,1) then sellshort(holding<0,market);
能解决吗?
您试一下,这个应该可以达到要求
tt:=time>090500 and time<145500;
if c<ref(l,1) and time then sell(holding>0,1,market);
if c>ref(h,1) and time then buy(holding=0,1,market);
if c>ref(h,1) and time then sellshort(holding<0,1,market);
if c<ref(l,1) and time then buyshort(holding=0,1,market);
楼主新手,推荐您看看帮助里的视频教程和文挡教程.