var1:=close>ref(close,1) and close>ref(close,2);var2:=ref(var1,1) and close<=ref(close,1) and close>=ref(close,2);var3:=ref(var2,1) and close>=ref(close,1) and close<=ref(close,2);va...
dif:=ema(close,12)-ema(close,26);dea:=ema(dif,9);macd:=(dif-dea)*2;a1:= macd>=0 and ref(macd,1)>=0 and ref(macd,2)>=0 and ref(macd,3)>=0 and macd>ref(macd,1)and ref(macd,1)(macd,2) and ...
选出发出箭头的股票如下:--------------var1:=(2*close+high+low)/4;var2:=llv(low,34);var3:=hhv(high,34);近:=ema((var1-var2)/(var3-var2)*100,13);远:=ema(0.667*ref(近,1)+0.333*近,2);选股:cross(近,远) and 近<20;-----------
v1:=ema(close,60)-ema(close,300);v2:=ema(v1,300);v3:=(close-llv(low,8))/(hhv(high,8)-llv(low,8))*100;v4:=sma(v3,2,1);v5:=sma(v4,2,1);v6:=close/ref(close,3)>=1.1;v7:=backset(v6,3);买入:if((v7 and coun...