飞狐和博易大师版本
{---------------------【右侧直效-功能开关】---------------------}
{价格中枢-日内多空认同}
as:=(c*3+o+h+l)/6;
xj:=(as+0.618*ref(as,1)+0.382*ref(as,2)+0.236*ref(as,3)+0.146*ref(as,4))/2.382;
{回调认同}
hlx:=ema(hhv(xj,3),15);
llx:=ema(llv(xj,3),15);
ch:=cross(xj,hlx);cl:=cross(llx,xj);
chh:=barslast(ch);cll:=barslast(cl);
yf1:=(chh<cll or ch) and not(cl);
yf2:=(chh>cll or cl) and not(ch);
tf:=if(yf1,llx,hlx);
tfb:=(hlx+llx)/2;
xjk:=sma(ema(xj,3),3,1);
zwsh:=(hhv(xj,2)+hhv(xj,3)+hhv(xj,4)+hhv(xj,5))/4;
sh:=ema(zwsh,21);
zwsl:=(llv(xj,2)+llv(xj,3)+llv(xj,4)+llv(xj,5))/4;
sl:=ema(zwsl,21);
sch:=cross(xj,sh);scl:=cross(sl,xj);
shh:=barslast(sch);sll:=barslast(scl);
sf1:=(shh<sll or sch) and not(scl);
sf2:=(shh>sll or scl) and not(sch);
tfs:=if(sf1,sl,sh);
tfbs:=(sl+sh)/2;
{k线}
kx1:=(close>=open) and xj>=tfs;
kx2:=(close<open) and xj>=tfs;
kx3:=(close>=open) and xj<tfs;
kx4:=(close<open) and xj<tfs;
kx5:=((xj>=tfs and xj<tf)or (xj<tfs and xj>=tf)) and close>=open;
kx6:=((xj>=tfs and xj<tf)or (xj<tfs and xj>=tf)) and close<open;
{---------------------【右侧直效-图解模板】---------------------}
{回调认同}
fillrgn(xj>tfs,tfb,tfs),color400040;
fillrgn(xj<tfs,tfb,tfs),color800000;
fillrgn(xj>tf,tfb,tf),color000060;
fillrgn(xj<tf,tfb,tf),colorff2020;
{k线}
stickline(kx1,c,o,4,1),color4440ff;
stickline(kx1,c,h,0.5,1),color4440ff;
stickline(kx1,o,l,0.5,1),color4440ff;
stickline(kx2,c,o,4,0),color4440ff;
stickline(kx2,o,h,0.5,0),color4440ff;
stickline(kx2,c,l,0.5,0),color4440ff;
stickline(kx3,c,o,4,1),colorffff33;
stickline(kx3,c,h,0.5,1),colorffff33;
stickline(kx3,o,l,0.5,1),colorffff33;
stickline(kx4,c,o,4,0),colorffff33;
stickline(kx4,o,h,0.5,0),colorffff33;
stickline(kx4,c,l,0.5,0),colorffff33;
{stickline(kx5,c,o,4,1),color5e5e5e;
stickline(kx5,c,h,0.5,1),color5e5e5e;
stickline(kx5,o,l,0.5,1),color5e5e5e;
stickline(kx6,c,o,4,0),color5e5e5e;
stickline(kx6,o,h,0.5,0),color5e5e5e;
stickline(kx6,c,l,0.5,0),color5e5e5e;}
通达信我只能改成这样了···
{---------------------【右侧直效-功能开关】---------------------}
{价格中枢-日内多空认同}
as:=(c*3+o+h+l)/6;{ma(h,0);ma(l,0);}
xj:=(as+0.618*ref(as,1)+0.382*ref(as,2)+0.236*ref(as,3)+0.146*ref(as,4))/2.382;
{回调认同}
hlx:=ema(hhv(xj,3),15);
llx:=ema(llv(xj,3),15);
ch:=cross(xj,hlx);cl:=cross(llx,xj);
chh:=barslast(ch);cll:=barslast(cl);
yf1:=(chh<cll or ch) and not(cl);
yf2:=(chh>cll or cl) and not(ch);
tf:=if(yf1,llx,hlx);
tfb:=(hlx+llx)/2;
xjk:=sma(ema(xj,3),3,1);
zwsh:=(hhv(xj,2)+hhv(xj,3)+hhv(xj,4)+hhv(xj,5))/4;
sh:=ema(zwsh,21);
zwsl:=(llv(xj,2)+llv(xj,3)+llv(xj,4)+llv(xj,5))/4;
sl:=ema(zwsl,21);
sch:=cross(xj,sh);scl:=cross(sl,xj);
shh:=barslast(sch);sll:=barslast(scl);
sf1:=(shh<sll or sch) and not(scl);
sf2:=(shh>sll or scl) and not(sch);
tfs:=if(sf1,sl,sh);
tfbs:=(sl+sh)/2;
{k线}
kx1:=(close>=open) and xj>=tfs;
kx2:=(close<open) and xj>=tfs;
kx3:=(close>=open) and xj<tfs;
kx4:=(close<open) and xj<tfs;
kx5:=((xj>=tfs and xj<tf)or (xj<tfs and xj>=tf)) and close>=open;
kx6:=((xj>=tfs and xj<tf)or (xj<tfs and xj>=tf)) and close<open;
{回调认同}
drawband(tfb,rgb(40,00,40),tfs,rgb(00,00,80));
drawband(tfb,rgb(90,00,00),tf,rgb(00,55,00));
{k线}
stickline(kx1,c,o,2,1),color4440ff;
stickline(kx1,c,h,0,1),color4440ff;
stickline(kx1,o,l,0,1),color4440ff;
stickline(kx2,c,o,2,0),color4440ff;
stickline(kx2,o,h,0,0),color4440ff;
stickline(kx2,c,l,0,0),color4440ff;
stickline(kx3,c,o,2,1),colorffff33;
stickline(kx3,c,h,0,1),colorffff33;
stickline(kx3,o,l,0,1),colorffff33;
stickline(kx4,c,o,2,0),colorffff33;
stickline(kx4,o,h,0,0),colorffff33;
stickline(kx4,c,l,0,0),colorffff33;
{stickline(kx5,c,o,2,1),color5e5e5e;
stickline(kx5,c,h,0,1),color5e5e5e;
stickline(kx5,o,l,0,1),color5e5e5e;
stickline(kx6,c,o,2,0),color5e5e5e;
stickline(kx6,o,h,0,0),color5e5e5e;
stickline(kx6,c,l,0,0),color5e5e5e;}
上一指标公式:狙击低点选股通用公式 飞狐狙击公式指标 源码
下一指标公式:布林乖离选股通用公式 飞狐选股源码指标 源码
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文价格中枢-日内多空认同期货日内交易公式 飞狐中枢指标 源码仅供学习研究。