放分时的指标改成分时选股不可行,改成一般选股很容易。 日1:=ema(c,1); 日:=ema((h+l+c)/3,1); 日5:=ma(ema((h+l+c)/3,1),5); 日10:=ma(ema((h+l+c)/3,1),10); 对比日:=ema(ref(日,240),1) ; 对比日5:=ma(ema(ref(日,240),1),5); 对比日10:=ma(ema(ref(日,240),1),10); 强:=日5>对比日5 and 日10>对比日10 and 日5-对比日5>0 and 日10-对比日10>0 ; 角:=(atan((日10/ref(日10,5)-1)*100)*180/3.14115926)>30; 角2:=(atan((日10/ref(日10,5)-1)*100)*180/3.14115926)>20; 弱:=日5<对比日5 and 日10<对比日10 and 日5-对比日5<0 and 日10-对比日10<0 and 对比日5>ref(对比日5,3); /*下面是两个不同的选股条件,可任选一,也可组合与和组合或,能衍生出4个选股公式*/ cross(日5,对比日5) and c>ref(c,150) and 角; cross(日1,对比日)and c>ref(c,240); 20210311
这是不含当天收盘价的,即t-1,t-2,t-3,112只符合条件(hhv(h,3)-llv(low,3))/ref(close,3)*100<5 and abs((close-ref(close,3))/ref(close,3))*100<1.5;这是含当天收盘价的,即t,t-1,t-2,可以盘中选股,1只符合条件(hhv(h,3)-llv(low,3))/ref(close,3...
x_1:=ref(close,1)/ref(close,2)>1.095 and ref(close,1)=ref(high,1) and open>ref(high,1) and vol=hhv(vol,5) and close;x_2:=ma(close,5)>ma(close,10);x_3:=close/ref(close,1)<0.91;x_4:=every(re...
ma5:=ma(close,5);ma10:=ma(close,10);ma60:=ma(close,60);pday1:=barslast(cross(ma5,ma60));pday2:=barslast(cross(ma10,ma60));pday3:=barslast(high=hhv(high,pday2));pday4:=barslast(cross(ma10,ma5) or (ref(...