QuantGist builds macro event infrastructure for trading systems: APIs, SDKs, widgets, bots, automation templates, and integrations that turn economic calendar data into practical workflow tools.
The ecosystem is designed for builders first. Start with a free API key, query high-impact events, wire the data into your stack, then add alerts, webhooks, widgets, or execution risk filters when the workflow needs automation.
from quantgist import QuantGistClient
client = QuantGistClient(api_key="qg_live_...")
events = client.events.list(impact="high", limit=5)
for event in events.data:
print(event.release_time, event.currency, event.title)
import { QuantGistClient } from "quantgist-js";
const client = new QuantGistClient({ apiKey: process.env.QUANTGIST_API_KEY });
const events = await client.getEvents({ impact: "high", limit: 5 });
console.log(events.data);
| Area |
Repository |
What it does |
| Python SDK |
quantgist-SDK-python |
Official Python client for macro events, calendar, news, symbols, and research workflows. |
| TypeScript SDK |
QuantGist_SDK_js |
Official TypeScript client for dashboards, bots, Next.js apps, and automation. |
| CLI |
quantgist-cli |
qgist command-line tools for events, exports, config, and API status checks. |
| Trader tools |
App-QG |
Public micro-apps for macro risk, dashboards, widgets, and API playgrounds. |
| Embeds |
QG_microapps-widgets |
Embeddable calendars, countdowns, heatmaps, and trader utility widgets. |
| MT5 |
QuantGist-MT5 |
MQL5 bridge for Expert Advisors, event filters, timezone handling, and news pause logic. |
| Bots |
quantgist-bots |
Telegram and Discord macro event alerts for trading communities. |
| AI agents |
QuantGist_MCP |
MCP server exposing QuantGist event tools to Claude, Codex, and agent workflows. |
| Workflow |
Repository |
Use case |
| Freqtrade |
quantgist-freqtrade |
Pause strategies around high-impact macro events. |
| TradingView |
QuantGist-Tradingview-webhooks |
Relay TradingView alerts through a QuantGist safety check. |
| n8n |
QuantGist-n8n |
Importable workflows for alerts, briefings, and pre-trade checks. |
| Make |
QuantGist-make |
Scenario blueprints for macro alerts and Slack briefings. |
| Zapier |
QuantGist-Zapier |
Step-by-step Zap recipes for macro automation. |
| Jesse |
quantgist-jesse |
Starter extension for QuantGist event-risk filters in Jesse strategies. |
| Hummingbot |
quantgist-hummingbot |
Starter connector for market-making and event-risk workflows. |
| Nautilus Trader |
quantgist-nautilus |
Starter adapter for macro event calendars and trading system risk gates. |
| Layer |
Products |
Purpose |
| Open source |
SDKs, CLI, MT5 bridge, bots, integrations, notebooks |
fast developer activation. |
| Free tools |
Public dashboard, widgets, event risk checks, API playground |
Daily trader utility and embeddable distribution. |
| Paid API |
Higher limits, deep history, webhooks, exports, commercial use |
Production systems and automation. |
| Partner |
White-label widgets, team keys, SLAs, custom feeds |
Brokers, prop firms, fintech apps, and trading communities. |
- Fast first API call.
- Copy-paste examples that work in real projects.
- Trading-native data shapes: event timing, affected symbols, impact, history, alerts, and automation.
- Open-source tools that are useful on their own and stronger when connected to the QuantGist API.