oo:valuewhen(todaybar=1,o);
hh:=hhv(h,enterbars+1);
ll:=llv(l,enterbars+1);
if h>=oo+20*mindiff then buy(holding=0,1,market);
if l<=hh-20 then begin
sell(holding>0,holding,market);
buyshort(holding=0,1,market);
end
if l<=oo-20 then buyshort(holding=0,1,market);
if h>=ll+20 then begin
sellshort(holding<0,holding,market);
buy(holding=0,1,market);
end
if time>=150000 then begin //15点平仓,其他品种要改下时间
sell(holding>0,holding,market);
sellshort(holding<0,holding,market);
end