Add minute-level trade scheduler and enable chaos-mode profile support

This commit is contained in:
2026-02-27 13:41:50 -08:00
parent 4dcfc79635
commit 9956f421b0
3 changed files with 6 additions and 1 deletions

View File

@@ -18,6 +18,7 @@ class Settings:
slippage_bps = float(os.getenv("SLIPPAGE_BPS", "5"))
trade_interval_hours = int(os.getenv("TRADE_INTERVAL_HOURS", "2"))
trade_interval_minutes = int(os.getenv("TRADE_INTERVAL_MINUTES", "0"))
curate_interval_minutes = int(os.getenv("CURATE_INTERVAL_MINUTES", "30"))
timezone = os.getenv("TIMEZONE", "America/Los_Angeles")
force_paper_trades = os.getenv("FORCE_PAPER_TRADES", "true").lower() == "true"