好公式网用指标公式为投资注入科技力量!
您的位置:好公式网飞狐公式优化后的箱体-主图公式 飞狐箱体源码指标 源码

优化后的箱体-主图公式 飞狐箱体源码指标 源码

  • 指标公式类型:飞狐公式
  • 公式推荐星级:
  • 指标公式安全:已通过5款杀毒软件查杀,请放心下载!
  • 公式更新时间:2018-10-01 19:21:37
  • 指标公式标签:箱体
  • 公式运行环境: WinXP/Win7/Win8/Win10/Win All
  • 指标公式语言:用简体中文编写

指标公式详细说明

好公式网(www.goodgongshi.com)告诉您:当前正要下载:优化后的箱体-主图公式 飞狐箱体源码指标 源码

优化后的 箱体 主图 (飞狐源码)

drawgbk(1, colorrgb(100,100,100),colorrgb(50,50,50),0);

{-----------------------☆功能开关------------------------}
{箱体部分}
cc:=c;
oo:=o;
hh:=h;
ll:=l;
top:=h;
bot:=l;
xx[1]:=1;
kk:=1;
for i=1 to datacount do begin
if xx=1 then begin
top:=hh;
end;
if xx[i-1]=1 then begin
if hh>top[i-1] then begin
top:=hh;
xx:=1;
end;else begin
top:=top[i-1];
xx:=2;
end;
end;
if xx[i-1]=2 then begin
if hh>top[i-1] then begin
top:=hh;
xx:=1;
end;else begin
top:=top[i-1];
bot:=ll;
xx:=3;
end;
end;
if xx[i-1]=3 then begin
top:=top[i-1];
if ll<bot[i-1] then begin
bot:=ll;
xx:=3;
end;else begin
bot:=bot[i-1];
xx:=4;
end;
end;
if xx[i-1]=4 then begin
top:=top[i-1];
if ll<bot[i-1] then begin
bot:=ll;
xx:=3;
end;else begin
bot:=bot[i-1];
xx:=5;
end;
end;
if xx[i-1]=5 then begin
if ll<bot[i-1] or hh>top[i-1] then begin
top:=hh;
bot:=hh;
xx:=1;
end;else begin
bot:=bot[i-1];
top:=top[i-1];
xx:=5;
end;
end;
end;
for j=1 to datacount do begin
if xx[j]=5 and xx[j-1]=4 then begin
for k=j-1 downto j-kk do begin
top[k]:=top[j];
bot[k]:=bot[j];
end;
end;
if xx[j-1]=5 and xx[j]=1 then kk:=0;
kk:=kk+1;
end;
中位线:=(top+bot)/2;

{信号部分---参考}
买点:=filter((troughbars(3,15,1)<4)=1,3);
卖点:=filter((peakbars(3,15,1)<4)=1,3);
{短波--未来}
f:=100*(c-ref(c,1))/ref(c,1);
p1:=if(c<ref(o,1) and f<0,1,0);
p3:=if(c>ref(o,1) and f>0,1,0);
p2:=if(c<ref(o,2) and f<0,1,0);
p4:=if(c>ref(o,2) and f>0,1,0);
买d5:=p1=0 and ref(p1,1)=1 and p2=0 and ref(p2,1)=1;
卖d6:=p3=0 and ref(p3,1)=1 and p4=0 and ref(p4,1)=1;
fz:=peak(3,5,1);
fw:=peakbars(3,5,1);
gz:=trough(3,5,1);
gw:=troughbars(3,5,1);
as:=zig(3,3);
涨al:=cross(as,ref(as,1));
跌ag:=cross(ref(as,1),as);
ss1:=if(fw>gw,fw,0);
ss2:=if(fw<gw,gw,0);
ss3:=barslast(ss1);
ss4:=barslast(ss2);

