File size: 2,169 Bytes
a51f593 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | # Complete 1-Candle Patterns
Based on the core definitions, here are all the possible configurations for a single 1-candle pattern (Bullish and Bearish).
## Bullish Patterns (C > O)
### Bull_1
- **Definition**: High > Close > Open > Low. A standard bullish candle with both an upper and lower shadow (wick).
- **Logic**:
```text
H > C & O & L
C > O & L
O > L
```
### Bull_2
- **Definition**: Close = High > Open > Low. A bullish candle that closes precisely at its highest price, indicating strong upward momentum into the close (no upper wick).
- **Logic**:
```text
(C = H) > O & L
C > O & L
O > L
```
### Bull_3
- **Definition**: High > Close > Open = Low. A bullish candle that opened at its absolute lowest point, showing buyers dominated continually from the very beginning (no lower wick).
- **Logic**:
```text
H > C & O & L
C > O & L
O = L
```
### Bull_4
- **Definition**: (Close = High) > (Open = Low). A perfectly strong "Marubozu" bullish candle that opened at its low and closed perfectly at its high, without wicks.
- **Logic**:
```text
(C = H) > O & L
C > O & L
O = L
```
---
## Bearish Patterns (C < O)
### Bear_1
- **Definition**: High > Open > Close > Low. A standard bearish candle where the price varied heavily but ended below where it opened.
- **Logic**:
```text
L < C & O & H
C < O & H
O < H
```
### Bear_2
- **Definition**: High > Open > Close = Low. A bearish candle that closes exactly at its lowest point, showing selling pressure all the way through the end of the session (no lower wick).
- **Logic**:
```text
(C = L) < O & H
C < O & H
O < H
```
### Bear_3
- **Definition**: High = Open > Close > Low. A bearish candle that opens precisely at its high, suggesting selling pressure began instantly, producing no upper wick.
- **Logic**:
```text
L < C & O & H
C < O & H
O = H
```
### Bear_4
- **Definition**: (Open = High) > (Close = Low). A perfectly strong bearish "Marubozu" candle opening at its absolute high and closing at its absolute low, showing maximal bearish momentum and no wicks.
- **Logic**:
```text
(C = L) < O & H
C < O & H
O = H
```
|