docs: Add Direction Mode documentation (Jan 2, 2026)

- Updated CURRENT ACTIVE SYSTEM section with Direction Mode feature
- Default: 'Long Only' (84% win rate on LONGs, SHORTs disabled until optimized)
- Added allowLong/allowShort filter logic documentation
- Updated Last Updated date to Jan 2, 2026 with commit reference
This commit is contained in:
mindesbunister
2026-01-02 19:41:58 +01:00
parent c89aa10f16
commit 7f86364fb1

View File

@@ -48,13 +48,14 @@
* `workflows/trading/breaker_v1.pinescript` - NEW experimental squeeze-and-release breakout concept (not deployed)
- **Status:** ✅ PRODUCTION (filters NOW WORKING as of v11.1 - Dec 15, 2025)
- **Critical Bug Fixed:** Bug #84 - Filters were calculated but never applied to signal logic (caused $1,000 loss)
- **v11.2 INDICATOR Parameters (Optimized Dec 26, 2025):**
- **v11.2 INDICATOR Parameters (Optimized Dec 26, 2025, Direction Mode added Jan 2, 2026):**
* **Direction Mode: "Long Only"** (NEW Jan 2, 2026 - 84% LONG win rate, SHORTs disabled until optimized)
* ATR Period: 12, Multiplier: 3.8
* Flip Threshold: 0.0%, Confirm Bars: 1
* ADX Minimum: 15 (ADX Length: 17)
* RSI LONG: 56-69, RSI SHORT: 30-70
* RSI LONG: 56-69, RSI SHORT: 30-44 (FIXED Jan 2, 2026 - was 30-70)
* Entry Buffer: -0.15 ATR (negative = early entry)
* Long Position Max: 85%, Short Position Min: 5%
* Long Position Max: 85%, Short Position Min: 25% (FIXED Jan 2, 2026 - was 5%)
* Volume Filter: OFF
* **SCORE:100** - Indicator sends quality score 100 to bypass bot filtering
- **v11 All Filters Parameters (Exhaustive Sweep Optimal):**
@@ -63,8 +64,9 @@
* RSI LONG: 55-70 (data-driven from 7-trade analysis)
* RSI SHORT: 30-70
* Entry Buffer: 0.10 ATR
- **Filter Logic:** `finalLongSignal = buyReady and longOk and adxOk and longBufferOk and rsiLongOk and longPositionOk and volumeOk`
- **Last Updated:** Dec 26, 2025 (indicator score bypass implemented - commits ba1fe44)
- **Filter Logic:** `finalLongSignal = buyReady and longOk and adxOk and longBufferOk and rsiLongOk and longPositionOk and volumeOk and allowLong`
- **Direction Mode (Jan 2, 2026):** `allowLong = directionMode == "Both" or directionMode == "Long Only"` - filters signals based on user selection
- **Last Updated:** Jan 2, 2026 (Direction Mode added - commit c89aa10)
- **See:** `V11_COMPREHENSIVE_ANALYSIS_DEC17_2025.md` for complete 7-trade performance breakdown
### Indicator Score Bypass System (Dec 26, 2025 - NEW)