dif:=ema(close,12)-ema(close,26);dea:=ema(dif,9);a1:=cross(dif,dea);a2:=cross(ma(c,5),ma(c,10));a3:=cross(ma(v,5),ma(v,10));xg:a1 and a2 and a3; 测试通过,完全按照你的条件做的,不过完全同时满足3个条件的股不好选!如果你觉得满意,记得要给分哦,纯手工的...
我能编出来。不难。只是有疑问。你对于第一根k线的中阳线或大阳线的涨幅是要求多少%? st:=ref(close,1)/ref(open,1);w1:=st>1.03 and close/open>1 and close/open<st;w2:=open>ref(open,1) and close>ref(close,1);w3:=high<ref(high,1)...