看到有同学喜欢我的主图,故分享一下我拼凑的“追风雄风主图”,方便那些不熟悉代码的同学
本人是菜鸟,所有代码取于理想,感谢欧阳及老师及各位老师给我们提供这么好的东西
彩色k线代码我放前面,这样不会遮住均线
处于上升趋势的阴线柱体为红色
追风和雄风的用法就不用我说了,不会的去看看欧阳及老师的帖子
买卖点a:就是上下红绿箭头,是根据欧阳及老师发的一个买卖可靠度高的公式编的
买卖点b:就是k线上的黄色、紫色柱体,是根据欧阳及老师的裁决公式编的
当出现买卖点要结合追风和雄风线来操作
{追风雄风主图}
stickline(close> ref(close,1) ,high,low,0,1 ),colorred;
stickline(close> ref(close,1) ,open,close,3,0 ),color000055;
stickline(close> ref(close,1) ,open,close,2.7,0 ),color000077;
stickline(close> ref(close,1) ,open,close,2.1,0 ),color000099;
stickline(close> ref(close,1) ,open,close,1.5,0 ),color0000bb;
stickline(close> ref(close,1) ,open,close,0.9,0 ),color0000dd;
stickline(close> ref(close,1) ,open,close,0.3,0 ),color0000ff;
stickline(close= ref(close,1) ,high,low,0,1 ),colorwhite;
stickline(close= ref(close,1) ,open,close,3,0 ),color555555;
stickline(close= ref(close,1) ,open,close,2.7,0 ),color777777;
stickline(close= ref(close,1) ,open,close,2.1,0 ),color999999;
stickline(close= ref(close,1) ,open,close,1.5,0 ),colorbbbbbb;
stickline(close= ref(close,1) ,open,close,0.9,0 ),colordddddd;
stickline(close= ref(close,1) ,open,close,0.3,0 ),colorffffff;
stickline(close< ref(close,1) ,high,low,0,1 ),colorcyan;
stickline(close< ref(close,1) ,open,close,3,0 ),color990000;
stickline(close< ref(close,1) ,open,close,2.7,0 ),colorcc0000;
stickline(close< ref(close,1) ,open,close,2.1,0 ),colorff4400;
stickline(close< ref(close,1) ,open,close,1.5,0 ),colorff8800;
stickline(close< ref(close,1) ,open,close,0.9,0 ),colorffcc00;
stickline(close< ref(close,1) ,open,close,0.3,0 ),colorcyan;
fs:=ma(close,13)+ma(close,13)-ref(ma(close,13),1);
cg:=if(ma(close,13)<fs,fs,ma(close,13));
a:=cg-(ema(c,3)-cg);
x:=(20*a+19*ref(a,1)+18*ref(a,2)+17*ref(a,3)+16*ref(a,4)+15*ref(a,5)+14*ref(a,6)+13*ref(a,7)+12*ref(a,8)+11*ref(a,9)+10*ref(a,10)+9*ref(a,11)+8*ref(a,12)+7*ref(a,13)+6*ref(a,14)+5*ref(a,15)+4*ref(a,16)+3*ref(a,17)+2*ref(a,18)+ref(a,20))/210;
mtm:=c-ref(c,1);
dx:=100*ema(ema(mtm,6),6)/ema(ema(abs(mtm),6),6);
卖1:=if(hhv(dx,2)=hhv(dx,7) and count(dx>50,2) and cross(ma(dx,2),dx),1,0);
drawicon(filter(卖1=1,1),h*1.007,2);
买1:=if(llv(dx,2)=llv(dx,7) and count(dx<0,2) and cross(dx,ma(dx,2)),1,0);
drawicon(filter(买1=1,5),l*0.988,1);
日均价:=(c*3+h+l+o)/6;
zia:=日均价;
裁决:=(ref(zia,1)*0.5+ref(zia,2)+ref(zia,3)*0.5)/2;
var1:=if(c<裁决 and between(裁决,c,o),1,0);
var2:=if(c<裁决 and ref(c,1)>裁决 and between(裁决,c,o)=0,1,0);
var3:=if(c<裁决 and ref(c,1)>裁决 ,1,0);
var4:=if(c>=裁决 and between(裁决,c,o),1,0);
var5:=if(c>=裁决 and ref(c,1)>裁决,1,0);
var6:=if(c>=裁决 and between(裁决,c,o)=0 and ref(c,1)>裁决,1,0);
co:=(c-o);
stickline(var5 or var6 ,open,close,3,0 ),color000055;
stickline(var5 or var6 ,open,close,2.7,0 ),color000077;
stickline(var5 or var6 ,open,close,2.1,0 ),color000099;
stickline(var5 or var6 ,open,close,1.5,0 ),color0000bb;
stickline(var5 or var6 ,open,close,0.9,0 ),color0000dd;
stickline(var5 or var6 ,open,close,0.3,0 ),color0000ff;
stickline(var4,o,o+co/3,2.7,0),color335555;
stickline(var4,o,o+co/3,2.1,0),color338888;
stickline(var4,o,o+co/3,1.5,0),color33aaaa;
stickline(var4,o,o+co/3,0.9,0),color33cccc;
stickline(var4,o,o+co/3,0.3,0),color33eeee;
stickline(var1,o,o+co/3,2.7,0),color550055;
stickline(var1,o,o+co/3,2.1,0),color880088;
stickline(var1,o,o+co/3,1.5,0),coloraa00aa;
stickline(var1,o,o+co/3,0.9,0),colorcc00cc;
stickline(var1,o,o+co/3,0.3,0),coloree00ee;
追风:ma(c,5)-ma(c,13)+ma(c,8),coloryellow,linethick1;
sa:=ema(日均价,5)*2-ma(日均价,5);
修正:=sma(sma(ema(日均价,5)*2-ma(日均价,5),3,1),3,1);
补偿:=floor(((修正-ma(修正,5))/ma(修正,5)*100));
雄风:sma(sma((ema(sa,(5+abs(补偿)))),2,1),2,1),coloryellow,linethick2;
雄风角度:atan((雄风/ref(雄风,1)-1)*100)*57.3,nodraw,coloryellow;
m72:ma(c,72),colorff9900;
m72角度:atan((m72/ref(m72,1)-1)*100)*57.3,nodraw,colorff9900;
买点a:filter(买1=1,5),colorgray,nodraw;
买点b:var4,colorgray,nodraw;
涨幅:(close-ref(close,1))/ref(close,1)*100,colormagenta,nodraw;
换手:sum(100*v/capital,1),colorff9900,nodraw;
上一指标公式:主图叠加量指标详解 通达信叠加
下一指标公式:换手量比指标详解 通达信换手
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文追风雄风主图指标详解 通达信追风仅供学习研究。