lowered take profit
This commit is contained in:
@@ -80,7 +80,7 @@ All settings live in [`config.py`](config.py). The most commonly tuned values:
|
|||||||
| `max_positions` | 5 | Maximum concurrent holdings |
|
| `max_positions` | 5 | Maximum concurrent holdings |
|
||||||
| `trailing_stop_pct` | 8.0 | Sell if price drops this % below its peak |
|
| `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 |
|
| `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 |
|
| `max_hold_hours` | 72 | Exit after this many hours regardless |
|
||||||
| `paper_trading` | True | Set to False for live orders |
|
| `paper_trading` | True | Set to False for live orders |
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ class Config:
|
|||||||
hard_stop_pct: float = 12.0
|
hard_stop_pct: float = 12.0
|
||||||
|
|
||||||
# Take profit: sell when price is this % above entry.
|
# 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.
|
# Time limit: sell after this many hours if no stop/TP was hit.
|
||||||
# Prevents dead money from tying up capital indefinitely.
|
# Prevents dead money from tying up capital indefinitely.
|
||||||
|
|||||||
Reference in New Issue
Block a user