Install
openclaw skills install probtradePolymarket prediction markets: analytics, trading, hot markets, price movements, top traders, and market search. Powered by prob.trade.
openclaw skills install probtradeGet real-time prediction market intelligence and trade on Polymarket from prob.trade. Browse trending markets, discover price movements, see what top traders are doing, and place orders.
All commands require a prob.trade API key. Configure it in ~/.openclaw/skills/probtrade/config.yaml:
api_key: "ptk_live_..."
api_secret: "pts_..."
Generate keys at https://app.prob.trade (Settings → API Keys). Free account required.
Use the scripts below to query the prob.trade Public API.
Get a quick snapshot of the prediction market landscape:
python3 {baseDir}/scripts/probtrade.py overview
Returns: market stats, top 10 hot markets, breaking price movements, and newest markets.
See the most actively traded markets right now:
python3 {baseDir}/scripts/probtrade.py hot [--limit N]
Markets with the biggest price movements in the last 24 hours:
python3 {baseDir}/scripts/probtrade.py breaking [--limit N]
Recently created prediction markets:
python3 {baseDir}/scripts/probtrade.py new [--limit N] [--days N]
Find markets about a specific topic:
python3 {baseDir}/scripts/probtrade.py search "Trump" [--limit N]
Get detailed information about a specific market by its condition ID:
python3 {baseDir}/scripts/probtrade.py market <condition_id>
Category breakdown and overall market counts:
python3 {baseDir}/scripts/probtrade.py stats
See the most profitable prediction market traders:
python3 {baseDir}/scripts/probtrade.py traders [--limit N] [--sort pnl|roi|volume|winRate] [--period all|30d|7d|24h]
Trade on Polymarket using the same API key configured above.
python3 {baseDir}/scripts/probtrade.py order --market <condition_id> --side BUY --outcome Yes --type LIMIT --price 0.55 --amount 10
python3 {baseDir}/scripts/probtrade.py cancel --order-id <orderId>
python3 {baseDir}/scripts/probtrade.py positions
python3 {baseDir}/scripts/probtrade.py balance
python3 {baseDir}/scripts/probtrade.py orders
Security: API secret never leaves your machine. Only HMAC signatures are sent. No withdraw/transfer endpoints exist.
All commands output structured JSON for easy parsing by AI agents. Key fields:
https://app.prob.trade/markets/{condition_id}https://app.prob.trade/traders/{address}brew install python@3