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