added coin cooldown to stop coin chase

This commit is contained in:
2026-05-04 11:09:17 -04:00
parent 2ce401c487
commit 61987482e1
4 changed files with 51 additions and 13 deletions

View File

@@ -41,6 +41,10 @@ class Config:
# Prevents dead money from tying up capital indefinitely.
max_hold_hours: int = 72
# Cooldown: hours to wait before re-buying a pair that was just sold.
# Prevents immediately re-entering a coin whose momentum has stalled or reversed.
sold_cooldown_hours: float = 4.0
# ── Execution ────────────────────────────────────────────────────────────
# ALWAYS start with paper_trading=True and verify behaviour before going live.
# Set to False only after you understand the bot's decisions.