Trade
Skill for autonomous order management — place, cancel, replace, and bulk manage orders on Context Markets.Claude Code:
/context:trade · Codex / Hermes / OpenClaw: Load SKILL.md as system promptSubskills
| Subskill | What it does | Key SDK methods | Key MCP tools |
|---|---|---|---|
place-order | Place limit and market orders | ctx.orders.create, ctx.orders.marketOrder | context_place_order |
market-maker | Quote both sides, monitor fills, rebalance inventory | ctx.orders.bulkCreate, ctx.orders.cancelReplace | context_place_order, context_get_orderbook |
bulk-operations | Ladder orders, bulk cancel, mixed bulk operations | ctx.orders.bulkCreate, ctx.orders.bulkCancel, ctx.orders.bulk | context_place_order, context_cancel_order |
manage-positions | Monitor open orders, track fills, manage active positions | ctx.orders.mine, ctx.orders.get, ctx.orders.recent | context_my_orders, context_get_portfolio |
diagnose-order | Troubleshoot failed or rejected orders | ctx.orders.get | context_my_orders |
Prerequisites
- Context MCP server
- API key
- Private key for signing orders
Example prompts
- “Place a limit buy on YES at 45 cents for 10 contracts on market abc123”
- “Cancel all my open orders on market xyz789”
- “Show my open orders and cancel any priced below 30 cents”
- “Place a ladder of buy orders from 20 to 40 cents, 5 contracts each”
- “Cancel and replace order 0xabc with a new price of 50 cents”
- “Execute a market buy for $50 worth of YES tokens on market abc123”
- “Market make on market abc123 with a 5 cent spread”
- “My order keeps getting rejected, help me figure out why”
Research skill
Market discovery and analysis
SDK orders
Order method signatures
CLI commands
Full command reference