var1:=vol/((high-low)*2-abs(close-open));主动买盘:=if(close>open,var1*(high-low),if(close<open,var1*((high-open)+(close-low)),vol/2))stick,linethick2;主买率:=主动买盘/vol*100,colorred;ma1:=xma(vol,5),colorgreen,linethick1;var2:=llv(low,10);var3:=hhv(high,25);动力线:=ema((close-var2)/(var3-var2)*4,4)*20;选股:动力线<=38 and 主买率>=n and vol<ma1 and ma1>=ref(ma1,1); 20210311
bt1:=cross(rsi.rsi1,25);主力:=ema( (close-ma(close,7))/ma(close,7)*480,2)*5;散户:=ema( (close-ma(close,11))/ma(close,11)*480,7)*5;bt2:=cross(主力,散户) and 主力<-10; bt:=filter(count(bt1 or bt2,3)>=2,3);...