把历史最低价当作0%, 历史最高价当作100%, 看一下当下A股中价格的分布
|
(2015年5178的下跌开始-----------统计数据) |
(上市开始----------------------统计数据) |
|
|
75%-100% |
37 |
50 |
|
50%-75% |
261 |
364 |
|
25%-50% |
853 |
1,294 |
|
10%-25% |
1,111 |
1,253 |
|
0-10% |
2,264 |
1,568 |
进入统计的有4529支股票,
-其中有50%运行在15年到现在所产生高低点的底部10%空间, 有75%的股票已经跌到了底部25%的区间
- 30%运行在上市开始到现在所产生的高低点的底部10%的空间, 有60%的股票已经跌到了底部25%的区间
-现在指数还在3000点, 即0-6000点的中间位置
这里,
1, 指数风险跟个股风险要分开看, 从指数对应的成本分析看, 我认为上证跌到2000点都很正常,但多数个股没有50%的下跌空间
2, 底部股票真没有必要拿命陪着疯涨过的股票下跌, 股指被玩成了期货, 当心玩火*焚自**
----------
统计公式
参数: "1672"统计的是2015年5178开始下跌后的数据
换成"0"能统计上市到现在的数据
maxhigh:hhv(c,1672);
minlow:llv(c,1672);
calstep:=(maxhigh-minlow)/4;
calstepn:=(maxhigh-minlow)/10;
where:if(c<minlow+calstepn,-1,if(c>minlow+calstepn and c<minlow+calstep,1, if(c>minlow+calstep and c<minlow+calstep*2,2, if(c>minlow+calstep*2 and c<minlow+calstep*3,3, if(c>minlow+calstep*3,4,0)))));