本文指标含有选股公式如下: 此处内容已被隐藏,请输入验证码查看内容。请关注本站微信公众号,回复“88”,获取验证码。 提示:在微信里搜索“股旁网”或者微信扫描右侧二维码。x1:=(high+low+close*2)/4; x2:=ema(x1,10); x3:=std(x1,10); x4:=(x1-x2)*100/x3; x5:=ema(x4,5); 价比:ema(x5,10)+100/2-5,colorred,linethick2; 量比:ema(价比,4),colorcyan,linethick2; 介入1:if(cross(价比,量比)and 价比<80 and 价比>0,20,-70),colorwhite,linethick2; 介入2:if(cross(价比,量比)and 价比<-50 ,20,-80),colormagenta,linethick2; 卖1:if(价比>150,110,150),colorligray,linethick2; 卖2:if(价比>170,130,180),colorgray,linethick2; x6:=sma(abs(low-ref(low,1)),3,1)/sma(max(low-ref(low,1),0),3,1)*100; x7:=ema(if(close*1.2,x6*10,x6/10),3); x8:=if(llv(low,90),1,0); 主力吸货:=ema(if(low<=llv(low,38),(x7+hhv(x7,38)*2)/2,0),3)/618*x8,colormagenta,nodraw; x9:=if(主力吸货<180,主力吸货,180); stickline(主力吸货,0,x9,3,0),colorred; x10:=3*sma((c-llv(l,55))/(hhv(h,55)-llv(l,55))*100,5,1)-2*sma(sma((c-llv(l,55))/(hhv(h,55)-llv(l,55))*100,5,1),3,1); 趋势线:=ema(x10,3),coloryellow,nodraw; x11:=(趋势线-ref(趋势线,1))/ref(趋势线,1)*100; 介入3:stickline(趋势线<=13 and x11>13,0,50,1,0),coloryellow; bb:=(趋势线<=13 and x11>13)and filter((趋势线<=13 and x11>13),10) ; drawtext(bb,60,'介入3'),coloryellow; if(cross(价比,量比)and 价比<3,20,0),colorbrown,circledot; 
|