编写要求:
1.60日均线向上; 2.股价回调到60日均线附近; 3.5日均线上拐; 4.RSI(参数5)上穿50; 5.成交量放大。
www.gszx.com.cn网解答:
aa:=ma(c,60)>ref(ma(c,60),1);
bb:=l<ref(l,1) and l/ma(c,60)<1.02;
cc:=ma(c,5)>ref(ma(c,5),1) and ref(ma(c,5),1)<ref(ma(c,5),2);
dd:=cross(rsi.rsi1,50);
ee:=v>ma(v,5);
xg:aa and bb and cc and dd and ee;