macd量能分析
本指标旨在探索换手率,量能与股价的涨跌关系。目前正在测试阶段,谨慎参考。
var2:ma(c,13),colorred,linethick3;
上翘:if(var2>ref(var2,1),var2,drawnull),colorred,linethick3;
下拐:if(var2<ref(var2,1),var2,drawnull),colorgreen,linethick3;
bias:=(close-ma(close,5))/ma(close,5)*100;
f:=ma(s,121);
rsv:=(close-llv(low,45))/(hhv(high,45)-llv(low,45))*100;
k:=sma(rsv,15,1);
d:=sma(k,15,1);
j:=3*k-2*d;
lc:=ref(close,1);
rsi:=sma(max(close-lc,0),6,1)/sma(abs(close-lc),6,1)*100;
s1:=if((j<11 and bias>-11 and cross( s,f) and (s-f)>0.010),2,0),stick,linethick3,color00ff00;
drawtext(s1=2,low,'!'), colorgreen;
中轨:hhv(ma(h,13),13),colorwhite,linethick1;
趋势:llv(ma(h,13),1),colorgreen,linethick2;
短期:100*(c-llv(l,1))/(hhv(c,1)-llv(l,1)),colorwhite;
中期:100*(c-llv(l,10))/(hhv(c,10)-llv(l,10)),colorcyan;
正负:= close-ma(close,s);
成交额:if(正负>0,vol,-vol)/1000000;
ma$1:ma(成交额,n1);
ma$2:ma(成交额,n2);
ma$3:ma(成交额,n3);
量能饱和度:if((amount/c)/(hhv(amount,20)/hhv(c,20))>1,1,(amount/c)/(hhv(amount,20)/hhv(c,20)))*100,coloryellow;
a:105,colorred;
b:70,colorgreen;
c:50,colorbluee;
n:=9;
typ := (high + low + close)/3;
rs:=sum(if(typ>ref(typ,1),typ*vol,0),n)/sum(if(typ<=ref(typ,1),typ*vol,0),n);
mfi:=100-100/(1+rs);
资金流量:mfi,nodraw;
a1:=sum(if(mfi>ref(mfi,1),vol,if(mfi<ref(mfi,1),-vol,0)),0);//{obv}
stickline(macd>0 and macd>=ref(macd,1),0,macd,5,0),color0000ff;
stickline(macd>0 and macd<ref(macd,1),0,macd,5,0),colorffff00;
stickline(macd<0 and macd>=ref(macd,1),0,macd,5,0),colorff00ff;
stickline(macd<0 and macd<ref(macd,1),0,macd,5,0),color00ff00;
diff : ema(close,short) - ema(close,long);
dea : ema(diff,m);
macd : 2*(diff-dea);
zero : 0;
if(codetype>0)
{
if( codetype>2 and codetype <> 6)
{
a="该指标只用于个股和沪深指数。";
换手:=a*100;
return 0;
}
else
{
a=vol/shgzg;
}
}
涨幅:=(close-ref(close,1))/ref(close,1)*100;
换手率:=a;
n1天平均换手率:=ma(换手率,60);
n1天平均涨幅:=ma(涨幅,n1);
平均动能v:=n1天平均涨幅/n1天平均换手率;
当日动能v:=涨幅/换手率;
平均动能:平均动能v/100;
if(涨幅<=0 or close<=open)
return 0;
if(当日动能v<=平均动能v)
return 0;
if(当日动能v>平均动能v*50)
{
drawicon(1,0,1);
爆表:0;
return 0;
}
当日动能:当日动能v/100;
低位金叉:=cross(diff,dea) and diff<-0.1;
换手率:vol/shgzg*100;
n日换手率平滑:ema(换手率 ,n)
上一指标公式:个股K线指标公式详解 同花顺公式指标
下一指标公式:耀舞扬威主图指标公式详解 同花顺扬威
☉ 好公式网发布的指标公式主要用于软件技术面分析,仅供参考,勿用于实际操作,据此操作风险自负!
☉ 解压密码:www.goodgongshi.com 就是好公式网域名,希望大家看清楚,切勿输错。
☉ tnc和tni格式指标公式,仅可以用通达信软件引入使用,例如可以用通达信软件引入使用指标公式;
☉ tne格式指标公式,仅可以用通达信软件公式编辑器5.0版导入,高版本兼容低版本;
☉ fnc格式指标公式,可以用大智慧软件新一代高速行情分析系统股票软件使用,少部分可以用分析家软件引入使用;
☉ alg格式指标公式,仅仅可以用飞狐交易师软件引入使用;exp格式指标公式,仅可以用大智慧经典版软件引入使用;
☉ hxf格式指标公式,仅可以用同花顺软件引入使用。
☉ 如果您发现下载软件链接错误,请联系管理员报告错误。
☉ 好公式网欢迎各位网友帮忙宣传转发本站网址,有您的支持,我们会做得更好!
☉ 本文MACD量能分析指标公式详解 同花顺分析MACD仅供学习研究。