好公式网用指标公式为投资注入科技力量!
您的位置:好公式网大智慧公式划线波浪 大智慧划线

划线波浪 大智慧划线

  • 指标公式类型:大智慧公式
  • 公式推荐星级:
  • 指标公式安全:已通过5款杀毒软件查杀,请放心下载!
  • 公式更新时间:2018-04-13 15:55:54
  • 指标公式标签:划线 波浪
  • 公式运行环境: WinXP/Win7/Win8/Win10/Win All
  • 指标公式语言:用简体中文编写

指标公式详细说明

好公式网(www.goodgongshi.com)告诉您:当前正要下载:划线波浪 大智慧划线

a1:=ref(high,3)=hhv(high,2*3+1);
b1:=filter(a1,3);
c1:=backset(b1,3+1);
d1:=filter(c1,3);{高点}
a2:=ref(low,3)=llv(low,2*3+1);
b2:=filter(a2,3);
c2:=backset(b2,3+1);
d2:=filter(c2,3);{低点}
e1:=(ref(llv(low,2*3),1)+ref(hhv(high,2*3),1))/2;
e2:=(high+low)/2;{高低点出现在同一k线上时可作取舍}
h1:=(d1 and not(d2 and e1>=e2)) or barstatus=2 or barscount(close)=1;
l1:=(d2 and not(d1 and e1<e2));
h2:=d1 and not(d2 and e1>=e2);
x1:=ref(barslast(h1),1)+1;
f1:=backset(h1 and count(l1,x1)>0,llvbars(if(l1,low,10000),x1));
g1:=f1>ref(f1,1);
i1:=backset(g1,2);
ld:=i1>ref(i1,1);{过滤后低点}
l2:=ld or barstatus=2 or barscount(close)=1;
x2:=ref(barslast(l2),1)+1;
f2:=backset(l2 and count(h2,x2)>0,hhvbars(if(h2,high,0),x2));
g2:=f2>ref(f2,1);
i2:=backset(g2,2);
hd:=i2>ref(i2,1);{过滤后高点}
drawline(ld,l,hd,h,0),colorwhite,linethick1,pointdot;
drawline(hd,h,ld,l,0),colorwhite,linethick1,pointdot;
j1:=backset(barstatus=2,min(barslast(hd),barslast(ld))+1);
j2:=j1>ref(j1,1);
drawline(j2,if(hd,h,l),barstatus=2,if(barslast(hd)>barslast(ld),h,l),0),colorwhite,linethick1,pointdot;
a3:=h<ref(h,ref(barslast(hd),1)+1);
b3:=ref(h,ref(barslast(hd),1)+1)>ref(h,ref(barslast(hd),1)+2+ref(barslast(hd),ref(barslast(hd),1)+2));
d3:=a3 and b3 and hd;
e3:=backset(d3,ref(barslast(hd),1)+2);
hh:=e3>ref(e3,1);{找出全部长期高点}
a4:=l>ref(l,ref(barslast(ld),1)+1);
b4:=ref(l,ref(barslast(ld),1)+1)<ref(l,ref(barslast(ld),1)+2+ref(barslast(ld),ref(barslast(ld),1)+2));
d4:=a4 and b4 and ld;
e4:=backset(d4,ref(barslast(ld),1)+2);
ll:=e4>ref(e4,1);{找出全部长期低点}
drawicon(hh,h,10),align1;
drawicon(ll,l,12),align1;
h3:=hh or barstatus=2 or barscount(c)=1; {后面进行过滤,方法同前。只是不用考虑高低点出现在同一k线}
x3:=ref(barslast(h3),1)+1;
f3:=backset(h3 and count(ll,x3)>0,llvbars(if(ll,l,pow(10,20)),x3));
g3:=f3>ref(f3,1);
i3:=backset(g3,2);
lz:=i3>ref(i3,1); {长期低点,也可供引用}
l4:=lz or barstatus=2 or barscount(c)=1;
x4:=ref(barslast(l4),1)+1;
f4:=backset(l4 and count(hh,x4)>0,hhvbars(if(hh,h,-pow(10,20)),x4));
g4:=f4>ref(f4,1);
i4:=backset(g4,2);
hz:=i4>ref(i4,1);{长期高点,也可供引用}
drawline(hz,h,lz,l,0),colorgreen,linethick1;
drawline(lz,l,hz,h,0),colorgreen,linethick1;{长期连线}
k1:=backset(barstatus=2,min(barslast(hz),barslast(lz))+1);
k2:=k1>ref(k1,1);
drawline(k2,if(hz,h,l),barstatus=2,c,0),colorgreen,linethick1; {最后的长期连线,连在收盘价上}
uu:=backset(barstatus=2,barslast(ld)+1);
vv:=uu>ref(uu,1);
ww:=backset(vv,ref(barslast(ld),1)+2);
xx:=ww>ref(ww,1);
drawline(xx,l,vv,l,1),colormagenta,linethick1;
uu2:=backset(barstatus=2,barslast(hd)+1);
vv2:=uu2>ref(uu2,1);
ww2:=backset(vv2,ref(barslast(hd),1)+2);
xx2:=ww2>ref(ww2,1);
drawline(xx2,h,vv2,h,1),colormagenta,linethick1;
前一低:ref(l,barslast(vv)),color99ff66,pointdot,linethick3;
前二低:ref(l,barslast(xx)),colorff66ff,pointdot,linethick3;
前一高:ref(h,barslast(vv2)),color99ff66,pointdot,linethick3;
前二高:ref(h,barslast(xx2)),colorff66ff,pointdot,linethick3;
短高:=ref(h,barslast(vv2));
短低:=ref(l,barslast(vv));
短比: (c-短低)/(短高-短低),linethick0;
常数:=ref(indexc,barslast(vv))/ref(c,barslast(vv));
叠1:indexc/常数,colorgray,linethick0;
partline(叠1,1),colorgray;
常数2:=ref(indexc,barslast(xx))/ref(c,barslast(xx));
叠2:indexc/常数2,colorgray,linethick0;
partline(叠2,1),colorgray;
s:=numtostrn(days1970-datetod1970(ref( date,barslast(ld) ) ),0 );
s1:=numtostrn(days1970-datetod1970(ref( date,barslast(hd) ) ),0 );
s2:=numtostrn(h,2 );
s3:=numtostrn(l,2 );
drawtext(hd,1.02*h,s),colorcyan;
drawtext(ld,0.98*l,s1),colorcyan;
drawtext(hd,h*(1+0.002),s2),colorblue,align0;
drawtext(ld,l*(1.001-0.002),s3),colorblue,align0;

