{------------ 基础部分 ------------}
0,pointdot,color808080;
12,pointdot,color808080;
绿低量:=10;
蓝低量:=50;
灰低量:=100;
量:=vol;
换手:= vol*10000/finance(7),nodraw;
全换手周期:= sumbars(v,capital),nodraw;{求完全换手到现在的周期数}
量比:= v/ref(ma(v,5),1),nodraw;
几倍:= v/ref(v,1),nodraw;
倍数:=1.9;
倍量:= vol>=ref(v,1)*倍数 and (if(cref(c,1),1)),nodraw;
倍缩:= ref(v,1)>=vol*倍数,nodraw;
平量:= range(v/ref(v,1),0.97,1.03) and barscount(v)>=2,nodraw;
低量10:= vol=llv(vol,绿低量) and barscount(v)>=绿低量,nodraw;
低量50:= vol=llv(vol,蓝低量) and barscount(v)>=蓝低量,nodraw;
地量:=vol=llv(vol,灰低量) and barscount(v)>=灰低量,nodraw;
真阳或假阴:=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 收阳;
v100:= v<=llv(v,100)*1.2 and v>0 and barscount(v)>=100;
{好公式网-最好的股票公式网站 www.goodgongshi.com}
notext_将军柱: refx(倍量将军柱 or 高量将军柱,3),nodraw;
notext_黄金柱: notext_将军柱 and refx(价升,3) and refx(量缩,3) and refx(连阳,3),nodraw;{标准黄金柱}
notext_元帅柱:refx(notext_将军柱 or notext_黄金柱,1) and h<refx(l,1),nodraw;
百日地量群:count(v100,5)>=3,colorligray,nodraw;
stickline(百日地量群,1,1.5,2,0),colorligray;
{------------ 涨跌停 ------------}
rc1:=ref(c,1);
cs:=if(c>=1,10000,100000);
c涨停10:=1.10*rc1-49/cs;{考虑到4舍5入}
c涨停5 :=1.05*rc1-49/cs;
c跌停10:=0.90*rc1+51/cs;
c跌停5 :=0.95*rc1+51/cs;
st:=namelike('s') or namelike('*s');
盘中涨停:=if(st, h>=c涨停5, h>=c涨停10);
盘中跌停:=if(st, l<=c跌停5, l<=c跌停10);
notext_跌停: if(st, c<=c跌停5, c<=c跌停10),colorligray,nodraw;
notext_涨停: if(st, c>=c涨停5, c>=c涨停10),colorligray,nodraw;
{------------ 大阴大阳 ------------}
notext_大阳线:c>o and (c>=c涨停5 or c>(1.05*o-51/cs) ) or (c>1000 and c>rc1*1.024),colorligray,nodraw;
notext_大阴线:c1000 and c<rc1*0.976),colorligray,nodraw;
{------------ 过左峰(含倍量、缩量、零号) ------------}
ty1:=c;
hd1:=filter(backset(filter(ref(ty1,10)=hhv(ty1,2*10+1),10),10+1),10);
ld1:=filter(backset(filter(ref(ty1,10)=llv(ty1,2*10+1),10),10+1),10);
a5:=ref(c,barslast(hd1));
t9:=barslast(hd1)<barslast(ld1) and="" not(hd1)="" ;
波浪顶:=if(t9,a5,a5);
过左峰:cross(c,波浪顶),colorligray,nodraw;
stickline(过左峰,2,2.5,2,0),colorligray;
{------------ 倍量伸缩 ------------}
a8a1:=vol/ref(vol,1)>1.9 and c/ref(c,1)>1.03;
b8a1:=vol/ref(vol,1)<0.6 and ref(c,1)>ref(c,2) and c/ref(c,1)>0.99 and c/ref(c,1)<1.01;
zf9a:=(c-ref(c,1))/ref(c,1)*100;
nost9a:=exist(zf9a>5.2,100) or exist(zf9a<-5.2,100);
k109a:=slope(close,10)>0.02;
倍量伸缩:count(a8a1,5) and count(b8a1,5) and nost9a and k109a and c>ref(c,1),colorligray,nodraw;
stickline(倍量伸缩,3,3.5,2,0),colorligray;
{------------ 长阴短柱 ------------}
长阴短柱:c/ref(c,1)<=0.96 and v<hhv(v,30) 1.9,colorligray,nodraw;
stickline(长阴短柱,4,4.5,2,0),colorligray;
{------------ 双剑 ------------}
长上影:=(high-max(close,open))/(high-low)>0.667;
长腿a:= (min(o,c)-l)/(h-l)>0.3 and (min(o,c)-l)/c>=0.03;
双剑:=ref(长上影,1) and 长腿a and ref(min(c,o),1)>=max(c,o),colorligray,nodraw;
双剑霸:ref(双剑,1) and c>ref(c,1),colorligray,nodraw;
stickline(双剑霸,5,5.5,2,0),colorligray;
{------------ 假阳真阴 ------------};
均价:=amount/vol/100;
假阳真阴:=c>o and ref(c,1)>均价 and c>均价,nodraw;
{------------ 假阴真阳 ------------};
假阴真阳:o>c and c<均价 and 均价>ref(c,1),colorligray,nodraw;
stickline(假阴真阳,6,6.5,2,0),colorligray;
{------------ 极阴次阳 ------------};
zf:=(c-ref(c,1))/ref(c,1)*100;
极阴:=zf<= -3;
次阳:=c > o and c > ref((o+c)/2,1);
极阴次阳:极阴 and 次阳,colorligray,nodraw;
stickline(极阴次阳,7,7.5,2,0),colorligray;
{------------ 三元连动 ------------};
ztb1:=every(c>ref(c,1) ,3);
ztb2:=every(o>ref(c,1),2);
三连元:ztb1 and ztb2,colorligray,nodraw;
stickline(三连元,8,8.5,2,0),colorligray;
{------------ 悬阴31 ------------}
{------------ t4变异 ------------}
t3:=v>ref(v,1) and ref(v,1)>ref(v,2) and c=hhv(c,3);
t4变异:ref(t3,1) and c>ref(c,1),colorligray,nodraw;
stickline(t4变异,9,9.5,2,0),colorligray;
{------------ 现场直憋 ------------}
dd1:=ref(c,10)/ref(c,9)>=1.05 and ref(c,9)<ref(o,9);
dd2:=ref(c,10)/ref(c,8)>=1.05 and ref(c,9)ref(c,8);
dd:=dd1 or dd2;
zb1:=hhv(h,8)/ref(h,9)<1.04 and llv(l,8)/ref(l,9)>0.96;
zb2:=hhv(h,8)/ref(h,9)<1.04 and llv(l,7)/ref(l,8)>0.96;
zb:=zb1 or zb2;
现场直憋:dd and zb,colorligray,nodraw;
stickline(现场直憋,10,10.5,2,0),colorligray;
{------------ 牛股三绝 ------------}
hh:=hhv(vol,10);
t:=barslast(hh=vol)=1;
跳空:=high<(ref(low,1)-0.001) || low>(ref(high,1)+0.001);
倍量不穿:=ref(倍量,1) and o>=ref(c,1) and c/ref(c,1)>=1.03,nodraw;
高量不破:=o>=ref(max(o,c),t) and c>ref(max(o,c),t),nodraw;
跳空不补:=跳空 and c>o and c>ref(c,1),nodraw;
牛股三绝:倍量不穿 or 高量不破 or 跳空不补,colorligray,nodraw;
stickline(牛股三绝,11,11.5,2,0),colorligray;
{------------------------ 统计 ------------------------}
基因统计:百日地量群+过左峰+倍量伸缩+长阴短柱+双剑+假阴真阳+极阴次阳+三连元+t4变异+现场直憋+牛股三绝,colorligray,nodraw;
位置:=15;
drawnumber(百日地量群,位置,基因统计),colorffffff;
drawnumber(过左峰,位置,基因统计),colorffffff;
drawnumber(倍量伸缩,位置,基因统计),colorffffff;
drawnumber(长阴短柱,位置,基因统计),colorffffff;
drawnumber(双剑,位置,基因统计),colorffffff;
drawnumber(假阴真阳,位置,基因统计),colorffffff;
drawnumber(极阴次阳,位置,基因统计),colorffffff;
drawnumber(三连元,位置,基因统计),colorffffff;
drawnumber(t4变异,位置,基因统计),colorffffff;
drawnumber(现场直憋,位置,基因统计),colorffffff;
drawnumber(牛股三绝,位置,基因统计),colorffffff;
上一指标公式:触底反弹选股公式下载 通达信源码选股
下一指标公式:金龙喜舞改编源自理想更高更强副图公式下载 通达信更强源自
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文涨停密码幅图公式下载 通达信密码源码仅供学习研究。