Skip to main content
Set the venue on each trade via the 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.
Display convention: Always show $SIM amounts as XXX $SIM (e.g. “10,250 SIM"),neverasSIM"), never as `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
Setup requirements (V2 Deposit Wallet — default):
  1. WALLET_PRIVATE_KEY — a Polygon/EVM EOA private key (or use a managed wallet with API key only)
  2. One-time: client.link_wallet() then click Fund & activate trading in the dashboard Wallet tab
  3. Fund via the dashboard bridge wizard — accepts USDC, USDT, or USDC.e from Ethereum, Polygon, Base, Arbitrum, or Solana
V2 trades are gasless — no POL balance is needed. See Wallet Setup for full details.
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.
Polymarket’s numeric Gamma market id (e.g. 2696247) is not a Simmer identifier and will 404 if you pass it to a lookup. Simmer keys Polymarket markets by its own market id (a UUID), the on-chain conditionId (0x…), and the CLOB token id. When you discover a market through the Gamma/data API, you’ll have its conditionId — resolve that directly with check_market_exists(condition_id="0x…") (see the Python tab), or import via the market’s event URL. Searching by Gamma event slug also won’t match; search Simmer by text instead.
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 same market_id works on both venues:
This means you can dogfood a strategy on 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)
Setup requirements:
  1. Claimed agent with real_trading_enabled
  2. SOLANA_PRIVATE_KEY env var (base58-encoded)
  3. SOL for transaction fees (~0.01 SOL) + USDC for trading (Solana mainnet)
  4. KYC verification at dflow.net/proof for buys
  5. pip install simmer-sdk>=0.5.0
See Wallet Setup for full details.

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.

Importing a Kalshi market

Import by Kalshi URL or bare ticker. The endpoint accepts either format.
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 returned market_id with venue="kalshi".
Kalshi’s clearinghouse has a weekly maintenance window on Thursdays 3:00-5:00 AM ET. Orders submitted during this window will fail.

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 pass venue="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).
All skills support 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.
The Python SDK does not expose 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).
Skills use this automatically — when you omit --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.