lc:=ref(c,1);rsv:=(close-llv(low,9))/(hhv(high,9)-llv(low,9))*100;k:=sma(rsv,3,1);d:=sma(k,3,1);j:=3*k-2*d;rsi:=sma(max(close-lc,0),6,1)/sma(abs(close-lc),6,1)*100;美羊羊选股:cross(j,0) and rsi<33;
底必买: if(trou**ars(3,15,1)=0 and high>low+0.01,1,-1);上边一句就是了,但是代码中有未来函数,出现黄色信号后,如果股价继续往下走,信号就会消失了。小心用哦。 这个信号就是靠未来函数trou**ars才出现的,去掉该函数,也就去掉了这个信号。凡是你看起来历史信号,超级准确的公式,都是未来函数使信号漂移导致的。开始玩指标公式的人,总要碰到这情况,既...
ma5:=ma(c,5);ma10:=ma(c,10);ma30:=ma(c,30);zx:=(ma5+ma10)/2;qsxs:=ma5>=ma30 and ma30>ref(ma30,1);gd:=zx>=ref(zx,1) and ref(zx,1)<ref(zx,2);yb:=c>ref((o-c)/2+c,2);买:=cross(c,zx) and (gd ...