var1:=sum(max(max(high-low,abs(high-ref(close,1))),abs(low-ref(close,1))),25);var2:=high-ref(high,1);var3:=ref(low,1)-low;var4:=sum(if(var2>0 and var2>var3,var2,0),...
改好了,你试试吧m1:=ma(c,5),coloryellow;m2:=ma(c,10),colorcyan;m3:=ma(c,20),colorgreen;m4:=ma(c,60),colorred,linethick2;最大值:=max(max(m1,m2),max(m3,m4)); 最小值:=min(min(m1,m2),min(m3,m4)); 选股:o<=最小值 and c>...
上趋势:=ma(low,20)*1.2;次上趋势:=ma(low,20)*1.1;次下趋势:=ma(high,20)*0.9;下趋势:=ma(high,20)*0.8;趋势强度:=if(c>次上趋势,if(c>上趋势,4,3),if(c>次下趋势 and c<次上趋势,2,if(c<下趋势,0,1)));xg:趋势强度=4 and ref(趋势强度=3,1);这样就可...