Add force paper trading mode to ensure activity during testing

This commit is contained in:
2026-02-26 18:00:55 -08:00
parent dbf6bf4e73
commit 1da0c04242
3 changed files with 8 additions and 1 deletions

View File

@@ -20,6 +20,7 @@ class Settings:
trade_interval_hours = int(os.getenv("TRADE_INTERVAL_HOURS", "2"))
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"
ollama_url = os.getenv("OLLAMA_URL", "http://10.30.20.110:11434")
ollama_curator_model = os.getenv("OLLAMA_CURATOR_MODEL", "gemma3:latest")