我先前寫過不少大跌後抄底的腳本,這次武漢肺炎所帶來的急跌,朋友們最想知道的就是跌下來要買那一檔? 我想整理這些腳本,找出其中勝率較高的,來跟大家介紹。
一,大跌後的主力回頭收集
這個腳本的想法是如果股價這二十天到三十天有一定的跌幅,但在這段時間內,分公司賣出家數愈來愈多,分公司買進家數愈來愈少,代表有特定買盤趁著大跌在默默吸納籌碼。
我寫的腳本如下
input:period(20); value1=GetField("分公司賣出家數")[1]; value2=GetField("分公司買進家數")[1]; if linearregslope(value1,period)>0 //賣出的家數愈來愈多 and linearregslope(value2,period)<0 //買進的家數愈來愈少 and close*1.05<close[period] //過去一段時間股價在跌 and close*1.25<close[30] then ret=1;
二,大跌後的低檔五連陽
這個策略是去尋找長期下跌,近期跌勢加遽,但最近五天收盤都大於開盤的股票
對應的腳本如下
if trueall(close>open,5) and close*1.4<close[90] and close*1.2<close[20] then ret=1;
三,大跌後的價量背離
這個策略是去尋找大跌且近期急跌後,近十個交易日價量背離的股票
input:period(10); input:times(5); if close[1]*1.4<close[90] and close*1.2<close[30] and countif(c>c[1]xor v>v[1],period) >=times and close=highest(close,period) then ret=1;
四,大跌後的長黑後長紅
這個腳本是去尋找那些大跌之後,加速趕底後,出現長紅的股票
if close*1.4<close[90] and close*1.2<close[20] then begin if close[1]*1.05<close[2] and close>1.05*close[1] then ret=1; end;
五,大跌後出現長下影線
這是去尋找大跌後,近三天出現至少一根長下影線的股票
input: Percent(1.5,"下影線佔股價絕對百分比"); settotalbar(5); condition1 = (minlist(open,close)-Low) > absvalue(open-close)*3; //下影線的長度是實體的三倍以上 condition2 = minlist(open, close) > low* (100 + Percent)/100; if countif( condition1 and condition2, 5)>=1 and close[20]> close*1.25 and close[90]>close*1.4 then ret=1;
六,大跌後的急拉
這個腳本是去尋找大跌且股價很久沒有上漲超過6%的股票
value1=barslast(close>=close[1]*1.06); if value1[1]>50 //超過50天沒有單日上漲超過6% and value1=0 //今天上漲超過6% and average(volume,100)>500 and volume>1000 and close[1]*1.25<close[50] //過去50天跌幅超過25% then ret=1;
七,大跌後的第一次突破月線
這個腳本是股價大跌後,去尋找股價離低點沒有很遠,且股價近期以來第一次突破月線的標的
input:period(90,"計算區間"); value1=highest(high,period); value2=lowest(low,period); if value2*1.3<value1 and close<value2*1.07 and barslast(close cross over average(close,22))=0 and barslast(close cross over average(close,22))[1]>30 then ret=1;
以上這七個策略的勝率都接近六成,大家也可以根據這些樣本, 發展出自己的大跌後對應策略,祝大家在驚濤中都能乘風而行。
推荐碼@XQ8899