2013年12月26日 星期四

烏雲罩頂

烏雲罩頂與貫穿線是相反的型態,但其基本假設大致相同。在多頭力道的持續發揮後,第二日開盤價延續之前多頭氣勢,使得新的多頭力量在開盤時持續延燒。但收盤時卻跌入前一個長紅日的二分之一以內時,顯示出空方力道增強或是多單獲利了結的力量,超乎了今日的追多力量。使今日開盤時進場做多的投資人,紛紛慘遭套牢,如果成交量創新高則後市堪憂,因此,烏雲罩頂是屬於空頭反轉型態。

1.第一天必需延續原來的上升趨勢,而且當日的K線是長紅。
2.第二天的開盤價必需比前一日的最高價還高,但收盤價則必需在前一天實體的二分之一以下。

3.帶量長黑的烏雲罩頂,其反轉成功機率更高。

2013年12月25日 星期三

川上三鴉

在一波漲勢之後,一根長紅的隔天起,跳空之後,連續兩到三天收小黑線,就像三隻烏鴉站在高點,日本人稱之為川上三鴉,是可信度很高的賣出訊號,相反的,如果是一波跌勢之後,在一根長黑的隔天起,跳空之後,連續兩到三天小紅線,也是另一個可信度很高的反轉訊號。

三長下影線

長下影線的定義有兩個
1.下影線的長度超過實體部份三倍。
2.最低點到實體部份的距離超過一定的比例。

根據這兩個原則,參考的腳本如下:




下圖就是一個多根長下影線的例子。


倒狀槌子





{
[檔名:] 倒狀鎚子 [資料夾:] 酒田戰法 [適用方向]
[說明:] 前期收長黑K棒 今期開低試圖上攻後收上影線短紅棒
[資料讀取] 10
[最大引用] 5
}

{判斷狀況}
condition1= ( open[1] - close[1] ) >(high[1] -low[1]) * 0.75;//狀況1: 前期出長黑K棒
condition2= close[1] < close[2] - (high[2]-low[2]) ;//狀況2: 前期呈波動放大下跌
condition3= close > open and (high -close)> (close-open) *2;//狀況3: 收紅上影線
{結果判斷}
IF
condition1
and condition2
and condition3
THEN RET=1;

內困三日







{
[檔名:] 內困三日翻紅 [資料夾:] 酒田戰法 [適用方向]
[說明:] 黑K棒後內包前期短紅棒 當期再以紅棒突破黑棒開盤價

[資料讀取] 10
[最大引用] 5
}

{判斷狀況}
condition1= ( open[2] - close[2] ) >(high[2] -low[2]) * 0.75 ;//狀況1: 實體下跌K棒
condition2= ( close[1] - open[1] ) >(high[1] -low[1]) * 0.75 ;//狀況2: 實體上漲K棒
condition3= high[1] < high[2] and low[1] > low[2] ;//狀況3: 前期內包於前前期
condition4= ( close - open )  > 0.75 *(high -low) ;//狀況4: 當期實體上漲K棒
condition5= close > open[2] ;//狀況5: 現價突破前前期開盤價
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
and condition5
THEN RET=1;


