n:=7;tr1:=sma(max(max(high-low,abs(high-ref(close,1))),abs(low-ref(close,1))),n,1);hd:=high-ref(high,1);ld:=ref(low,1)-low;dmp:=sma(if(hd>0 and hd>ld,hd,0),n,1);dmm:=sma(if(ld>0 and ld>hd,...
ma5:=ma(c,5),colorwhite;ma10:=ma(c,10),coloryellow;ma30:=ma(c,30),colorred;ma60:=ma(c,60),colorgreen;tr1:=cross(ref(c,2),ma10);tr2:=cross(ref(c,1),ma30) or cross(ref(c,1),ma60) ;tr3:=l<ma60 and c&g...
名称:上穿三线股七天操盘线:=expma(close,7);一号生命线:=expma(close,14);二号生命线:=ma(close,24);斑马线:=expma(close,12);小黑马线:=expma(close,50);xg:cross(七天操盘线,一号生命线) and cross(七天操盘线,二号生命线) and cross(七天操盘线,斑马线) and 七天操盘线-一号生命线<...