Skip to content

Commit a80831b

Browse files
committed
Add release notes for v1.0.1
1 parent b088857 commit a80831b

1 file changed

Lines changed: 153 additions & 0 deletions

File tree

.github/release-notes/v1.0.1.md

Lines changed: 153 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,153 @@
1+
# Version 1.0.1 - Intelligent Trend Detection
2+
3+
## 🎯 Major Enhancement: Smart Trend Detection
4+
5+
This release introduces **intelligent trend detection** using the industry-standard 50/200 moving average system, dramatically improving signal quality by ensuring patterns only appear when they have predictive value.
6+
7+
## ✨ What's New
8+
9+
### Dual Moving Average Trend Detection (50/200 MA)
10+
11+
The study now uses a sophisticated dual MA system for reliable trend identification:
12+
13+
- **Fast MA (50-period)**: Provides faster trend confirmation
14+
- **Slow MA (200-period)**: The gold standard for trend direction
15+
- **MA Slope Analysis**: Detects rising/falling trends
16+
- **MA Alignment**: Confirms trend strength (50 above/below 200)
17+
- **Configurable Threshold**: Price must be 0.5% away from 200MA by default
18+
19+
### Context-Aware Pattern Filtering
20+
21+
Patterns now only appear when market conditions make them meaningful:
22+
23+
**Bullish Reversals** → Only in downtrends
24+
- Hammer, Inverted Hammer, Dragonfly Doji
25+
- Bullish Engulfing, Bullish Harami, Piercing Line
26+
- Morning Star, Three White Soldiers, Three Inside/Outside Up
27+
28+
**Bearish Reversals** → Only in uptrends
29+
- Shooting Star, Hanging Man, Gravestone Doji
30+
- Bearish Engulfing, Bearish Harami, Dark Cloud Cover
31+
- Evening Star, Three Black Crows, Three Inside/Outside Down
32+
33+
**Neutral Patterns** → All market conditions
34+
- Doji, Long-Legged Doji, Spinning Top
35+
36+
### Confirmation Patterns Toggle
37+
38+
New dedicated checkbox for confirmation patterns:
39+
- Three Inside Up
40+
- Three Inside Down
41+
- Three Outside Up
42+
- Three Outside Down
43+
44+
Independent control from general 3-bar patterns setting.
45+
46+
## 🔧 Improvements
47+
48+
### Visual Enhancements
49+
- **Cleaner Charts**: Bullish/bearish markers reduced to VERY_SMALL size
50+
- **Better Readability**: Neutral patterns remain MEDIUM size for visibility
51+
52+
### Better Defaults
53+
- **Trend Threshold**: Increased from 0.1% to 0.5% for better reliability
54+
- **Optimal Settings**: Pre-configured for immediate use with industry-standard values
55+
56+
### Pattern Tooltips
57+
- Added pattern meanings from The Chart Guys
58+
- Hover over any marker to see pattern description
59+
60+
## 📊 Configuration
61+
62+
### New Settings
63+
64+
| Setting | Default | Range | Description |
65+
|---------|---------|-------|-------------|
66+
| Require Correct Trend Context | ✓ Enabled | On/Off | Filter patterns by trend |
67+
| Fast MA Period | 50 | 10-100 | Fast moving average |
68+
| Slow MA Period | 200 | 100-300 | Slow moving average |
69+
| Trend Threshold % | 0.5% | 0.0-5.0% | Price deviation threshold |
70+
| Detect Confirmation Patterns | ✓ Enabled | On/Off | Three Inside/Outside toggle |
71+
72+
## 🚀 Benefits
73+
74+
### Reduced False Signals
75+
Without trend filtering, you might see:
76+
- "Three Outside Down" (bearish reversal) in a downtrend → meaningless ❌
77+
- "Morning Star" (bullish reversal) in an uptrend → meaningless ❌
78+
79+
With trend filtering, patterns only appear when they're actually useful ✅
80+
81+
### Improved Signal Quality
82+
- **Higher Accuracy**: Patterns align with market context
83+
- **Better Timing**: Reversal signals appear at trend extremes
84+
- **Cleaner Charts**: Less clutter, more meaningful markers
85+
86+
### Flexible Configuration
87+
- **Strict Mode** (0.1-0.2% threshold): Fewer, higher-quality signals
88+
- **Balanced Mode** (0.5% threshold): Recommended default
89+
- **Relaxed Mode** (1.0%+ threshold): More signals in ranging markets
90+
91+
## 📥 Installation
92+
93+
### New Users
94+
95+
1. Download `CandlestickPatterns.jar` from this release
96+
2. Open MotiveWave → Study → All Studies → Import
97+
3. Select the downloaded JAR file
98+
4. Add "Candlestick Patterns" to your chart
99+
100+
### Upgrading from v1.0.0
101+
102+
1. Download the new `CandlestickPatterns.jar`
103+
2. Remove the old version: Study → All Studies → Delete
104+
3. Import the new version: Study → All Studies → Import
105+
4. Re-add to your chart with enhanced trend detection enabled!
106+
107+
## 🔍 Technical Details
108+
109+
### Trend Detection Algorithm
110+
111+
```
112+
UPTREND requires:
113+
- Price > 0.5% above 200MA
114+
- 200MA rising (positive slope)
115+
- 50MA above 200MA
116+
117+
DOWNTREND requires:
118+
- Price > 0.5% below 200MA
119+
- 200MA falling (negative slope)
120+
- 50MA below 200MA
121+
122+
SIDEWAYS when:
123+
- Flat 200MA
124+
- Conflicting signals
125+
- Price within threshold
126+
```
127+
128+
### Pattern Categorization
129+
130+
Patterns are intelligently categorized by their trend requirement:
131+
- **Downtrend Patterns**: 14 bullish reversals
132+
- **Uptrend Patterns**: 14 bearish reversals
133+
- **Neutral Patterns**: 3 indecision patterns + 2 continuation patterns
134+
135+
## 📚 Documentation
136+
137+
- [README.md](../../README.md) - Complete usage guide
138+
- [PATTERNS.md](../../PATTERNS.md) - All 33 patterns explained
139+
- [CHANGELOG.md](../../CHANGELOG.md) - Version history
140+
141+
## 🙏 Credits
142+
143+
- Pattern definitions: [The Chart Guys](https://www.chartguys.com/candlestick-pattern-cheat-sheet)
144+
- Trend detection approach: Industry-standard 50/200 MA system
145+
- Built for: [MotiveWave](https://www.motivewave.com/)
146+
147+
## 📝 Full Changelog
148+
149+
See [CHANGELOG.md](../../CHANGELOG.md#101---2025-11-17) for complete details.
150+
151+
---
152+
153+
**Download `CandlestickPatterns.jar` below and start trading with intelligent, trend-aware pattern detection!**

0 commit comments

Comments
 (0)