بنقرة واحدة
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.