Loading QuantGist...
Loading QuantGist...
QuantGist groups breaking news into scored, asset-linked event clusters — so you trade on signal, not noise.
Each card is a real-time event cluster: topic-packed, impact-scored, and asset-tagged the moment it clears the severity threshold.
Every cluster passes through the full scoring and enrichment pipeline before it reaches your system.
Every cluster is scored across severity, velocity, credibility, recency, novelty, asset linkage, and confirmation count — then collapsed to a single 0–1 impact float your model can threshold directly.
Each cluster ships with the exact tickers and instruments that historically move on that topic pack — no extra enrichment step needed.
ClusterSummarizer upgrades template text to LLM-generated copy for clusters scoring ≥ 0.70 impact, giving you a trader-readable why_it_matters in every response.
Clusters progress through developing → breaking → fading → resolved. Poll the same cluster_id over time or filter by status to get only active shocks.
9 topic packs monitor 60+ curated RSS and API sources in parallel
ShockScorer aggregates 7 sub-signals into a single 0–1 impact float
Clusters above threshold appear in /v1/news/radar within 15 seconds
The response ships with impact score, status, affected assets, and an AI-enhanced summary — all in one round-trip.
# Fetch breaking clusters with impact ≥ 0.65
from quantgist import QuantGistClient
client = QuantGistClient(api_key="qg_live_...")
clusters = client.news.radar(
min_impact=0.65,
status="breaking",
)
# → [ClusterResult, ClusterResult, ...]
print(clusters[0]){
"cluster_id": "iran-war-20260528T0942Z",
"topic": "iran-war",
"status": "breaking",
"impact": 0.85,
"headline": "Iran Launches Drone Strikes on Israeli Military Bases",
"affected_assets": ["XAU/USD", "WTI", "USD/JPY", "VIX"],
"why_it_matters": "Escalation above threshold 3 — strait blockade risk...",
"ai_enhanced": true,
"first_seen": "2026-05-28T09:42:11Z",
"updated_at": "2026-05-28T09:58:03Z"
}REST endpoint: GET /v1/news/radar · topic packs: GET /v1/news/topics
Each topic pack is a curated set of keywords, entities, and source weights tuned for a specific shock scenario.
No stitching required — every field you need to act is present in the cluster response.
Connect to News Radar in minutes. One endpoint. Every breaking cluster. Scored, asset-linked, and AI-summarised.