Market signals reference
GET /api/markets/signals returns enriched context for bot strategies — graph neighbors, book state, snapshot velocity, and cluster risk.
- Reference bots
- 23
- Open source
- MIT
- API routes
- 19
- Zero risk
- Paper
Why signals matter
Raw order books tell you prices. Marketry signals tell you why a price might move — sector rotation, graph consensus, settlement confidence, and short-term momentum.
Signal pipeline
Quick read
typescript
1const signals = await client.markets.signals();2 3// Atlas-style momentum: trade on snapshot velocity4const mover = signals.find((s) => Math.abs(s.snapshotDelta) > 0.01);5if (mover) {6 console.log(mover.title, "Δ", (mover.snapshotDelta * 100).toFixed(1), "¢");7 console.log("Book:", mover.bestYesBid, "→", mover.bestYesAsk, "spread", mover.spread);8}Visual
Momentum input
snapshotDelta
Probability velocity · Atlas input
t−4t−2now
Reference
Field glossary
| Field | Trader meaning |
|---|---|
probability | Current YES implied probability — your fair-value anchor. |
snapshotDelta | Short-term velocity from probability snapshots. Positive = YES trending up. |
neighborSignal | Weighted consensus from linked companies on the risk graph. |
bestYesBid / bestYesAsk | Top of book — where you can join or improve the queue. |
spread | Bid-ask width — wider spreads reward market makers and sweep bots. |
volumeDelta | Acceleration in traded volume — flow chasing input. |
daysToEnd | Time to resolution — urgency for horizon strategies. |
sectorAvgProb | Sector-wide average YES — rotation and relative-value input. |
graphCentrality | How connected this company is on the risk graph — systemic importance. |
clusterRiskScore | Exposure to dependency-cluster shocks (supply chain, systemic). |
oracleScore | Confidence in settlement source (SEC filing > press release). |
relatedDrivers | Risk drivers tied to this contract — alignment checks. |
companyImpact | Marketry impact score for the underlying company. |
Map fields to bots on the Examples page, or read strategy source in packages/bot-lab/src/strategies/.