diff:=ema(close,12)-ema(close,26);dea:=ema(diff,9);macd:=2*(diff-dea);sx:=barslast(cross(dea,diff))+1;jx:=barslast(cross(diff,dea))+1;t1:=if(jx=1 and diff>ref(diff,ref(jx,1)+1),1,0);t2:=if(jx=1 and...
名称:上穿三线股七天操盘线:=expma(close,7);一号生命线:=expma(close,14);二号生命线:=ma(close,24);斑马线:=expma(close,12);小黑马线:=expma(close,50);xg:cross(七天操盘线,一号生命线) and cross(七天操盘线,二号生命线) and cross(七天操盘线,斑马线) and 七天操盘线-一号生命线<...