6.3 Doji
Doji is a one day pattern. There are three types of doji:
- doji
- dragonfly doji
- gravestone doji
Doji is a Japanese word. It means a crux or a cross.
6.3.1 Doji
Indecision signal: up and down forces are balanced
- long candle stick (High >> Low)
- narrow real body (Close ~ Open)
Here is an exmample:
MSFT['2011-07-08/2011-07-19']
price <-candleChart(price,theme='white')
We can identify the pattern through the following code:
0.1
delta <- c()
doji <-for (i in 1:N){
if (delta *WC[i]>BL[i]){
1
doji[i] <-else{
} 0
doji[i] <-
}
} reclass(doji,Cl(MSFT)) doji <-
Let us check if our code does the job:
'2011-07-08/2011-07-19'] doji[
## [,1]
## 2011-07-08 0
## 2011-07-11 1
## 2011-07-12 1
## 2011-07-13 1
## 2011-07-14 0
## 2011-07-15 0
## 2011-07-18 1
## 2011-07-19 0
6.3.2 Dragonfly Doji
Bullish signal: resist downward pressure
- long candle stick + narrow real body (Doji)
- short upper shadow (High ~ Close ~ Open)
Here is an exmample:
MSFT['2014-10-28/2014-11-03']
price <-candleChart(price,theme='white')
We can identify the pattern through the following code:
0.1
delta <- c()
d.doji <-for (i in 1:N){
if (delta*WC[i]>US[i] &&
doji[i]==1){
1
d.doji[i] <-else{
} 0
d.doji[i] <-
}
} reclass(d.doji,Cl(MSFT)) d.doji <-
Let us check if our code does the job:
'2014-10-28/2014-11-03'] d.doji[
## [,1]
## 2014-10-28 0
## 2014-10-29 0
## 2014-10-30 0
## 2014-10-31 1
## 2014-11-03 0