// Documentation
Docs & User Support
Everything you need to set up, configure, and operate MirrorQuant.
Getting Started
What is MirrorQuant?
A quantitative execution engine for prediction markets. We mirror institutional flow patterns and execute against Polymarket's CLOB at sub-second latency.
Account Setup
Create a Polymarket account, generate scoped API keys (read + trade, no withdrawal), and paste them into your MirrorQuant dashboard. We never see your seed phrase.
First Strategy: BTC 5M
The default Alpha-1 strategy targets BTC 5-minute UP/DOWN markets. Default sizing is 250 USDC per trade with a 0.5% slippage cap.
Strategy Reference
Signal Generation
We compute a real-time edge using a Bayesian model fed by BTC tape, order book imbalance, and historical 5-minute outcome distributions.
Position Sizing
Volume-weighted by conviction. Higher edge → larger size, capped at your configured maximum.
Risk Controls
Hard stops on session drawdown, max concurrent positions, and per-trade loss caps. All configurable.
API Reference
Authentication
Bearer-token auth. POST your API key to /v1/sessions to obtain a JWT for the WebSocket feed.
WebSocket Signal Feed
Connect to wss://stream.mirrorquant.io/v1/signals. You'll receive JSON events: { ts, market, side, edge, suggested_size }.
Trade History
GET /v1/trades?since=… returns the last N executed trades with full audit detail.
Support
Discord
Join the community Discord for setup help, strategy discussion, and roadmap previews. Pro users get a dedicated channel.
support@mirrorquant.io · response within 24h on weekdays. Pro tier: 4h SLA.
Status Page
Subscribe to status.mirrorquant.io for execution-node uptime and incident reports.
REST API reference
All endpoints below resolve under VITE_API_BASE (default /api). Keep an eye on the `@api` JSDoc tags in src/lib/api/*.
/api| Module | Endpoint |
|---|---|
| Insights | GET /v1/insights/mood |
| Insights | GET /v1/insights/:module |
| Insights | GET /v1/insights/news |
| Prediction | GET /v1/prediction/events |
| Prediction | GET /v1/prediction/events/:id |
| Prediction | GET /v1/prediction/arbitrage |
| Prediction | GET /v1/prediction/strategies |
| Stocks | GET /v1/stocks |
| Stocks | GET /v1/stocks/:symbol |
| Stocks | GET /v1/stocks/:symbol/news |
| Stocks | GET /v1/stocks/sectors |
| Stocks | GET /v1/stocks/smart-money |
| Macro | GET /v1/macro/snapshot |
| Macro | GET /v1/macro/yield-curve |
| AI | GET /v1/ai/recap |
| AI | GET /v1/ai/models |
| AI | GET /v1/ai/accuracy |
| AI | POST /v1/ai/screen |
| Community | GET /v1/community/challenges |
| Community | POST /v1/community/challenges/:id/submit |
| Community | GET /v1/community/leaderboard |
| Community | GET /v1/community/research |
Set VITE_USE_REMOTE_API=true to point the client at a real backend.