{绿线买}lc:=ref(close,1);操作线:=sma(max(close-lc,0),2,1)/sma(abs(close-lc),2,1)*100;趋势线:=sma(max(close-lc,0),14,1)/sma(abs(close-lc),14,1)*100;震仓线:=45;pp:=操作线<震仓线 and ref(操作线,1)>震仓线 ;涨停:=if(ref(c,1)...
a:=ref(every(c/ref(c,1)>1,3),1);b:=asr<ref(asr,1) and scr>ref(scr,1) and c/ref(c,1)>1.03 and dyna**(37)>0.03;a and b and ref(c,1)/ref(c,4)<1.08;测试通过!希望能够帮助你!
aa1:=amount/vol;bb1:=l<aa1*0.9;cc1:=(c-ref(c,1))/ref(c,1)*100>1.2;dd1:=l<ma(c,6)*0.921;ee1:=vol<ma(v,5)*1.5;ff1:=bb1 and cc1 and dd1 and ee1;mr:if(ff1,50,0),color00ff00;保存为‘技术指标’或‘条件选股’公式即...
用这个就行了:a1:=(dvol/c)/2;a2:=sum(if(a1>100 and close>ref(close,1),a1,0),0);a3:=sum(if(a1>100 and close<ref(close,1),a1,0),0);a4:=sum(if(a1<100 and close>ref(close,1),a1,0),0);a5:=sum(if...
var1:=1;var2:=((((2*close)+high)+low) / 4);var4:=llv(low,5);var5:=hhv(high,4);c1:=ema(((var2-var4)/(var5-var4))*100,4)*var1;c2:=(ema(((0.667*ref(c1,1))+(0.333*c1)),2)*var1);条件:=cross(c1,c2) and c1<...