{
[檔名:] 內困三日翻黑 [資料夾:] 酒田戰法 [適用方向]
[說明:] 前兩期為長紅棒後包黑K棒 當期往下跌破紅棒開盤價

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= close[2] > open[2] + high[3]-low[3] ;//狀況1: 前前期長紅棒
condition2= high[2] < high[3] and low[2] > low[3] ;//狀況2: 前期內包黑K棒
condition3= open >= close[1] and close < open[2] ;//狀況3: 開平高跌破三日低點
{結果判斷}
IF
condition1
and condition2
and condition3
THEN RET=1;

十字線



{
[檔名:] 十字線 [資料夾:] 酒田戰法 [適用方向] 不指定
[說明:] K棒收十字線

[資料讀取] 10
[最大引用] 5
}

{判斷狀況}
condition1= close =open ;//狀況1: 開盤價等於收盤價
condition2= high>open ;//狀況2: 有漲
condition3= low<open ;//狀況3: 有跌
{結果判斷}
IF
condition1
and condition2
and condition3
THEN RET=1;

吊人線







{
[檔名:] 吊人 [資料夾:] 酒田戰法 [適用方向]
[說明:] 短黑棒留長下影線
[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= open = High and close < open ;//狀況1: 開高收低留黑棒
condition2= (high -low) > 2 *(high[1]-low[1]) ;//狀況2: 波動倍增
condition3= (close-low)> (open-close)  *2 ;//狀況3: 下影線為實體兩倍以上
{結果判斷}
IF
condition1
and condition2
and condition3
THEN RET=1;


吞噬線




{
[檔名:] 多頭吞噬 [資料夾:] 酒田戰法 [適用方向]
[說明:] 前期收短黑K棒 當期開低走高拉出長紅棒 波動率放大 穿過昨高

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( open[1] - close[1] ) >(high[1] -low[1])*0.75 ;//狀況1: 前期出黑K棒
condition2= ( close - open ) >(high -low) * 0.75 ;//狀況2: 當期紅棒
condition3= high > high[1] ;//狀況3: 高過昨高
condition4= open<low[1] ;//狀況4: 開低破昨低
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
THEN RET=1;


{
[檔名:] 空頭吞噬 [資料夾:] 酒田戰法 [適用方向]
[說明:] 紅棒後 開高下跌破昨低收長黑K棒

[資料讀取] 10
[最大引用] 5
}

{判斷狀況}
condition1= ( close[1] - open[1] ) > (high[1] -low[1]) * 0.5 ;//狀況1: 前期實體紅棒
condition2= high-low >( high[1]-low[1])*2 ;//狀況2: 當期波動倍曾
condition3= ( open - close )>(high -low) * 0.75 ;//狀況3: 當期黑K棒
condition4= open > close[1] and close < low[1] ;//狀況4: 開高下跌破昨低
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
THEN RET=1;

執帶




{
[檔名:] 多頭執帶 [資料夾:] 酒田戰法 [適用方向]
[說明:] 開在最低點一路走高收在最高點附近的K棒
[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= close>open ;//狀況1:
condition2= (Close-Open)>(high-low)*0.9 ;//狀況2:
condition3= Close>Close[1]+high[1]-low[1] ;//狀況3:
{結果判斷}
IF
condition1
and condition2
and condition3
THEN RET=1;


{
[檔名:] 空頭執帶 [資料夾:] 酒田戰法 [適用方向]
[說明:] 長黑棒

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( open - close ) > (high -low) * 0.8 ;//狀況1: 實體黑K棒
condition2= close < close[1] - (high[1]-low[1]) ;//狀況2: 波動向下放大
{結果判斷}
IF
condition1
and condition2
THEN RET=1;

孕抱線






{
[檔名:] 多頭母子 [資料夾:] 酒田戰法 [適用方向]
[說明:] 前期收長黑K棒 今期開高小幅收紅不過昨高

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( open[1] - close[1] ) >(high[1] -low[1])*0.75 ;//狀況1: 前期出長黑K棒
condition2= close[1] < close[2] - high[2]-low[2] ;//狀況2: 前期呈波動放大下跌
condition3= ( close - open ) >(high -low) * 0.75 ;//狀況3: 當期紅棒
condition4= high < high[1] ;//狀況4: 高不過昨高
condition5= low>low[1] ;//狀況5: 低不破昨低
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
and condition5
THEN RET=1;

{
[檔名:] 空頭母子 [資料夾:] 酒田戰法 [適用方向]
[說明:] 長紅棒後 內包短黑K

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( close[1] - open[1] ) > (high[1] -low[1]) * 0.8 ;//狀況1: 前期實體紅棒
condition2= close[1]> close[2] + high[2]-low[2] ;//狀況2: 前期波動向上放大
condition3= ( open - close )>(high -low) * 0.5 ;//狀況3: 當期黑K棒
condition4= high[1] > high and low[1] < Low ;//狀況4: 高不過高 低不過低 內包K棒
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
THEN RET=1;

晨星與夜星







{
[檔名:] 晨星 [資料夾:] 酒田戰法 [適用方向]
[說明:] 前前期收長黑K棒 前期再開低震盪收短紅棒後  當期開高紅棒反攻起跌點

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( open[2] - close[2] ) >(high[2] -low[2]) * 0.75 ;//狀況1: 前前期出黑K棒
condition2= close[2] < close[3]-(high[3]-low[3]) ;//狀況2: 跌勢擴大
condition3= ( close - open ) >(high -low) * 0.75 ;//狀況3: 當期收紅K棒
condition4= close> close[2] ;//狀況4: 收復黑棒收盤價
condition5= close[1] <= close[2] and close[1] < open ;//狀況5: 前低收盤為三期低點
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
and condition5
THEN RET=1;



{
[檔名:] 夜星 [資料夾:] 酒田戰法 [適用方向]
[說明:] 紅棒後 開高走低守平盤

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( close[2] - open[2] ) > (high[2] -low[2]) * 0.75 ;//狀況1: 前前期實體紅棒
condition2= close[2] > close[3] + (high[3]-low[3]) ;//狀況2: 前前期波動放大
condition3= low[1] > high[2] and close[1]>open[1] ;//狀況3: 前期高開收紅
condition4= open < close[1] and close < open - (high[1]-low[1]) ;//狀況4: 當期開低收黑K棒
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
THEN RET=1;

紅三兵








在下降趨勢之中,出現了第一個長紅的K線,次日開低約在第一長紅日的中點上方,而收盤時指數再度以長紅作收,第三日的走勢則與第二日的走勢如出一轍。這種情形的發生,起因於空頭的力量尚未完全化解,因此,賣壓使得第二日與第三日的開盤價都較低,但這二日都持續第一日的長紅走勢,顯示出多方的力道已經主導整個趨勢,原來的空頭走勢已被扭轉。三烏鴉的假設則與三白兵相反。
1.連續三日皆為長紅(或長黑),而且每一天的收盤價皆比前一日高(或低)
2.第二日與第三日的開盤價皆在前一日的實體內。
3.每日的收盤價皆應該在當日的最高價(或最低價)附近。



蜻蜓十字線





{
[檔名:] 紅三兵 [資料夾:] 酒田戰法 [適用方向]
[說明:] 連續三根上漲實體K棒

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( close - open ) >(high -low) * 0.75 ;//狀況1: 實體上漲K棒
condition2= ( close[1] - open[1] ) >(high[1] -low[1]) * 0.75 ;//狀況2: 實體上漲K棒
condition3= ( close[2] - open[2] ) >(high[2] -low[2]) * 0.75 ;//狀況3: 實體上漲K棒
condition4= close > close[1] ;//狀況4: 上漲
condition5= close[1] > close[2] ;//狀況5: 上漲
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
and condition5
THEN RET=1;


遭遇線




{
[檔名:] 多頭遭遇 [資料夾:] 酒田戰法 [適用方向]
[說明:] 前期收黑K棒 當期開低走高紅棒嘗試反攻昨收

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= (open[1] - close[1] ) >(high[1] -low[1]) * 0.75 ;//狀況1: 前期出黑K棒
condition2= close[1] < close[2] ;//狀況2: 前期收跌
condition3= ( close - open ) >(high -low) * 0.75 ;//狀況3: 當期收紅K棒
condition4= open  < close[1] and close < close[1] ;//狀況4: 開低且收跌
condition5= low <  low[1] ;//狀況5: 破前期低點
{結果判斷}
IF
condition1
and condition2
and condition3
and condition4
and condition5
THEN RET=1;


{
[檔名:] 空頭遭遇 [資料夾:] 酒田戰法 [適用方向]
[說明:] 紅棒後 開高走低守平盤

[資料讀取] 10
[最大引用] 5
}
{判斷狀況}
condition1= ( close[1] - open[1] ) > (high[1] -low[1]) * 0.5 ;//狀況1: 前期實體紅棒
condition2= ( open - close ) > (high -low) * 0.5 ;//狀況2: 當期實體黑棒
condition3= open > high[1] and close > close[1] ;//狀況3: 開過昨高收守平盤
{結果判斷}
IF
condition1
and condition2
and condition3
THEN RET=1;

長十字



一紅包三黑



一根中長紅,收在過去三天黑棒高點之上,短線還有更高點,相反的,一根中長黑,收在過去三天中小紅棒的下頭,代表過去三天做多的都被套牢,短線仍有低價。這個現象如果是發生在一個趨勢發展的修正波中,可信度更高。