원클릭으로
context-research-market-scanner
Find interesting prediction markets by volume, trend, liquidity, or topic
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Find interesting prediction markets by volume, trend, liquidity, or topic
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-market-scanner |
| description | Find interesting prediction markets by volume, trend, liquidity, or topic |
Discover and rank active markets by trading interest, liquidity, and momentum.
The user wants to find interesting markets to research or trade — by topic, volume, trend, or liquidity.
List markets with filters — context_list_markets with params:
query: keyword search (e.g., "bitcoin", "election")status: "active": only tradeable marketssortBy: "volume" (most traded), "trending" (gaining momentum), "new" (recently created), "ending" (closing soon), "chance" (highest probability)limit: number of results (default varies)ctx.markets.list({ query: "bitcoin", status: "active", sortBy: "volume", limit: 10 })context markets list --status active --sort-by volume --limit 10Get quotes for each market — context_get_quotes to check bid-ask spreads:
Rank by your criteria:
Cross-reference with oracle — use context_get_oracle for the oracle's evidence summary. If you need a numeric oracle quote for comparison, switch to the SDK and call ctx.markets.latestOracleQuote(marketId).
sortBy: "trending" is relative. A market can be "trending" with very low absolute volume. Always check volume alongside trend.cursor from the response to fetch the next page. SDK: pass cursor in params.query for specific topics rather than relying on category alone.last trade price and context_price_history for recency.markets array is non-empty.status: "active" and reasonable quotes (bid and ask both present).