台股能不能繼續漲? 如果可以,會是什麼股票領漲?
要回答這個問題,我們先來對市場的多空架構做個定義
如果根據這樣的定義,那麼加權指數已經即將正式翻多
如果從細產業來看,我們會發現,這當中塑化原料及不鏽鋼兩大族群是衝的最快的兩類產業,他們的指數分別在九月中旬及下旬就領先翻多。
為了很快的了解到底目前有那些股票位於這六階段不同的位置,我寫了一個腳本如下: 我特別濾掉那些股價不到10元,成交量不到1000張的股票,
1input:status(1); 2setinputname(1,"1:復甦期,2:收集期,3:多頭,4:警示期,5:發散期,6:空頭"); 3variable:m20(0),m60(0),message("0"),userchoice("0"); 4m20=average(close,20); 5m60=average(close,60); 6if close > m20 and c< m60 and m20<m60 7then message="復甦期" 8else 9if close > m20 and c> m60 and m20<m60 10then message="收集期" 11else 12if close > m20 and c> m60 and m20 > m60 13then message="多頭" 14else 15if close < m20 and c>m60 and m20>m60 16then message="警示期" 17else 18if close < m20 and c<m60 and m20>m60 19then message="發散期" 20else 21if close < m20 and c<m60 and m20<m60 22then message="空頭"; 23 24switch(status) 25begin 26case=1 : 27userchoice="復甦期"; 28case=2 : 29userchoice="收集期"; 30case=3 : 31userchoice="多頭"; 32case=4 : 33userchoice="警示期"; 34case=5 : 35userchoice="發散期"; 36case=6 : 37userchoice="空頭"; 38end; 39 40if message=userchoice 41and volume>1000 and close>10 42then ret=1; 43outputfield1(message); 44setoutputname1("今日訊號"); 45outputfield2(message[1]); 46setoutputname2("昨日訊號"); 47outputfield3(message[2]); 48setoutputname3("前日訊號");
根據這個腳本,我選出的多頭的股票如下圖
空頭的股票如下圖
我們從多頭及空頭架構的股票,可以發現,受惠於台幣貶值的外銷股,景氣到底的塑化股,以及跌深且旺季到的電子股,目前是處於多頭走勢,金融股,航空股及部份先前比較強的個股則處於空頭走勢。
從這樣的架構來看,台幣續貶力道,電子旺季持續力,美國需求,以及全球景氣循環股的續航力(油價及工業金屬),會是這個盤能持續多頭多久的主要指標。
除了用這一套方法來研判大盤漲昇架構之外,我稍稍更改一下腳本如下:
1variable:m20(0),m60(0),message("0") ; 2m20=average(close,20); 3m60=average(close,60); 4if close > m20 and c< m60 and m20<m60 5then message="復甦期" 6else 7if close > m20 and c> m60 and m20<m60 8then message="收集期" 9else 10if close > m20 and c> m60 and m20 > m60 11then message="多頭" 12else 13if close < m20 and c>m60 and m20>m60 14then message="警示期" 15else 16if close < m20 and c<m60 and m20>m60 17then message="發散期" 18else 19if close < m20 and c<m60 and m20<m60 20then message="空頭"; 21 22if message<>message[1] 23and volume>500 and close>10 24then ret=1; 25outputfield1(message); 26setoutputname1("今日訊號"); 27outputfield2(message[1]); 28setoutputname2("昨日訊號"); 29outputfield3(message[2]); 30setoutputname3("前日訊號");
這個腳本可以找出最近一日訊號跟前一日不同的股票,以下幾張圖就是根據上述的腳本跑出來的,有的變好,有的變壞,加減參考囉。
