涨停:=if((c-ref(c,1))*100/ref(c,1)>=(10-0.01*100/ref(c,1)),1,0);区间涨幅:=(c/ref(llv(c,24),1)-1)*100;区间振幅:=(hhv(h,25)/llv(l,25)-1)*100;区间换手:=sum(v/capital*100,25);a1:=count(涨停,25)=2;a2:=barssincen(涨停,25);a3:=barslast(涨停);a4:=a2>a3+1;a5:=区间涨幅>0.15 and 区间涨幅;a6... 20210311
{通达信股价为5.55或者6.66的条件选股公式} 元:=intpart(c);角:=intpart(c*10)-元*10;分:=fracpart(c*10)*10;元角分5:=元=5 and 角=5 and 分=5;元角分6:=元=6 and 角=6 and 分=6;选:元角分5+元角分6>0;路过的朋友如果认为我这个回答很好,请加关注我,
{出现洋红色柱体时买入}var1b:=(c+h+o+l)/4;买入:=xma(var1b,10)*(1-20/1000),colormagenta,linethick1;xg:(买入>low and 买入<high)or (买入>min(c,o) and 买入<max(c,o))or (买入>low and 买入<high);里面有未来函数,不建议使用。{底位白...
以下是修改过的,按问题要求做的股票选股公式,用软件实际测试过能达到要求,可以使用: za1:=sma(close,2,1);za2:=ema(c,2);za3:=ema(slope(c,24)*20+c,42);bu:=cross(za2,ref(za2,1)*1.017);sel:=cross(za3,za2);zmin:bu and cross(za2,za3*1.008)and za1>...