难得一见主图添加自动划线
n(5,1,100)
ma1:ma(close,5);
ma2:ma(close,10);
ma3:ma(close,20);
ma4:ma(close,60);
bb:=ref(indexc,1)<ref(indexc,2) and ref(c,2)*0.95>=ref(c,1) and ref(o,1)/ref(c,1)>=1.05
and ref(c,1)<ref(o,1) and c>o and c/o>=1.05 and c>ref(o,1)
and ref(vol,1)<ref(vol,2);
stickline(bb,o,c,7,0),colorred;
stickline(bb,o,h,0,0),colorred;
stickline(bb,l,c,0,0),colorred;
drawtext(bb,l*0.98,'追!'),coloryellow;
var1:=4*sma((close-llv(low,5))/(hhv(high,5)-llv(low,5))*100,5,1)-
3*sma(sma((close-llv(low,5))/(hhv(high,5)-llv(low,5))*100,5,1),3.2,1);
var2:=8;
cc:=cross(var1,var2);
drawtext(cc,l*0.98,'买!'),color0099ff;
typ:=(h+l+c)/3;
typ1:=(typ-ma(typ,14))/(0.015*avedev(typ,14))<=20 and ref(ma(c,21),1)<ma(c,21);
tj1:=o<max(ref(c,1),ref(o,1));
tj2:=ref(c,1)>=ma(c,21) and l/ma(c,21)>=1.015 and ma(c,144)>ma(c,250) and v<ma(v,10) and min(ref(v,2),ref(v,1))>v;
tj3:=ref(ma(c,250),90)<ref(ma(c,144),90) and ma(c,144)>ma(c,250) and o>ma(c,250);
touji:=typ1 and tj1 and tj2 and ref(c,2)/ref(o,2)<1.06 and c/o<=1.05 and hhv(h,5)/llv(l,30)>=1.65 and ref(h,5)/ref(l,1)>=1.15 and ref(c,1)/ref(o,1)<=0.995 and (l<ref(l,2) or (ref(h,2)-ref(l,2))/(h-l)>=2) and o/ref(l,1)<=1.04
or typ1 and tj1 and o/ref(l,1)<1.05 and ref(l,1)/ref(o,4)<=0.85 and ref(c,1)/ref(o,1)<=1.03 and o<ref(c,1) and hhv(h,5)/llv(l,35)>1.35 and v<ma(v,10);
touji2:=typ1 and tj1 and tj2 and o/ref(l,1)<1.05 and o/llv(l,3)<1.1 and ref(c,1)/ref(o,1)<=1.05 and hhv(h,4)/llv(l,16)>=1.35 and ref(o,4)/ref(c,2)>=1.08 and ref(c,2)/ref(o,2)<=0.995 and (ref(l,2)<ref(l,3) or (ref(h,3)-ref(l,3))/(ref(h,1)-ref(l,1))>=2) and l<min(ref(c,1),ref(o,1))
or typ1 and tj1 and hhv(h,10)/llv(l,25)>=1.3 and ref(c,5)<ref(h,5) and ref(c,4)<ref(c,5) and ref(c,3)<ref(c,4) and ref(c,2)<ref(c,3) and ref(c,1)<ref(c,2) and l<ref(l,1) and ma1/o<1.1;
datouji:=typ1 and tj3 and o<ref(c,5) and o<=ref(c,1) and ref(h,10)/o>=1.17 and hhv(h,10)/llv(l,30)>1.4 and (ma(v,10)/hhv(v,10)>0.5 and v/hhv(v,10)>0.2 and v/hhv(v,10)<0.4 or ref(v,3)>ref(v,2) and ref(v,2)>ref(v,1)) and ref(c,1)/ref(c,2)<=1.02;
datouji1:=typ1 and tj3 and o<ref(l,6) and o<min(ref(c,5)and ref(o,5),5) ;
drawtext(touji or touji2 or datouji or datouji1,l*0.98,'△'),coloryellow;
drawtext(cross(ma(vol,10),ma(vol,20)) and ma(vol,5)>ma(vol,10) and l<ma(c,20) and c>=ma(c,20),l*0.98,'量托'),colorwhite;
卖出:=cross(90,sma(max(close-ref(close,1),0),6,1)/sma(abs(close-ref(close,1)),6,1)*100);
drawgbklast(close>0,strip(rgb(95,95,95),rgb(0,0,0),0));
主筹估算:=ema(winner(c)*70,3);
散筹估算:=ema((winner((c)*1.1)-winner((c)*0.9))*70,3);
筹码锁定:=散筹估算-主筹估算 ;
动态底部:=ema(if(l<= llv(l,60),sma(abs(l-ref(l,1)),60,1)/sma(max(l-ref(l,1),0),99,1),0)*5,3);
涨:=cross(主筹估算,筹码锁定);
强:=cross(主筹估算,散筹估算);
stickline(涨,o,c,8,0),coloryellow;
stickline(涨,o,h,0,0),coloryellow;
stickline(涨,l,c,0,0),coloryellow;
stickline(强, o,c,8,0),colormagenta;
stickline(强,o,h,0,0),colormagenta;
stickline(强,l,c,0,0),colormagenta;
a1:=ref(h,n)=hhv(h,2*n+1);
b1:=filter(a1,n);
c1:=backset(b1,n+1);
d1:=filter(c1,n);{高点}
a2:=ref(l,n)=llv(l,2*n+1);
b2:=filter(a2,n);
c2:=backset(b2,n+1);
d2:=filter(c2,n);{低点}
e1:=(ref(llv(l,2*n),1)+ref(hhv(h,2*n),1))/2; e2:=(h+l)/2;{高低点出现在同一k线上时可作取舍}
h1:=(d1 and not(d2 and e1>=e2)) or barstatus=2 or barscount(c)=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,l,10000),x1));
g1:=f1>ref(f1,1); i1:=backset(g1,2); ld:=i1>ref(i1,1);{过滤后低点}
l2:=ld or barstatus=2 or barscount(c)=1;
x2:=ref(barslast(l2),1)+1; f2:=backset(l2 and count(h2,x2)>0,hhvbars
(if(h2,h,0),x2));
g2:=f2>ref(f2,1); i2:=backset(g2,2); hd:=i2>ref(i2,1);{过滤后高点}
r1:=backset(barstatus=2,barslast(hd)+1); s1:=r1>ref(r1,1); {前一高}
t1:=backset(barstatus=2,barslast(ld)+1); u1:=t1>ref(t1,1); {前一低}
r2:=backset(s1,ref(barslast(hd),1)+2); s2:=r2>ref(r2,1); {前二高}
t2:=backset(u1,ref(barslast(ld),1)+2); u2:=t2>ref(t2,1); {前二低}
t3:=backset(u2,ref(barslast(ld),1)+2); u3:=t3>ref(t3,1); {前三低}
t4:=backset(u3,ref(barslast(ld),1)+2); u4:=t4>ref(t4,1); {前四低}
r3:=backset(s2,ref(barslast(hd),1)+2); s3:=r3>ref(r3,1); {前三高}
r4:=backset(s3,ref(barslast(hd),1)+2); s4:=r4>ref(r4,1); {前四高}
短期压力:drawline(s2,h,s1,h,1),colorred;
短期支撑:drawline(u2,l,u1,l,1),colorgreen;
中期压力:drawline(s3,h,s2,h,1),coloryellow;
中期支撑:drawline(u3,l,u2,l,0),colorgreen;
长期压力:drawline(s4,h,s3,h,1),colorwhite;
长期支撑:drawline(u4,l,u3,l,0),colorgreen;
drawicon(s1,h*1.01,10);
drawicon(s2,h*1.01,10);
drawicon(s3,h*1.01,10);
drawicon(s4,h*1.01,10);
drawicon(u1,l*0.99,9);
drawicon(u2,l*0.99,9);
drawicon(u3,l*0.99,9);
drawicon(u4,l*0.99,9);
止损价:=ref(c,1)*0.95;
drawtext(c>0 and barstatus=2,h*1.03,' 止损价:'+numtostrn(止损价,2)),align0,colorffffff;
阶段高点:ref(h,barslast(s2)),colorwhite,pointdot,linethick2;
高点1:ref(h,barslast(s3)),coloryellow,pointdot,linethick2;
高点2:ref(h,barslast(s1)),colorgreen,pointdot,linethick2;
阶段低点:ref(l,barslast(u2)),colormagenta,pointdot,linethick2;
上一指标公式:60大金庄短线60-短线60分钟看盘公式下载 大智慧大金
下一指标公式:强势股均线角度选股方法公式下载 大智慧角度选股
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文难得一见主图添加自动划线公式下载 大智慧添加源码仅供学习研究。