通达信macd 特殊看点 红绿柱群的比较介绍
通达信macd 特殊看点 红绿柱群的比较
macd:"macd.macd",colorstick;
ts:=barslast(macd>=0 and ref(macd,1)<0);
正红柱:if(macd<0 and ref(macd,1)>=0,sum(ref(macd,1),ts),0),colormagenta,linethick0;
stickline(macd<0 and ref(macd,1)>=0,0,正红柱/3,4,0),colormagenta;
ts1:=barslast(macd<=0 and ref(macd,1)>0);
负绿柱:if(macd>0 and ref(macd,1)<=0,sum(ref(macd,1),ts1),0),colorgreen,linethick0;
stickline(macd>0 and ref(macd,1)<=0,0,负绿柱/3,4,0),colorgreen;
用法。通过直观的比较 红柱群的总柱长和上一红柱群的总柱长比较。可以方便看出趋势。 同理也可以在绿柱群的相邻两个柱群想比较得到印证
只是选股比较麻烦。
无法知道前一个红柱群的其实点到当前的周期数。 否则就可以用来公式选股了
gd29307