1、倍量过左锋选股(选股公式)
sr1:=ref(high,10)=hhv(high,2*10+1);
sr2:=filter(sr1,10);
sr3:=backset(sr2,10+1);
hd:=filter(sr3,10);
前高:=ref(h,barslast(hd));
倍量:=vol/ref(vol,1)>=1.9;
突破前高:cross(c,前高);
2、平台线及黄金数(主图指标)
{双10+20日量能}
ma(c,3);
n:=5;
t1:=const(hhvbars(v,n));
t0:if(currbarscount<=n+3,const(if(t1=0,c,ref(c,t1))),drawnull),colorff00ff;
if(currbarscount=t1+1,t0,drawnull),circledot,colorff00ff;
drawtext(islastbar,t0,' 量能平台'),colorcccccc;
{好公式网-最好的股票公式网站 www.goodgongshi.com}
w:=21;
w1:=const(ref(hhvbars(v,w),t1+1)+t1+1);
w0:if(currbarscount<=t1+w+3 and currbarscount>=t1+1,const(ref(c,w1)),drawnull),color009999;
if(currbarscount=w1+1,w0,drawnull),circledot,color00cccc;
m:=34;
q1:=const(ref(hhvbars(v,m),t1+1)+t1+1);
q0:if(currbarscount<=t1+m+3 and currbarscount>=t1+1,const(ref(c,q1)),drawnull),color009900;
if(currbarscount=q1+1,q0,drawnull),circledot,color00cc00;
r:=88;
y1:=const(ref(hhvbars(v,r),t1+1)+t1+1);
y0:if(currbarscount<=t1+r+3 and currbarscount>=t1+1,const(ref(c,y1)),drawnull),color119911;
if(currbarscount=y1+1,y0,drawnull),circledot,colorcc00cc;
所属地域:drawtext_fix(islastbar ,0.88,1,1,dyblock),coloryellow;
所属行业:drawtext_fix(islastbar ,0.91,1,0,hyblock),coloryellow;
drawtext_fix(1,0.00,0.18,0,'主题投资:')colorwhite;
drawtext_fix(1,0.09,0.18,0,externstr(0,1))colorwhite;
drawtext_fix(1,0.00,0.26,0,'主营业务:')colorff00ff;
drawtext_fix(1,0.09,0.26,0,externstr(0,2))colorff00ff;
stickline(c/ref(c,1)>=1.045 and c/ref(c,1)<=1.095,c,o,3,0),colorb0b0ff;
{涨停变黄颜色}
stickline(c>1.095*ref(c,1),c,o,2.5,0),coloryellow;
varzt:=barslast(c/ref(c,1)>1.097);
drawtext(varzt=2,l*0.95,'3天'),coloryellow;
drawtext(varzt=4,h*1.06,'5天'),coloryellow;
drawtext(varzt=7,l*0.95,'8天'),coloryellow;
drawtext(varzt=12,h*1.06,'13天'),coloryellow;
drawtext(varzt=20,l*0.95,'21天'),coloryellow;
drawtext(varzt=33,h*1.06,'34天'),coloryellow;
drawtext(varzt=54,l*0.95,'55天'),coloryellow;
drawtext(varzt=88,h*1.06,'89天'),coloryellow;
3、macd指标二次翻红选股(选股公式)
diff:=ema(close,12)-ema(close,26);
dea:=ema(diff,9);
macd:=2*(diff-dea);
fh1:=ref(macd,1)<ref(macd,2) and ref(macd,2)<ref(macd,3) and ref(macd,3)<ref(macd,4);
fh2:=macd>=0 and count(macd>ref(macd,1),1)=1;
fh3:=ema(c,30)>=ref(ema(c,30),1) and count(ema(c,5)>ema(c,10) and ema(c,10)>ema(c,30),1)=1;
fh4:=cross(c,ema(c,30)) or c>ema(c,30);
fh5:=fh1 and fh2 and fh3 and fh4;
fh6:=fh1 and fh2 and fh3 and fh4 and abs((diff-dea)/c)<0.018;
fh7:=fh1 and fh2 and fh3 and fh4 and macd<0.10;
fh5 or fh6 or fh7;
4、涨停变黄色(主图指标)
{涨停变黄颜色}
stickline(c>1.095*ref(c,1),c,o,2.5,0),coloryellow;
5、涨幅5-9.5 变粉色(主图指标)
stickline(c/ref(c,1)>=1.045 and c/ref(c,1)<=1.095,c,o,2.5,0),colorb0b0ff;
6、必然上涨量柱 黄金柱 假阴真阳柱(附图指标)
{vol_量柱}
{看图说明:黄色为倍量柱,白色为并肩平量柱,紫色为缩倍柱,
绿色为10天低量柱,蓝色为50天低量柱,灰色为百日低量柱,
高量柱容易看无标记,!为长阴短柱, 内有红实线为假阴柱。
红色箭头(的前三天)为黄金柱。次黄金柱难判,不标记}
绿低量:=13;{wen98编制}
蓝低量:=55;
灰低量:=100;
h_l:=0.1*const(hhv(vol,240));
{mav10:ma(v,10),coloryellow;}
启动5:ma(v,5),colorwhite;
洗盘35:ma(v,35),colorgreen;
异动135:ma(v,135),colormagenta;
vvol:=if(currbarscount=1 and period=5,vol*240/fromopen,drawnull);{模拟量}
stickline(currbarscount=1 and period=5,vvol,0,1,-1),color00c0c0;
量:vol,volstick;
换手: vol*10000/finance(7),nodraw; {dynainfo(37)*100}
换10t: sum(换手,10),nodraw;
倍数:=1.9;
倍量: vol>=ref(v,1)*倍数 and (if(c<o,c>ref(c,1),1)),coloryellow,nodraw;
倍缩: ref(v,1)>=vol*倍数,colormagenta,nodraw;
平量: range(v/ref(v,1),0.97,1.03) and barscount(v)>=2,colorwhite,nodraw;
低量10: vol=llv(vol,绿低量) and barscount(v)>=绿低量,colorgreen,nodraw;
低量50: vol=llv(vol,蓝低量) and barscount(v)>=蓝低量,colorblue,nodraw;
地量: vol=llv(vol,灰低量) and barscount(v)>=灰低量,colorgray,nodraw;
v1:=vol*0.9;{图标位置}
v2:=vol*0.8;
stickline(倍量, 0,v1,1,0),coloryellow;
stickline(平量,0,v1,1,0),colorwhite;
stickline(低量10,0,v2,1,0),colorligreen;
stickline(低量50,0,v2,1,0),colorblue;
stickline(地量,0,v2,1,0),colorgray;
stickline(倍缩,0,v*0.45,1,0),colormagenta;
stickline(c<o and c>ref(c,1),0,v,0,0),colorred;{假阴柱}
真阳或假阴:=c>o or c>ref(c,1);
收阳:= ref(真阳或假阴,3);
倍量1:=ref(倍量,3);
高量:=ref(v,3)>=hhv(v,7);
三日不破:= llv(c,3)>=ref(l,3);
价升:=count(c>=ref(c,1),3)=3;{收盘价逐升}
量缩:=count(v<=ref(v,1),3)=3;
连阳:= count(真阳或假阴,3)=3;
倍量将军柱:= 倍量1 and 三日不破 and 收阳;
高量将军柱:= 高量 and 三日不破 and 收阳;
将军柱:= 倍量将军柱 or 高量将军柱;
黄金柱:= 将军柱 and 价升 and 量缩 and 连阳 ;
stickline(黄金柱,0.3*v,0.7*v,1,0),colorred; {红柱}
drawicon(黄金柱,v*1.5,1);
v100:= v<=llv(v,100)*1.2 and v>0 and barscount(v)>=100;
百日地量群:=count(v100,5)>=3;
drawtext(filter(百日地量群,4),v+3*h_l,'地量群'),colorgray;
长阴短柱:=c/ref(c,1)<=0.96 and v<hhv(v,30)/1.9;
drawtext(长阴短柱 ,v+1.6*h_l,'!'),colorlicyan; 均价:=amount/vol/100;
tj01:=c<o and 均价>ref(c,1);{假阴真阳};
tj02:=c<o and c>ref(c,1);
stickline(tj01 or tj02,0,v,0,0),colorred;{假阴柱};
7、阳盖双阴(选股指标)
{阳线后的双阴}
t1:=ref(c>o,3);
t2:=ref(c<o,2);
t3:=ref(c<o,1);
{一阳盖双阴}
t4:=c>o;
t5:=c>ref(o,2) and c>ref(o,1);
{双阴缩量}
t6:=vol>ref(vol,1) and vol>ref(vol,2);
t7:=ref(vol,3)>ref(vol,2) and ref(vol,3)>ref(vol,1);
选股:t1&&t2&&t3&&t4&&t5&&t6&&t7;
8、板后阴(选股指标)
zt:=(c-ref(c,1))*100/ref(c,1)>=(10-1/ref(c,1)) and
(c-ref(c,1))*100/ref(c,1)<=(10+1/ref(c,1)) and h=c;
count(c<o,barslast(zt)+1)=1 and c<o;
9、盘后一字板选股
最低价:=l<o;
zf:=(c-ref(c,1))/ref(c,1)*100;
涨停:=zf>9.9;
xg:=c=o;
去除st股:=exist((c-ref(c,1))/ref(c,1)*100>5.6,100);{最近100日存在涨幅大于5.6}
去除停牌:=dynainfo(17)!=0;{量比不为0}
选股: 最低价 and xg and 涨停 and 去除st股 and 去除停牌;
10、盘中一字板打开预警(装选股公式栏)
xg:=ref(c,1)*1.1-c<0.01 and h=o and h>=c and h!=l;
去除st股:=exist((c-ref(c,1))/ref(c,1)*100>5.6,100);{最近100日存在涨幅大于5.6}
去除停牌:=dynainfo(17)!=0;{量比不为0}
选股: xg and 去除st股 and 去除停牌;
上一指标公式:多空副图 大智慧多空
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文必然上涨的分享 大智慧指标上涨仅供学习研究。