Bot Lab/Signals

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

Marketsprobability · volumeRisk graphneighbors · clustersOrder bookbid · ask · spreadmarket-signals.tsserver-sideMarketSignal[]snapshotDelta · neighborSignalclusterRisk · oracleScoreGET /api/markets/signals

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

+2.1¢
t−4t−2now

Reference

Field glossary

FieldTrader meaning
probabilityCurrent YES implied probability — your fair-value anchor.
snapshotDeltaShort-term velocity from probability snapshots. Positive = YES trending up.
neighborSignalWeighted consensus from linked companies on the risk graph.
bestYesBid / bestYesAskTop of book — where you can join or improve the queue.
spreadBid-ask width — wider spreads reward market makers and sweep bots.
volumeDeltaAcceleration in traded volume — flow chasing input.
daysToEndTime to resolution — urgency for horizon strategies.
sectorAvgProbSector-wide average YES — rotation and relative-value input.
graphCentralityHow connected this company is on the risk graph — systemic importance.
clusterRiskScoreExposure to dependency-cluster shocks (supply chain, systemic).
oracleScoreConfidence in settlement source (SEC filing > press release).
relatedDriversRisk drivers tied to this contract — alignment checks.
companyImpactMarketry impact score for the underlying company.

Map fields to bots on the Examples page, or read strategy source in packages/bot-lab/src/strategies/.