编写条件:
第一根K线跌幅为(-3%至—7%)第2根K线和第3根K线的涨幅不的高于第1根K线实体的一半,第2根和第3根K线的收盘价大于或等于第一根K线的收盘价编写方法:
s1:=range(c/ref(c,1),0.93,0.97);
s2:=(max(o,c)+min(o,c))/2;
ref(s1,2) and c<=ref(s2,2) and ref(c,1)<=ref(s2,2) and c>=ref(c,2) and ref(c,1)>ref(c,2);