GWG:=REF(HHV(H,M1),1);
GWD:=REF(LLV(L,M1),1);
if C>GWG then buy(holding=0,1,market);
if C<GWD then buyshort(holding=0,1,market);
sklow:=llv(l,enterbars+1);
BKHIGH:=hhv(h,enterbars+1);
if CLOSE>enterprice+N1 then sellshort(holding<0,holding,market);//收盘价大于上一次开空价格+N1,平空
if CLOSE<enterprice-N1 then sell(holding>0,holding,market)//收盘价小于上一次开多价格-N1,平多
if (BKHIGH-enterprice)>=N2 AND (BKHIGH-CLOSE)>=(BKHIGH-enterprice)/3 then
sell(holding>0,holding,market);
if (enterprice-SKLOW)>=N2 AND (CLOSE-SKLOW)>=(enterprice-SKLOW)/3 then
sellshort(holding<0,holding,market);