Install
openclaw skills install prediction-fair-value-templateScan Simmer markets for a configurable fair-value edge and buy YES or NO when the market price diverges enough from your thesis.
openclaw skills install prediction-fair-value-templateThis skill scans active Simmer-indexed markets matching a search query, compares the current market price to your fair probability, and places a trade only when the gap is large enough to justify action.
This is a template. The default signal is a user-supplied fair probability plus a keyword market search. Remix it with your own model outputs, news signals, research pipeline, or external data. The skill handles discovery, sizing, context checks, redemption, and trade execution plumbing.
On each run, the skill:
MARKET_QUERY.FAIR_PROBABILITY.MIN_EDGE.MIN_EDGE.simmer_sdk.sizing.size_position().This skill follows Simmer's manual build pattern for ClawHub:
SKILL.mdclawhub.jsontrade_skill.pySIMMER_API_KEY (required): Simmer API key from your dashboard.WALLET_PRIVATE_KEY (optional): Only needed for external-wallet self-custody mode on supported venues.MARKET_QUERY: Search term used to discover markets. Default: bitcoinFAIR_PROBABILITY: Your estimated YES probability from 0 to 1. Default: 0.60MIN_EDGE: Minimum pricing gap required to act. Default: 0.05MAX_MARKETS: Maximum number of markets to inspect per run. Default: 5MAX_SLIPPAGE_PCT: Skip trades if estimated slippage exceeds this threshold. Default: 0.15TRADING_VENUE: sim or polymarket. Default: simSIMMER_ENABLE_LIVE: Set to true to allow live order placement in automations. Default: falsesource and skill_slug.reasoning.Dry-run:
export SIMMER_API_KEY="sk_live_..."
python trade_skill.py
Live mode:
export SIMMER_API_KEY="sk_live_..."
python trade_skill.py --live
Custom thesis:
export MARKET_QUERY="fed rates"
export FAIR_PROBABILITY="0.72"
export MIN_EDGE="0.06"
export TRADING_VENUE="sim"
python trade_skill.py
FAIR_PROBABILITY with a model output.From inside this skill folder:
npx clawhub@latest publish . --slug prediction-fair-value-template --version 1.0.0
Always publish with an explicit --slug.