From 66d3b2481ac48d0093338c119256c1a0082e56ea Mon Sep 17 00:00:00 2001 From: jerick Date: Tue, 19 May 2026 23:24:51 -0400 Subject: [PATCH] Changed volume and raised profit take --- config.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index a683fd6..1284428 100644 --- a/config.py +++ b/config.py @@ -12,8 +12,9 @@ class Config: quote_currency: str = "USD" # Volume filter: minimum 24h traded volume in USD - # Filters out illiquid/dead coins - min_volume_usd: float = 500_000 + # Raised to $2M: analysis of losses showed every major losing trade + # (RAVE, DAG, ZEREBRO, PONKE, ELIZAOS, STORJ) was below this threshold + min_volume_usd: float = 2_000_000 # Momentum filter: 24h price change must be in this range # Below 3% = noise; above 15% = likely already overextended @@ -35,7 +36,8 @@ class Config: hard_stop_pct: float = 6.0 # Take profit: sell when price is this % above entry. - take_profit_pct: float = 3.0 + # Raised to 6%: avg win was only 3.8% vs avg loss of 8.1% — need better reward/risk + take_profit_pct: float = 6.0 # Time limit: sell after this many hours if no stop/TP was hit. # Prevents dead money from tying up capital indefinitely.