P1:=0; P2:= IF (CLOSE>MA(CLOSE,5),P1+10,P1-10);
P3:= IF (CLOSE>MA(CLOSE,10),P2+10,P2-10);
P4:= IF (CLOSE>MA(CLOSE,10),P3+10,P3-10);
P5:= IF (MA(CLOSE,5)>MA(CLOSE,10),P4+10,P4-10);
P6:= IF (MA(CLOSE,10)>MA(CLOSE,20),P5+10,P5-10);
BD:P6;
BD80:BD>=REF(BD,1)+80,NODRAW;
DRAWICON(BD80,56,3);
BD负80:BD<=REF(BD,1)-80,NODRAW;
DRAWICON(BD负80,40,2);
STICKLINE(BD>=-50,-50,BD,3,0),colorgreen;
STICKLINE(BD>=-30,-30,BD,3,0),COLORFFFF00;
STICKLINE(BD>=0,0,BD,3,0),coloryellow;
STICKLINE(BD<=50 AND BD>=30,30,BD,3,0),colorred;
|
