From e37072953b743ded6acba5f715e438c194d00cc0 Mon Sep 17 00:00:00 2001 From: jerick Date: Mon, 4 May 2026 09:49:41 -0400 Subject: [PATCH] lowered take profit --- README.md | 2 +- config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e4c6def..5a32e1a 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ All settings live in [`config.py`](config.py). The most commonly tuned values: | `max_positions` | 5 | Maximum concurrent holdings | | `trailing_stop_pct` | 8.0 | Sell if price drops this % below its peak | | `hard_stop_pct` | 12.0 | Sell if price drops this % below entry | -| `take_profit_pct` | 25.0 | Sell when this % profit is reached | +| `take_profit_pct` | 5.0 | Sell when this % profit is reached | | `max_hold_hours` | 72 | Exit after this many hours regardless | | `paper_trading` | True | Set to False for live orders | diff --git a/config.py b/config.py index 11cfa6e..1d2b851 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 = 25.0 + take_profit_pct: float = 5.0 # Time limit: sell after this many hours if no stop/TP was hit. # Prevents dead money from tying up capital indefinitely.