最近股市一路崩,大家最想知道的是,急跌後什麼時候可以買?買什麼?下面介給幾個大跌後抄底的策略:
策略1》
大跌後由主力買盤承接
這個策略概念是若最近30天的跌幅超過28.3%、沒有超過78.2%,而且最近10天券商分點買進家數愈來愈少,賣出家數愈來愈多,代表籌碼是開始往特定買盤集中,腳本如下:
1.input:period(10);
2.value1=GetField("分公司賣出家數")[1];
3.value2=GetField("分公司買進家數")[1];
4.if linearregslope(value1,period)>0//賣出的家數愈來愈多。
5.and linearregslope(value2,period)<0//買進的家數愈來愈少。
6.and close*1.05<close[period]//但這段期間股價在跌。
7.and close*1.283<close[30]。
8.and close*1.782>close[30]//波段跌幅夠大。
9.then ret=1;
策略2》
大跌後的低檔5連陽
這個策略是尋找長期下跌、近期跌勢加劇,但是近5天收盤都大於開盤的股票。收盤大於開盤在日K線上為紅K線,又稱陽線,因此稱為5連陽,其腳本如下:
1.if trueall(close>open,5)
2.and close*1.4<close[90]
3.and close*1.2<close[20]
4.then ret=1;
策略3》
大跌後的價量背離
這個策略是去尋找大跌且近期急跌後,近10個交易日價量背離的股票,代表有機會反彈的股票,其腳本如下:
1.input:period(10);
2.input:times(5);
3.if close[1]*1.4<close[90]
4.and close*1.2<close[30]
5.and countif(c>c[1]xor v>v[1],period)
6.>=times
7.and close=highest(close,period)
8.then ret=1;
策略4》
大跌後的長黑後長紅
這個策略是去尋找那些大跌之後,加速趕底後,剛開始出現長紅K的股票,腳本如下:
1.if close*1.4<close[90]
2.and close*1.2<close[20]
3.then begin
4.if close[1]*1.05<close[2]
5.and close>1.05*close[1]
6.then ret=1;
7.end;
策略5》
大跌後出現長下影線
這是去尋找大跌後,近3天出現至少1根長下影線的股票。下影線代表下殺後,有人承接,將股價買上來,也有可能是急跌後開始反彈的股票,其腳本如下:
1.input:Percent(1.5,"下影線占股價絕對百分比");
2.settotalbar(5);
3.condition1=(minlist(open,close)-Low)>absvalue(open-close)*3;//下影線的長度是實體的3倍以上。
4.condition2=minlist(open,close)>low*(100+Percent)/100;
5.if countif(condition1 and condition2,5)>=1
6.and close[20]>close*1.25
7.and close[90]>close*1.4
8.then ret=1;