MACD,KDJ,RSI顶底背离
A1:=BARSLAST(ref(cross("macd.diff","macd.dea"),1)); B1:=ref(c,A1+1)>c and ref("macd.diff",A1+1)<"macd.diff" and cross("macd.diff","macd.dea"); DRAWTEXT(FILTER(B1>0,5),l*0.99,'MACD底背'),COLORGREEN; DrawIcon(FILTER(B1>0,5),l,4),ALIGN1,VALIGN0;
A2:=BARSLAST(ref(cross("kdj.k","kdj.d"),1)); B2:=ref(c,A2+1)>c and ref("kdj.k",A2+1)<"kdj.k" and cross("kdj.k","kdj.d"); DRAWTEXT(FILTER(B2>0,5),l*0.97,'KDJ底背'),COLORYELLOW; DrawIcon(FILTER(B2>0,5),l,4),ALIGN1,VALIGN0;
A3:=BARSLAST(ref(cross("RSI.RSI1","RSI.RSI2"),1)); B3:=ref(c,A3+1)>c and ref("RSI.RSI1",A3+1)<"RSI.RSI1" and cross("RSI.RSI1","RSI.RSI2"); DRAWTEXT(FILTER(B3>0,5),l*0.95,'RSI底背'),COLORCYAN; DrawIcon(FILTER(B3>0,5),l,4),ALIGN1,VALIGN0;
C1:=BARSLAST(ref(cross("macd.dea","macd.diff"),1)); D1:=ref(c,C1+1)<c and ref("macd.diff",C1+1)>"macd.diff" and cross("macd.dea","macd.diff"); DRAWTEXT(FILTER(D1>0,5),h*1.01,'MACD顶背'),COLORwhite; DrawIcon(FILTER(D1>0,5),h*1.01,5),ALIGN1,VALIGN0;
C2:=BARSLAST(ref(cross("kdj.d","kdj.k"),1)); D2:=ref(c,C2+1)<c and ref("kdj.k",C2+1)>"kdj.k" and cross("kdj.d","kdj.k"); DRAWTEXT(FILTER(D2>0,5),h*1.03,'KDJ顶背'),COLORwhite; DrawIcon(FILTER(D2>0,5),h*1.01,5),ALIGN1,VALIGN0;
C3:=BARSLAST(ref(cross("RSI.RSI2","RSI.RSI1"),1)); D3:=ref(c,C3+1)<c and ref("RSI.RSI1",C3+1)>"RSI.RSI1" and cross("RSI.RSI2","RSI.RSI1"); DRAWTEXT(FILTER(D3>0,5),h*1.05,'RSI顶背'),COLORMAGENTA; DrawIcon(FILTER(D3>0,5),h*1.01,5),ALIGN1,VALIGN0; |
| 责任编辑 yjwl |
|