某网热门销售的姜灵海归零起航精致排序选股主图附k线图指标
某网销售的
一共如上公式组,下面仅仅贴出一个主图的源码出来,其他的公式源码,自己导入通达信浏览吧,公式已经解密。
{归零起航主图}
通达信的排序操作是:
报价,历史行情,指标排序
这套公式,如何排序,我也不清楚,自己摸索吧
精准眼:=between(c,dynainfo(11)+0.01,dynainfo(11)-0.01) and c>ma(c,20);
stickline(精准眼,o,c,1,0),colorblue;
stickline(精准眼,h,l,0,0),colorblue;
波幅眼:=between(max(c,o)-min(c,o),0.01,-0.01) and not(h=l) and c>ma(c,20);
stickline(波幅眼,o,c,3,0),colormagenta;
stickline(波幅眼,h,l,0,0),colormagenta;
黄金阴眼:=o>ref(c,1) and v<ref(v,1)*0.51 and c<ref(c,1) and c>ma(c,20) ;
stickline(黄金阴眼,o,c,1,0),coloryellow;
drawtext(黄金阴眼, l*0.99, '黄金阴眼'),colorwhite;
黄金眼:=o<ref(c,1) and v<ref(v,1)*0.7 and c>o and c<ref(c,1) and ref(c,1)<ref(c,2)
and ref(o,1)>ref(c,1) and c>ma(c,20);
stickline(黄金眼,o,c,1,0),colorcyan;
drawtext(黄金眼, l*0.99, '黄金眼'),colorwhite;
腾空眼:=o>ref(c,1) and c>o and ref(c,1)>ref(c,2) and (v<ref(v,1)*0.7 or v=llv(v,50)) and c>ma(c,20);
stickline(腾空眼,o,c,1,0),colorred;
drawtext(腾空眼, l*0.98, '腾空眼'),colorred;
腾空阳:=o>ref(c,1) and c>o and ref(c,1)>ref(c,2) and v>=ref(v,1)*0.7 and v<ref(v,1) and c>ma(c,20);
stickline(腾空阳,o,c,1,0),colormagenta;
drawtext(腾空阳, l*0.99, '腾空阳'),colorwhite;
黄金阳:=o<ref(c,1) and v<ref(v,1) and c>o and c<ref(c,1)
and ref(c,1)>ref(c,2) and ref(c,1)>ref(o,1) and c>ma(c,20);
stickline(黄金阳,o,c,1,0),colorcyan;
drawtext(黄金阳, l*0.99, '黄金阳'),colorwhite;
黄金阴:=o>ref(c,1) and v<ref(v,1) and v>ref(v,1)*0.51 and c<ref(c,1) and c>ma(c,20);
stickline(黄金阴,o,c,1,0),colorlired;{好公式网-最好的股票公式网站 www.goodgongshi.com}
drawtext(黄金阴, l*0.99, '黄金阴'),colorwhite;
小阳三连元:=if(dynainfo(4)>0,last(o>ref(c,1) and c>ref(c,1) and c/ref(c,1)<=1.06 and c>ma(c,20) ,2,0),0);
drawtext(小阳三连元, l*0.99, '三连元'),colorwhite;
跳空阳:=l>ref(h,1) and c>o and v>=ref(v,1) and c>ma(c,20);
drawtext(跳空阳, l*0.99, '跳空阳'),colorwhite;
量缩价涨:=ref(v,3)=hhv(v,4) and ref(c,3)>ref(c,4) and ref(c,3)>ref(o,3) and c=hhv(c,4) and c>ma(c,20);
drawtext(量缩价涨, l*0.99, '缩涨'),colormagenta;
a:=ma(-100*(hhv(high,34)-close)/(hhv(high,34)-llv(low,34)),19),colorred;
b:=-100*(hhv(high,14)-close)/(hhv(high,14)-llv(low,14));
d:=ema(-100*(hhv(high,34)-close)/(hhv(high,34)-llv(low,34)),4),linethick2;
长期线1:=a+100;
短期线1:=b+100;
中期线1:=d+100;
底部:=(长期线1<12 and 中期线1<8 and (短期线1<7.2 or ref(短期线1,1)<5) and (中期线1>ref(中期线1,1) or 短期线1>ref(短期线1,1)))
or (长期线1<8 and 中期线1<7 and 短期线1<15 and 短期线1>ref(短期线1,1)) or (长期线1<10 and 中期线1<7 and 短期线1<1) ;
底部区域:=filter(底部,10);
金叉:=长期线1<15 and ref(长期线1,1)<15 and 中期线1<18 and 短期线1>ref(短期线1,1) and cross(短期线1,长期线1) and 短期线1>中期线1
and (ref(短期线1,1)<5 or ref(短期线1,2)<5 ) and (中期线1>=长期线1 or ref( 短期线1,1)<1 );
低位金叉:=filter(金叉,10);
drawtext(低位金叉, l*0.99, '低金'),colorligreen;
drawtext(底部区域, l*0.99, '底部'),coloryellow;
均值:=(3*close+open+low+high)/6;
短期线:(19*均值+19*ref(均值,1)+18*ref(均值,2)+17*ref(均值,3)+16*ref(均值,4)+15*ref
(均值,5)+14*ref(均值,6)
+13*ref(均值,7)+12*ref(均值,8)+11*ref(均值,9)+10*ref(均值,10)+9*ref(均值,11)+8*ref
(均值,12)
+7*ref(均值,13)+6*ref(均值,14)+5*ref(均值,15)+4*ref(均值,16)+3*ref(均值,17)+2*ref
(均值,20)+
ref(均值,19))/210,coloryellow;
长期线:ma(短期线,5),colorred;
{涨跌停价格显示};
aa:=(c-ref(c,1))/ref(c,1)*100;
zs:=(namelike('st') or namelike('*st') or namelike('s')) and aa>=4.945;
ds:=(namelike('st') or namelike('*st') or namelike('s')) and aa<=-4.945;
涨停价:if(zs,ref(c,1)*1.05,ref(c,1)*1.1),nodraw,colorred;
跌停价:if(ds,ref(c,1)*0.95,ref(c,1)*0.9),nodraw,colorgreen;
{涨跌停k线标识};
st:=namelike('st')=1 or namelike('*st')=1 or namelike('sst')=1
or namelike('s*st')=1 or namelike('s st')=1;
涨停:=c/ref(c,1)>1.097 or (c/ref(c,1)>1.0495 and st);
跌停:=ref(c,1)/c>1.0995 and ref(c,1)/c<1.1 or (ref(c,1)/c>1.0495 and st);
stickline(涨停,c,o,3,0),colormagenta;
stickline(跌停,c,o,3,0),colorgreen;
drawicon(h=ztprice(ref(close,1),0.1) and c!=h,l*0.965,15);
ldm4:=const(hhv(ref(high,1),240));
ldm5:=const(llv(ref(low,1),240));
ldm6:=ldm4-ldm5;
ldm7:=low-ldm6*0.03;
ldm8:=high+ldm6*0.03;
ldm9:=close>500;
ldm10:=max(close,open);
ldm11:=min(close,open);
ldm12:=0;
ldm13:=1;
ldm14:=if(ldm9,high,ldm10);
ldm15:=if(ldm9,low,ldm11);
ldm16:=if(close>open,if(ldm13=0,low,ldm15),if(ldm13=0,high,ldm14));
ldm17:=2/1000;
ldm18:=currbarscount;
ldm19:=400;
ldm20:=ldm18<=ldm19;
ldm21:=low;
ldm22:=if(ldm12=0,ldm21,ref(ldm12,ldm12));
基准价:if(ldm20,const(ldm22),drawnull),dotline,colorwhite;
ldm23:=基准价;
ldm24:=ldm23*ldm17;
ldm25:=abs(low-ldm23)<=ldm24;
ldm26:=abs(open-ldm23)<=ldm24;
ldm27:=abs(close-ldm23)<=ldm24;
ldm28:=abs(high-ldm23)<=ldm24;
ldm29:=ldm25 or ldm26 or ldm27 or ldm28 and ldm20 and ldm18!=1;
ldm30:=count(ldm29,ldm19);
精准点个数:if(ldm30>0,ldm30+1,0),nodraw,colorwhite;
ldm1:="神龙强势.神龙强势#day";
drawtext_fix(islastbar ,0.75,0.95,0,'【神龙强势chnmoney_com】')colorred;
drawtext_fix(islastbar ,0.9,0.95,0,con2str(ldm1,1))colorwhite;
上一指标公式:通达信文雅实战主图附主图效果检测图指标下载
下一指标公式:上升进下降逃挣大钱的彩云主图指标下载
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文某网热门销售的姜灵海归零起航精致排序选股主图附K线图指标下载仅供学习研究。