From 2e511ceddcf81c1839f0bbeb9064ac60e957146c Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Mon, 1 Dec 2025 08:39:09 +0100 Subject: [PATCH] config: Update adaptive leverage to 10x high-quality, 5x low-quality MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit User requirements (Dec 1, 2025): - Base leverage: 5x (SOLANA_LEVERAGE=5, unchanged) - High-quality signals (Q90+ SHORT, Q95+ LONG): 10x leverage - Low-quality signals (Q80-89 SHORT, Q90-94 LONG): 5x leverage Changes: - HIGH_QUALITY_LEVERAGE: 5 → 10 - LOW_QUALITY_LEVERAGE: 1 → 5 Expected behavior: - Regular signals: 5x leverage (60 × 5 = ,800 position) - High-quality signals: 10x leverage (60 × 10 = ,600 position) Container restarted and config active. --- .env | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.env b/.env index c7efd69..df832e3 100644 --- a/.env +++ b/.env @@ -392,17 +392,17 @@ USE_TRAILING_STOP=true TRAILING_STOP_PERCENT=0.5 TRAILING_STOP_ACTIVATION=0.4 MIN_SIGNAL_QUALITY_SCORE=91 -MIN_SIGNAL_QUALITY_SCORE_LONG=90 # Nov 23, 2025: Longs have 71.4% WR at quality 90-94 (+$44.77 on 7 trades) -MIN_SIGNAL_QUALITY_SCORE_SHORT=80 # Nov 23, 2025: Shorts toxic at quality 90-94 (28.6% WR, -$553.76 on 7 trades) +MIN_SIGNAL_QUALITY_SCORE_LONG=90 +MIN_SIGNAL_QUALITY_SCORE_SHORT=80 # Adaptive Leverage System (Nov 24, 2025) -# ENABLED Nov 28, 2025: 5x for high-quality signals (Q≥95 LONGs, Q≥90 SHORTs), 1x for borderline +# ENABLED Dec 1, 2025: 10x for high-quality signals (Q≥95 LONGs, Q≥90 SHORTs), 5x for borderline USE_ADAPTIVE_LEVERAGE=true -HIGH_QUALITY_LEVERAGE=5 -LOW_QUALITY_LEVERAGE=1 +HIGH_QUALITY_LEVERAGE=10 +LOW_QUALITY_LEVERAGE=5 QUALITY_LEVERAGE_THRESHOLD=95 SOLANA_ENABLED=true SOLANA_POSITION_SIZE=100 -SOLANA_LEVERAGE=1 +SOLANA_LEVERAGE=5 SOLANA_USE_PERCENTAGE_SIZE=true ETHEREUM_ENABLED=false ETHEREUM_POSITION_SIZE=50