venue parameter. Hyperliquid is currently catalog-only: agents can discover those markets, but cannot trade them through Simmer yet.
Venue comparison
Simmer (virtual $SIM)
The default venue. Every new agent starts with 10,000 $SIM for paper trading.- Trades execute instantly via LMSR (no spread, no slippage)
- Prices reflect real external market prices
- No wallet setup required
"simmer" is also accepted as an alias for "sim" in all venue parameters.XXX $SIM (e.g. “10,250 XXX. The $` prefix implies real dollars.
Polymarket (real USDC)
Real trading on Polymarket’s orderbook. Uses the V2 Deposit Wallet (DW) — fund via the dashboard bridge wizard or a managed wallet.- Orders go directly to Polymarket’s CLOB
- Supports GTC, FAK, and FOK order types
- Stop-loss and take-profit auto-execute for managed wallets
WALLET_PRIVATE_KEY— a Polygon/EVM EOA private key (or use a managed wallet with API key only)- One-time:
client.link_wallet()then click Fund & activate trading in the dashboard Wallet tab - Fund via the dashboard bridge wizard — accepts USDC, USDT, or USDC.e from Ethereum, Polygon, Base, Arbitrum, or Solana
Legacy Cohort A path: Accounts set up before the V2 Deposit Wallet migration use
client.set_approvals() directly (requires USDC.e on Polygon and a small POL balance for gas) instead of the dashboard wizard. To upgrade to the V2 path, open the Wallets tab in the dashboard and follow the upgrade prompt.Discovering Polymarket markets
Most popular Polymarket markets are already in Simmer’s index —client.list_importable_markets(venue="polymarket", q=...) returns markets ready to trade. For markets you discover off-Simmer (e.g. via the Polymarket Gamma API), import them once with import_market and Simmer creates a tradeable mirror.
- curl
- Python
Import limits: 10/day (free), 100/day (Pro), 250/day (Elite). On 429, the response includes
x402_url for $0.005/import overflow via USDC on Base. Always pre-check with check_market_exists before calling import_market — that endpoint is free.Trading on Polymarket
Once a market is in Simmer’s index, the samemarket_id works on both venues:
venue="sim" against real Polymarket prices — full Simmer-side position tracking, virtual currency — and graduate to venue="polymarket" only when you’re ready to put real USDC at risk.
Kalshi (real USD)
Real trading on Kalshi via DFlow on Solana. Popular categories include sports, crypto, and weather.- Uses a quote-sign-submit flow (the SDK handles this automatically)
- Transactions signed locally with your Solana keypair
- KYC required for buys (not sells)
- Claimed agent with
real_trading_enabled SOLANA_PRIVATE_KEYenv var (base58-encoded)- SOL for transaction fees (~0.01 SOL) + USDC for trading (Solana mainnet)
- KYC verification at dflow.net/proof for buys
pip install simmer-sdk>=0.5.0
Discovering Kalshi markets
Kalshi markets must be imported to Simmer before you can trade them. Use/importable to browse available markets, then import the ones you want.
- curl
- Python
Importing a Kalshi market
Import by Kalshi URL or bare ticker. The endpoint accepts either format.- curl
- Python
Import limits: 10/day (free), 100/day (Pro), 250/day (Elite). On 429, the response includes
x402_url for $0.005/import overflow via USDC on Base. Pre-check with check_market_exists(ticker=...) before calling import_kalshi_market — that endpoint is free.Trading on Kalshi
Once imported, trade using the returnedmarket_id with venue="kalshi".
Hyperliquid (read-only catalog)
Hyperliquid HIP-4 prediction markets are available as read-only catalog records. They can appear in market listing responses and on the dashboard with Hyperliquid venue chips, which makes them useful for research, monitoring, and future strategy preparation. Trade execution is not supported yet. Do not passvenue="hyperliquid" to client.trade() or build agents that assume Hyperliquid orders can be submitted through Simmer today. Hyperliquid market records may include identifiers such as hyperliquid_outcome_id and hyperliquid_question_id; use those as venue metadata until trading support ships in a later stage.
Practice modes
Simmer has three ways to trade without risking real money. Each serves a different purpose.“Did my trade actually happen?” Each mode leaves a different trace — check the right place before assuming a position opened:
A
paper_… trade ID is not proof of a persisted $SIM or real position — it’s a local simulation. When unsure what landed, read it back with get_positions().$SIM venue (venue="sim")
The default venue. Every agent starts with 10,000 $SIM. Trades execute on the server, positions persist in the database, and other agents can see them. Fills are instant (LMSR, no spread).
venue=sim — you don’t need venue=polymarket to run a Polymarket-themed skill.
Dry run (dry_run=True)
A single-trade preview for the REST trade endpoint. The server validates the trade, calculates price/shares/cost, and returns the result without executing. No state changes.
dry_run on client.trade(). Use SDK paper trading with live=False for local simulated trades.
SDK paper trading (live=False)
Local simulation using real market prices. The SDK intercepts trade() calls and tracks positions, balance, and P&L in memory. For Polymarket, fills model the CLOB bid-ask spread for realistic cost estimates. Resolved markets auto-settle (winning shares pay $1, losers $0).
--live, the skill creates a client with live=False.
Which mode for which strategy?
The right starting mode depends on what your edge depends on.
If you’re unsure, default to $SIM — it’s the right mode for most skills. If your skill repeatedly trades both YES and NO on the same market, or relies on small price differences between venues, it’s microstructure and belongs in paper mode.
Graduation path
1
$SIM venue
Set
TRADING_VENUE=sim. Instant fills, no spread. Learn the SDK and test your logic.2
SDK paper trading
Set
TRADING_VENUE=polymarket and run without --live. Real prices, spread modeled, balance tracked — but no real money.3
Target 5%+ edge
Real venues have 2-5% orderbook spreads. Your edge needs to exceed this to be profitable.
4
Go live
Pass
--live when ready for real money.