一键导入
context-research-mispricing-finder
Identify markets where the latest oracle quote diverges from the market price
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Identify markets where the latest oracle quote diverges from the market price
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create, cancel, or manage multiple orders in a single batch
Place and manage prediction market orders on Context Markets
Build an embeddable single-market prediction widget with buy/sell buttons
Build a portfolio dashboard showing positions, P&L, balances, and claimable winnings
Build prediction market frontends with the Context React SDK
Scaffold a full prediction market trading UI with market list, orders, and portfolio
| name | context-research-mispricing-finder |
| description | Identify markets where the latest oracle quote diverges from the market price |
Find markets where the latest oracle quote diverges significantly from the market price — the primary signal for trading opportunities.
The user wants to find markets where the oracle disagrees with the market, suggesting the price is wrong.
List active markets — context_list_markets({ status: "active", sortBy: "volume", limit: 20 }) to get liquid markets worth analyzing.
Get oracle evidence — context_get_oracle returns the oracle's evidence summary and confidence context.
Get the numeric oracle quote — there is no MCP tool for this yet. Use the SDK:
ctx.markets.latestOracleQuote(marketId) for the latest quotectx.markets.oracleQuotes(marketId) for quote historyGet the market price — context_get_quotes returns the current YES last/bid/ask.
Compare — calculate divergence: |latest_oracle_quote - yes_last_price|
Simulate before acting — for divergences > 10c, call context_simulate_trade to check if the opportunity survives slippage at a realistic trade size.
Check the oracle's reasoning — the oracle response includes a summary of its evidence and confidence. If confidence is low or the reasoning seems stale, the divergence may not be actionable.