{-----------------【图解模板】---------------------};
{箱体部分}
partline(top=ref(top,1),top),color008293;//箱顶
partline(bot=ref(bot,1),bot),color008293;//箱底
stickline((top<>ref(top,1) or bot<>ref(bot,1)) and xx=1 and ref(xx,1)=5,top,bot,1,0),color008293;//左侧竖线
stickline((top<>refx(top,1) or bot<>refx(bot,1)) and xx=5 and refx(xx,1)=1,top,bot,1,0),color008293;//右侧竖线
{k线}
stickline(cc>oo,cc,oo,8,1),color5454ff;
stickline(cc>oo,ll,oo,0.9,1),color5454ff;
stickline(cc>oo,hh,cc,0.9,1),color5454ff;
stickline(cc<oo,cc,oo,8,0.5),colorffa800;
stickline(cc<oo,hh,ll,0.9,0.5),colorffa800;
{信号部分---参考}
{未来}
stickline(买点,l,(o+c)/2,0,0),colorwhite; {未来买点}
stickline(买点,c,(o+c)/2,5,0),colorwhite; {未来买点}
stickline(卖点,h,(o+c)/2,0,0),coloryellow;{未来卖点}
stickline(卖点,c,(o+c)/2,5,0),coloryellow;{未来卖点}
{短波--未来}
stickline(买d5 and 涨al,l,(o+c)/2,0,0),colorwhite; {未来买}
stickline(买d5 and 涨al,o,(o+c)/2,5,0),colorwhite; {未来买}
stickline(卖d6 and 跌ag,l,(o+c)/2,0,0),color3ea63e;{未来卖}
stickline(卖d6 and 跌ag,o,(o+c)/2,5,0),color3ea63e;{未来卖}
{短波--未来--画线写字}
drawline(fw=0,fz,gw=0 or islastbar,ref(fz,fw),0),color02a800; //未来--转跌
drawline(gw=0,gz,fw=0 or islastbar,ref(gz,gw),0),colormagenta;//未来--转涨
drawtext(barpos=sysparam(2),h,'■上涨第'+numtostr(ss4[sysparam(1)],0)+'天'),align4,colormagenta;//未来
drawtext(barpos=sysparam(2),h,' \n■下跌第'+numtostr(ss3[sysparam(1)],0)+'天'),align4,colorcyan;//未来
{箱体部分}
partline(top=ref(top,1),中位线),linedot,color008293;//中位线
ma3:="hotstock@qy"(5);
ma5:="hotstock@qy"(5);
drawtext(close>0 and sysparam(2)=barpos,high,'所属板块:'+blkname),align4,colorffffff;
g:=if(high=hhv(high,3),1,0);
d:=if(low=llv(low,3),1,0);
s:=if(ref(g,2)=1 and ref(g,1)=0 and g=0,ref(high,2),ref(high,2+barslast(ref(g,2)=1 and ref(g,1)=0 and g=0)));
x:=if(ref(d,2)=1 and ref(d,1)=0 and d=0,ref(low,2),ref(low,2+barslast(ref(d,2)=1 and ref(d,1)=0 and d=0)));
k1:=if(high>=ma(close,1),s,ref(s,barslast(high>ma(close,1))));
k2:=if(low<=ma(close,5),x,ref(x,barslast(low<=ma(close,5))));
c1:=ref(close,1)<=k1 and close>k1;
c2:=ref(close,1)>=k2 and close<k2;
k3:=barslast(c1)*ma3/ma5;
k4:=barslast(c2)*ma3/ma5;
partline(k3<k4,k2),linethick2,colorffff;
partline(k3>k4,k1),linethick2,colorffffff;
k0:=k3<k4;
stickline(k0,high,low,0.1,1),colorff;
stickline(k0 and close>=open,close,open,8,1),colorff;
stickline(k0 and close<open,close,open,8,0),colorff;
stickline(not(k0),high,low,0.1,0),colorff00;
stickline(not(k0) and close>open,close,open,8,1),colorff00;
stickline(not(k0) and close<=open,close,open,8,0),colorff00;
标准:if(k3>k4,hhv(k1,barslast(c1)),llv(k2,barslast(c2))),linethick0;
顾比:="hotstock@qy"(5);
stickline(between(close,标准,顾比),high,low,0.1,1),colorff00ff;
stickline(between(close,标准,顾比),close,open,8,1),colorff00ff;
partline(between(close,标准,顾比),顾比),linethick2,colorffff00;
bh:=peakbars(4,15,1)+1;
bll:=llv(low,bh);
btj1:=bll=low and (bll<ref(bll,1) or bh=1);
bts:=sumbars(btj1,3)-1;
btj:=troughbars(4,15,1)=0 and bts<=bh;
drawicon(btj,low,10);
drawsl(btj,ref(high,bts),0,bts,1),colorff;
bl:=barslast(btj);
btj_2:=close>ref(ref(high,bts),bl);
drawicon(count(btj_2,bl+1)=1 and btj_2,low,4);
drawtext(btj and ma3=ma5,low,'-------'),colorff00;






优化后的箱体-(主图 飞狐源码)

  >>>使用本站搜索工具可以找到更多优化后的箱体-主图公式 飞狐箱体源码指标 源码

指标公式下载地址

点这下载软件
好公式网提供全网最全的指标公式软件,感谢您的支持!鼠标双击图片可看大图!
下载请点击右侧“立即下载”,如只有源码,请点击本页面右侧的导入方法按图导入!
本站指标基于网友分享,仅供研究自学,勿作他用,本站对下载使用不承担任何责任!

指标公式下载注意

    ☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!

    ☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。

    ☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;

    ☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;

    ☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;

    ☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;

    ☉ hxf格式指标公式,仅可以用同花顺软件引入使用。

    ☉ 如果您发现下载软件链接错误,请联系管理员报告错误。

    ☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!

    ☉ 本文优化后的箱体-主图公式 飞狐箱体源码指标 源码仅供学习研究。

猜你喜欢

学了又学