VAR1:=((CLOSE-LLV(LOW,15))/(HHV(HIGH,15)-LLV(LOW,15)))*(100); VAR3:=SMA(VAR1,5,1); K:=SMA(VAR3,3,1); D:=SMA(K,3,1); 超卖线:15,NODRAW,COLORRED; 超买线:85,NODRAW,COLORGREEN; STICKLINE(1,15,15,1,0),COLORRED; STICKLINE(1,85,85,1,0),COLORGREEN; STICKLINE(1,0,1,20,0),COLORRED; STICKLINE(1,99,100,20,0),COLORGREEN; STICKLINE((K =D),K,D,2.5,0),COLOR0000A8; STICKLINE((K =D),K,D,6,0),COLOR0000C0; STICKLINE((K =D),K,D,4,0),COLOR0000E0; STICKLINE((K =D),K,D,2,0),COLOR0000F0; STICKLINE((K =D),K,D,1,0),COLOR0000D0; STICKLINE((K =D),K,D,0.5,0),COLOR0000FF; STICKLINE((K =D),K,D,2.5,0),COLOR008800; STICKLINE((K =D),K,D,6,0),COLOR009900; STICKLINE((K =D),K,D,4,0),COLOR00AA00; STICKLINE((K =D),K,D,2,0),COLOR00BB00; STICKLINE((K =D),K,D,1,0),COLOR00CC00; STICKLINE((K =D),K,D,0.5,0),COLOR00DD00; BUY_1:=CROSS(K,D) AND (D SEL_1:=CROSS(D,K) AND (D DRAWICON(BUY_1,15,59); DRAWICON(SEL_1,85,61);