From 64da359a9e8bacb836079c0c0471ea890ec83a1e Mon Sep 17 00:00:00 2001 From: jerick Date: Mon, 4 May 2026 16:16:01 -0400 Subject: [PATCH] Changed profit to 3% --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 10512ce..dc58198 100644 --- a/config.py +++ b/config.py @@ -35,7 +35,7 @@ class Config: hard_stop_pct: float = 12.0 # Take profit: sell when price is this % above entry. - take_profit_pct: float = 5.0 + take_profit_pct: float = 3.0 # Time limit: sell after this many hours if no stop/TP was hit. # Prevents dead money from tying up capital indefinitely.