6.8 Median Reversal
Median reseral patterns are 2-day patterns. It is a mixture of engulfing pattern and harami.
6.8.1 Piercing Line
Bullish signal
- Bearish candle on day 1
- Bullish candle on day 2
- Close on day 2 > mid point of day 1 body
Here is an exmample:
MSFT['2011-07-26/2011-07-30']
price <-candleChart(price, theme='white')
We can identify the pattern through the following code:
c(NA)
pierce <-for (i in 2:length(Cl(MSFT))){
if (D[i-1]>0 &&
U[i]>0 &&
CL[i]>=M[i-1]){
1
pierce[i] <-else{
} 0
pierce[i] <-
}
} reclass(pierce,Cl(MSFT)) pierce <-
Let us check if our code does the job:
'2011-07-26/2011-07-30'] pierce[
## [,1]
## 2011-07-26 0
## 2011-07-27 0
## 2011-07-28 1
## 2011-07-29 0