從月線與季線看台股當前的漲昇架構

By | 2015-10-12

台股能不能繼續漲? 如果可以,會是什麼股票領漲?

要回答這個問題,我們先來對市場的多空架構做個定義

101205

 

如果根據這樣的定義,那麼加權指數已經即將正式翻多

101204

如果從細產業來看,我們會發現,這當中塑化原料及不鏽鋼兩大族群是衝的最快的兩類產業,他們的指數分別在九月中旬及下旬就領先翻多。

101201

101203

 

為了很快的了解到底目前有那些股票位於這六階段不同的位置,我寫了一個腳本如下: 我特別濾掉那些股價不到10元,成交量不到1000張的股票,

input:status(1);
setinputname(1,"1:復甦期,2:收集期,3:多頭,4:警示期,5:發散期,6:空頭");
variable:m20(0),m60(0),message("0"),userchoice("0");
m20=average(close,20);
m60=average(close,60);
if close > m20 and c< m60 and m20<m60
then message="復甦期"
else
if close > m20 and c> m60 and m20<m60
then message="收集期"
else
if close > m20 and c> m60 and m20 > m60
then message="多頭"
else
if close < m20 and c>m60 and m20>m60
then message="警示期"
else
if close < m20 and c<m60 and m20>m60
then message="發散期"
else
if close < m20 and c<m60 and m20<m60
then message="空頭";

switch(status)
begin
case=1 :
userchoice="復甦期";
case=2 :
userchoice="收集期";
case=3 :
userchoice="多頭";
case=4 :
userchoice="警示期";
case=5 :
userchoice="發散期";
case=6 :
userchoice="空頭";
end;

if message=userchoice
and volume>1000 and close>10
then ret=1;
outputfield1(message);
setoutputname1("今日訊號");
outputfield2(message[1]);
setoutputname2("昨日訊號");
outputfield3(message[2]);
setoutputname3("前日訊號");

根據這個腳本,我選出的多頭的股票如下圖

101207多頭

空頭的股票如下圖

101206空頭

 

我們從多頭及空頭架構的股票,可以發現,受惠於台幣貶值的外銷股,景氣到底的塑化股,以及跌深且旺季到的電子股,目前是處於多頭走勢,金融股,航空股及部份先前比較強的個股則處於空頭走勢。

從這樣的架構來看,台幣續貶力道,電子旺季持續力,美國需求,以及全球景氣循環股的續航力(油價及工業金屬),會是這個盤能持續多頭多久的主要指標。

除了用這一套方法來研判大盤漲昇架構之外,我稍稍更改一下腳本如下:

variable:m20(0),m60(0),message("0") ;
m20=average(close,20);
m60=average(close,60);
if close > m20 and c< m60 and m20<m60
then message="復甦期"
else
if close > m20 and c> m60 and m20<m60
then message="收集期"
else
if close > m20 and c> m60 and m20 > m60
then message="多頭"
else
if close < m20 and c>m60 and m20>m60
then message="警示期"
else
if close < m20 and c<m60 and m20>m60
then message="發散期"
else
if close < m20 and c<m60 and m20<m60
then message="空頭";

if message<>message[1]
and volume>500 and close>10
then ret=1;
outputfield1(message);
setoutputname1("今日訊號");
outputfield2(message[1]);
setoutputname2("昨日訊號");
outputfield3(message[2]);
setoutputname3("前日訊號");

這個腳本可以找出最近一日訊號跟前一日不同的股票,以下幾張圖就是根據上述的腳本跑出來的,有的變好,有的變壞,加減參考囉。

101208

101209

101210

101211