条件:k线最低<5,10,21日均线,最高价>5日10日21日均线,收盘21线之上,公式如下:low<ma(close,5) and low<ma(close,10) and low<ma(close,21) and high>ma(close,5) and high>ma(close,10) and high>ma(close,21) and cl...
具体的选股公式如下: t1:=ma(c,5)>ma(c,10)and ma(c,10)>ma(c,20)and ma(c,20)>ma(c,60);t2:=count(t1 and v(v,1),3)>=2;t3:=count(c(c,ma(c,10)*0.98,ma(c,10)*1.01),3)>=2;xg:t1 and t2 and t3;在股市中我们经常看的大盘...
mv5:=ma(amount,5);mv10:=ma(amount,10);mv20:=ma(amount,20);mv30:=ma(amount,30);tj1:=mv5>mv10 and mv10>mv20 and mv20>mv30;tj2:=mv5>ref(mv5,1) and mv10>ref(mv10,1) and mv20>ref(mv20,1) ...