Fix forced-paper execution semantics and add minimum forced notional control

This commit is contained in:
2026-02-27 02:35:22 -08:00
parent 1da0c04242
commit 4dcfc79635
3 changed files with 18 additions and 14 deletions

View File

@@ -21,6 +21,7 @@ class Settings:
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"
force_paper_min_usd = float(os.getenv("FORCE_PAPER_MIN_USD", "10"))
ollama_url = os.getenv("OLLAMA_URL", "http://10.30.20.110:11434")
ollama_curator_model = os.getenv("OLLAMA_CURATOR_MODEL", "gemma3:latest")