Files
DinQuant/quantdinger_vue
TIANHE 4c73439bd6 feat: Add System Overview tab to User Management page (admin only)
- Add backend API endpoint /api/users/system-strategies for system-wide strategy data
- Query all strategies across all users with positions, PnL, trade stats
- Add summary statistics (total strategies, running count, total capital, total PnL/ROI)
- Support filtering by status (running/stopped) and search by strategy/symbol/user
- Add System Overview tab with summary cards and detailed strategy table
- Display user, strategy name, status, symbol, capital, PnL/ROI, positions, trades, indicator, exchange, timeframe, leverage
- Add i18n translations for zh-CN and en-US
- Lazy-load strategy data when tab is first accessed
2026-02-13 02:46:59 +08:00
..
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 19:05:17 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 19:05:17 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2026-01-31 03:13:18 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:06:49 +08:00
2025-12-29 03:12:20 +08:00
2025-12-29 03:06:49 +08:00

QuantDinger Web UI (Vue 2)

This is the QuantDinger frontend web UI built with Vue 2 + Ant Design Vue. It connects to the Python backend (backend_api_python/) through HTTP APIs to provide charts, indicators, backtests, AI analysis, and strategy management.

This UI is based on the open-source ant-design-vue-pro ecosystem, heavily adapted for QuantDinger.

What you get

  • Dashboards: summary views and operational panels
  • Indicator analysis: Kline charts + indicator editing + backtest history
  • AI analysis: multi-agent reports (optional LLM/search, configured on backend)
  • Trading assistant: strategy lifecycle + positions/records (depending on backend capability)
  • Local auth: login with backend-configured admin credentials

Quick start (local development)

Prerequisites

  • Node.js 16+ recommended
  • Backend running at http://localhost:5000 (see backend_api_python/README.md)

1) Install dependencies

cd quantdinger_vue
npm install

2) Start dev server

npm run serve

Dev server runs at http://localhost:8000.

3) API proxy (important)

In dev mode, this project proxies /api/* to the backend:

  • Proxy config: quantdinger_vue/vue.config.js
  • Default target: http://localhost:5000

If your backend runs on a different host/port, update vue.config.js accordingly.

Production build

npm run build

The output will be generated under quantdinger_vue/dist/.

Notes

  • CORS: when using the dev proxy, you typically dont need extra CORS config.
  • Login: use the credentials defined in backend_api_python/.env (ADMIN_USER / ADMIN_PASSWORD).

License

Apache License 2.0. See repository root LICENSE.