我像在图表模式下。在行情突破20日最高价格时候开多,突破20日最低价格时候开空。但是一次都没有成交。
h20:hhv(h,20);
l20:llv(l,20);
if h>h20 and l<h20 then buy(holding=0,1,limitr,h20);
if h<h20 and l>h20 then SELL(holding=0,1,limitr,l20);
资产:ASSET,NOAXIS,COLORGRAY;
代码修改如下:
h20:hhv(h,20);
l20:llv(l,20);
if h>=h20 then begin
sellshort(1,0,market);
buy(holding=0,1,limitr,h20);
end
if l<=l20 then begin
sell(1,0,market);
buyshort(holding=0,1,limitr,l20);
end