流通盘:=10;缺口大小:=2;日期:=1;
ws:=mod(ref(c,1)*100,10)/100;
fd:=ref(c,1)/10-if(ws<0.05,ws,ws-0.10)/10;
st1:=if(namelike('s'),0,1);
st2:=if(namelike('*'),0,1);
st3:=if(codelike('300'),0,1);
st4:=dynainfo(17)>0;
st5:=finance(40)/c/100000000<=流通盘;
st6:=if((c>=(ref(c,1)+fd-0.009) and c<=(ref(c,1)+fd+0.009)),0,1);
c1:=st1 and st2 and st3 and st4 and st5 and st6;
c20:=(l/ref(h,1)-1)*100>缺口大小;
c21:=barslast(c20);
c22:=between(c21+1,1,日期);
c2:=count(l>ref(h,c21+1),c21)=c21 and c22;
zxg:c1 and c2;
九毛八公式解读
流通盘赋值:10 缺口大小赋值:2 日期赋值:1 WS赋值:1日前的收盘价*100关于10的模/100 FD赋值:1日前的收盘价/10-如果WS<0.05,返回WS,否则返回WS-0.10/10 ST1赋值:如果模糊匹配品种名称,返回0,否则返回1 ST2赋值:如果模糊匹配品种名称,返回0,否则返回1 ST3赋值:如果模糊匹配品种代码,返回0,否则返回1 ST4赋值:量比>0 ST5赋值:流通市值/收盘价/100000000<=流通盘 ST6赋值:如果(收盘价>=(1日前的收盘价+FD-0.009)ANDC<=(1日前的收盘价+FD+0.009)),返回0,否则返回1 C1赋值:ST1 AND ST2 AND ST3 AND ST4 AND ST5 AND ST6 C20赋值:(最低价/1日前的最高价-1)*100>缺口大小 C21赋值:上次C20距今天数 C22赋值:C21+1位于1和日期之间 C2赋值:统计C21日中满足最低价>C21+1日前的最高价的天数=C21 AND C22 输出ZXG:C1 AND C2