底部进拉升期选股公式(自编)
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
一、底部进拉升期
1.要素:
(1):底部出现7%以上阳线
(2):5日均量线上穿30日均量线,当天放量阳线,属于第一次短线买点。并且伴随5日均量线上穿120日均量线。
( 3 ) : 三天内,30日均量线上穿120日均量线,当天放量阳线,属于第二次短线买点。
(4)、5日均量线上穿30日均量线当天出现7%阳线,属于必选类型。如果是在上穿之前或之后出现,都属于次选类型。
2、选股
(1)、操盘手软件打开60,按当天个股涨跌幅排序,把涨幅7%以上的股票加入自选股
(2)、把第二天收出高开高走放量阳线的个股留下
(3)、把现价离最长筹码位空间大的股票留下
(4)、5日均量线上穿30日均量线当天出现7%阳线,属于必选类型。如果是在上穿之前或之后出现,都属于次选类型。
注:上穿当天未收放量阳线的,判断无效,不得往后推看。
底部进拉升期选股公式(自编)
ma20:=ma(close,20);
BTma20:= (close>ma20) and (ref(close,1)>ref(ma20,1)) and (ref(close,2)>ref(ma20,2));
Vol5:=ma(vol,5);
Vol30:=ma(vol,30);
vol120:=ma(vol,120);
BTvol120:= (vol > vol120) and (ref(vol,1) > ref(vol120,1)) and (ref(vol,2) > ref(vol120,2));
小盘:=(CAPITAL<100000);
中线强势:=小盘and BTma20 and BTvol120;
T0:=cross(vol30,vol120) and vol>ref(vol,1) and close>open;
T3:=ref(close,3)/ref(close,4)>1.07 and ref(vol5,4)ref(vol30,3) and ref(vol,3)>ref(vol,4) and
ref(open,2)>ref(close,3) and ref(close,2)>ref(open,2) and
ref(vol,2)>ref(vol,3);
T2:= ref(close,2)/ref(close,3)>1.07 and ref(vol5,3)ref(vol30,2) and ref(vol,2)>ref(vol,3) and
ref(open,1)>ref(close,2) and ref(close,1)>ref(open,1) and
ref(vol,1)>ref(vol,2);
中线强势and T3 or T2