Changed stop limits
This commit is contained in:
@@ -28,11 +28,11 @@ class Config:
|
|||||||
# ── Risk management ──────────────────────────────────────────────────────
|
# ── Risk management ──────────────────────────────────────────────────────
|
||||||
# Trailing stop: sell if price drops this % below its peak since purchase.
|
# Trailing stop: sell if price drops this % below its peak since purchase.
|
||||||
# Example: buy at $100, peaks at $130 → stop triggers at $119.60
|
# Example: buy at $100, peaks at $130 → stop triggers at $119.60
|
||||||
trailing_stop_pct: float = 8.0
|
trailing_stop_pct: float = 5.0
|
||||||
|
|
||||||
# Hard stop: sell if price drops this % below entry price, regardless of peak.
|
# Hard stop: sell if price drops this % below entry price, regardless of peak.
|
||||||
# Protects against gapping down before the trailing stop can trigger.
|
# Protects against gapping down before the trailing stop can trigger.
|
||||||
hard_stop_pct: float = 12.0
|
hard_stop_pct: float = 8.0
|
||||||
|
|
||||||
# Take profit: sell when price is this % above entry.
|
# Take profit: sell when price is this % above entry.
|
||||||
take_profit_pct: float = 3.0
|
take_profit_pct: float = 3.0
|
||||||
|
|||||||
Reference in New Issue
Block a user