gspt1:=MA(CLOSE,27);
gspt2:=(CLOSE-gspt1)/gspt1*100;
gspt3:=MA(gspt2,2);
gspt4:=BARSLAST(CROSS((-10),gspt3)=1);
gspt5:=gspt3<(-10) AND gspt4>3;
gspt6:=ABS(IF(gspt5,gspt3,0));
gspt7:=gspt6>0;
gspt8:=CLOSE/(EMA(EMA((CLOSE+LOW+HIGH)/3,3),26)*0.9)<0.95;
gspt9:=MA((CLOSE-MA(CLOSE,21))/MA(CLOSE,21),3)*100;
gspt10:=gspt9<(-15);
DRAWTEXT_FIX(1,0,0.07,0,'分析家公式网http://www.70822.com'),COLOR333333;
gspt11:=(CLOSE-MA(CLOSE,28))/MA(CLOSE,28)*100<(-23);
gspt12:=CLOSE/REF(LLV(CLOSE,10),1)<0.96 AND LOW/REF(LLV(LOW,10),1)<0.99 AND CLOSE!=LOW AND CLOSE/LOW>1.005;
gspt13:=FILTER(gspt7 AND gspt8 AND gspt10 AND gspt11 AND gspt12,10);
STICKLINE(gspt13,0,10,3,0),COLORYELLOW;
STICKLINE(gspt13,0,13,1,0),COLORRED;