A signal is an actionable trading recommendation with position sizing. It’s the output ofDocumentation Index
Fetch the complete documentation index at: https://rekko.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
POST /v1/signals and combines a full analysis with Kelly-derived sizing.
The Signal object
Recommendation types
| Value | Meaning |
|---|---|
BUY_YES | The event is more likely than the market implies — buy YES contracts |
BUY_NO | The event is less likely than the market implies — buy NO contracts |
NO_TRADE | Edge is too small or confidence too low to justify a position |
Edge
Theedge field is the core of every signal:
- Positive edge → market underprices the event →
BUY_YES - Negative edge → market overprices the event →
BUY_NO - Near-zero edge → no actionable opportunity →
NO_TRADE
+0.12 (12 percentage points).
Position sizing (Kelly criterion)
Thesize_pct field is a Kelly-derived position size as a fraction of your bankroll:
0.042means “risk 4.2% of your bankroll on this trade”- Accounts for edge magnitude, confidence, and risk rating
- Conservative half-Kelly by default — designed to avoid ruin
Risk ratings
| Rating | Meaning |
|---|---|
low | Well-understood event, high source quality, multiple confirming signals |
medium | Moderate uncertainty, mixed signals, or limited source coverage |
high | Significant uncertainty, potential for insider information, or thin markets |
Time horizon
| Value | Meaning |
|---|---|
hours | Signal is time-sensitive — act quickly or edge may evaporate |
days | Edge likely persists for 1-7 days |
weeks | Structural mispricing, slower to correct |
Signal expiry
Always checkexpires_at before acting. After this timestamp, the signal is stale and should not be traded. Market conditions may have changed.
Requesting a signal
Portfolio-aware signals
For position-adjusted sizing that accounts for correlation with your existing holdings, usePOST /v1/signals/portfolio. Pass your current positions and bankroll to get adjusted sizing, concentration warnings, and hedge recommendations.
Portfolio Signal endpoint
Full endpoint documentation with playground.