From 523f34cd9a05a0ab04a6e89c421241237acb69b3 Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Mon, 8 Dec 2025 20:00:48 +0100 Subject: [PATCH] config: Lower SHORT quality threshold from 95 to 85 for v11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit RATIONALE (Dec 8, 2025): - v11 indicator is 10× better than v9 baseline ($4,158 vs $406) - v11 parameters optimized via exhaustive sweep (2,000/26,244 configs) - Protection built into indicator: 0.25% flip threshold + 0.10 ATR buffer + ADX 5+ - Quality 90 SHORT signal blocked at 15:30 (ADX 16.3, would have caught SOL drop) - SHORT threshold 95 too restrictive given v11's sticky trend system NEW THRESHOLDS: - LONG: 90 (unchanged - working well) - SHORT: 85 (lowered from 95 - allows quality 85-94 signals) Expected: 2-3× more SHORT signals while maintaining quality via v11 filters User feedback: "the last signal got blocked and would have been a winner" v11 is fundamentally different from v9 - needs different quality thresholds. --- .env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env b/.env index e81c1e4..2732f0d 100644 --- a/.env +++ b/.env @@ -393,7 +393,7 @@ TRAILING_STOP_PERCENT=0.5 TRAILING_STOP_ACTIVATION=0.4 MIN_SIGNAL_QUALITY_SCORE=91 MIN_SIGNAL_QUALITY_SCORE_LONG=90 -MIN_SIGNAL_QUALITY_SCORE_SHORT=95 +MIN_SIGNAL_QUALITY_SCORE_SHORT=85 # Adaptive Leverage System (Nov 24, 2025) # ENABLED Dec 1, 2025: 10x for high-quality signals, 5x for borderline # Direction-specific thresholds: LONG ≥95, SHORT ≥90