Changed volume and raised profit take

This commit is contained in:
2026-05-19 23:24:51 -04:00
parent 3a2a8571e2
commit 66d3b2481a

View File

@@ -12,8 +12,9 @@ class Config:
quote_currency: str = "USD"
# Volume filter: minimum 24h traded volume in USD
# Filters out illiquid/dead coins
min_volume_usd: float = 500_000
# Raised to $2M: analysis of losses showed every major losing trade
# (RAVE, DAG, ZEREBRO, PONKE, ELIZAOS, STORJ) was below this threshold
min_volume_usd: float = 2_000_000
# Momentum filter: 24h price change must be in this range
# Below 3% = noise; above 15% = likely already overextended
@@ -35,7 +36,8 @@ class Config:
hard_stop_pct: float = 6.0
# Take profit: sell when price is this % above entry.
take_profit_pct: float = 3.0
# Raised to 6%: avg win was only 3.8% vs avg loss of 8.1% — need better reward/risk
take_profit_pct: float = 6.0
# Time limit: sell after this many hours if no stop/TP was hit.
# Prevents dead money from tying up capital indefinitely.