大智慧上涨速度线指标
涨速线指标(均线上涨速度线):
均线上涨斜率代表股票涨升快慢,白线表示五日线每天上涨的点数,黄色线表示十日线每天上涨点数。
涨升速度越快的股票,白,黄线数值自然越大。
白,黄两线分别表示五日,十日均线上涨斜率。
白,黄两线上穿红线表示加速上涨;
白黄两线上穿绿线表示进入上涨周期;
白黄两线下穿红线表示上涨减速,下穿绿线表示下跌开始。
a:=ma(c,5);
b:=ma(c,10);
ma5:100*(a-ref(a,1))/ref(a,1);
ma10:100*(b-ref(b,1))/ref(b,1);
1,colorred;
0,LINETHICK4,colorgreen;
加速上涨:cross(ma5,1) and ma10>1,color3d;
cross(ma5,1),colorred;