{以下语句为三角形部分}

底:ref(l,barslast(vv)),colorred,linethick2;
頂:ref(h,barslast(vv2)),colorgreen,linethick2;

{下迭三角形:藍色三角形畫完介入}
stickline(vv,頂,底,0,0),colorff6633,linethick3;{}
drawline(vv2,h,vv,l,0),colorff6633,linethick3;{斜}
drawline(vv2,h,vv,頂,0),colorff6633,linethick3;{?}

drawline(c>0,h,vv,l,0),colorcyan,linethick2;{斜}
drawline(c>1,h,vv,頂,0),colorcyan,linethick2;{?}
{上漲三角形:紅色三角形畫完出局}
stickline(vv2 ,頂,底,0,0),colorred,linethick3;{}
drawline(vv,l,vv2,h,0),colorred,linethick3;{斜}
drawline(vv,l,vv2,底,0),colorred,linethick3;{?};

stickline(c>o,(l+o)/2,(l+o)/2,4,1),coloryellow;
stickline(c>o,(c+h)/2,(c+h)/2,4,1),coloryellow;
stickline(c<o,(l+c)/2,(l+c)/2,4,1),colorwhite;
stickline(c<o,(o+h)/2,(o+h)/2,4,1),colorwhite;
stickline(c>o,(c+o)/2,(c+o)/2,4,1),colorred;
stickline(c<o,(c+o)/2,(c+o)/2,4,1),colorblue;
stickline(ref(c<o,1),ref((o+c)/2,1),ref((o+c)/2,1),9,2),colorblue,linethick2;
stickline(ref(c>o,1),ref((o+c)/2,1),ref((o+c)/2,1),9,2),coloryellow,linethick2;
drawtext(cross(zig(3,10),ref(zig(3,10),1)),low*0.99,'←b') , colorred;
drawtext(cross(ref(zig(3,10),1),zig(3,10)),high*1.008,'←s') ;


划线波浪

  >>>使用本站搜索工具可以找到更多划线波浪 大智慧划线

指标公式下载地址

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

上一指标公式:3d排序看盘 大智慧看盘排序

下一指标公式:玄黄交易 大智慧交易

指标公式下载注意

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

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

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

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

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

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

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

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

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

    ☉ 本文划线波浪 大智慧划线仅供学习研究。

猜你喜欢

学了又学