원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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.