GSPT1:=REF(CLOSE,1)< REF(OPEN,1);
趋势线:MA(CLOSE,10)DOTLINE;
GSPT2:=REF(VOL,1)>REF(VOL,2);
GSPT3:=CLOSE>REF(HIGH,1);
AA:=C>MA(C,10);
条件:=GSPT1 AND GSPT2 AND GSPT3 AND AA;
STICKLINE(条件,O,C,2,0),COLORRED;
DRAWICON(条件,L,9);
DRAWTEXT(条件,L*0.98,' ★反包'),COLORYELLOW;