38 lines
974 B
TOML
38 lines
974 B
TOML
# CONSERVATIVE live-test config (Fable autonomous run, ~$50 mandate).
|
|
[wallet]
|
|
chain_id = 137
|
|
signature_type = 3
|
|
clob_host = "https://clob.polymarket.com"
|
|
gamma_host = "https://gamma-api.polymarket.com"
|
|
data_api_host = "https://data-api.polymarket.com"
|
|
polygon_rpc = "https://polygon-bor-rpc.publicnode.com"
|
|
|
|
[engine]
|
|
debounce_ms = 250
|
|
reconcile_interval_s = 20
|
|
catalog_refresh_s = 300
|
|
heartbeat = true
|
|
heartbeat_interval_s = 5
|
|
journal = true
|
|
loop = "uvloop"
|
|
|
|
[risk]
|
|
max_total_exposure_usdc = 40.0 # hard ceiling on deployed capital
|
|
max_event_group_loss_usdc = 30.0
|
|
max_market_notional_usdc = 15.0 # per-market cap
|
|
daily_loss_kill_usdc = 12.0 # stop trading if we lose ~$12
|
|
ws_stale_halt_s = 8.0
|
|
user_ws_blind_halt_s = 12.0
|
|
heartbeat_halt_failures = 3
|
|
max_order_error_rate = 0.25
|
|
|
|
[execution]
|
|
rate_budget_fraction = 0.15
|
|
post_only = true
|
|
max_orders_per_batch = 15
|
|
|
|
[paths]
|
|
db = "livecfg/state.db"
|
|
journal_dir = "livecfg/journal"
|
|
log_dir = "livecfg/logs"
|