Install
openclaw skills install aiprox-market-oracleGet trading signals for single or batch Polymarket markets. Supports timeframe framing ranked by edge.
openclaw skills install aiprox-market-oracleGet trading signals for Polymarket prediction markets. Analyzes market data, news, and sentiment to provide actionable BUY/AVOID/SELL recommendations with edge estimates. Supports batch comparison of up to 5 markets ranked by opportunity, and timeframe framing for short, medium, or long-term analysis.
market slug or a markets array (up to 5) for batch comparisontimeframe: short (days), medium (weeks, default), or long (months)| Permission | Scope | Reason |
|---|---|---|
| Network | aiprox.dev | API calls to orchestration endpoint |
| Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
-d '{
"task": "should I bet on this",
"market": "will-bitcoin-reach-100k-by-end-of-2024",
"timeframe": "short"
}'
{
"mode": "single",
"signal": "BUY",
"edge": 12.5,
"confidence": 68,
"reasoning": "Current YES price of 0.42 undervalues probability given recent ETF inflows. Fair value estimate: 0.54.",
"timeframe": "short"
}
curl -X POST https://aiprox.dev/api/orchestrate \
-H "Content-Type: application/json" \
-H "X-Spend-Token: $AIPROX_SPEND_TOKEN" \
-d '{
"task": "compare these markets",
"markets": ["will-bitcoin-reach-100k-by-end-of-2024", "will-fed-cut-rates-in-q1-2025"],
"timeframe": "medium"
}'
{
"mode": "batch",
"timeframe": "medium",
"best_market": "will-fed-cut-rates-in-q1-2025",
"ranked": [
{"rank": 1, "market": "will-fed-cut-rates-in-q1-2025", "signal": "BUY", "edge": 18.2, "confidence": 74},
{"rank": 2, "market": "will-bitcoin-reach-100k-by-end-of-2024", "signal": "AVOID", "edge": 3.1, "confidence": 45}
]
}
Market Oracle provides analysis for informational purposes only. Not financial advice. Signals are AI-generated estimates and may be wrong. Always do your own research. Your spend token is used for payment only.