编写条件:
今日开盘价在5日线下方; 5和13均线多头; 前5日区间累计涨幅小于10。编写方法:
o<ma(c,5) and ma(c,5)>ref(ma(c,5),1) and ma(c,13)>ref(ma(c,13),1) and (c-ref(c,5))/ref(c,5)*100<10;
来源:Internet,编辑:股旁网,2018-01-09
编写条件:
今日开盘价在5日线下方; 5和13均线多头; 前5日区间累计涨幅小于10。编写方法:
o<ma(c,5) and ma(c,5)>ref(ma(c,5),1) and ma(c,13)>ref(ma(c,13),1) and (c-ref(c,5))/ref(c,5)*100<10;