-
Notifications
You must be signed in to change notification settings - Fork 3
Frontend
Duncan Parker edited this page Jul 16, 2025
·
1 revision
QuantX uses an Electron/React frontend as a dedicated, dynamic presentation layer.
- Iterate Quickly: React's component model enables rapid UI development.
- Prettier UI: Modern design and interactivity.
- Resource Moat: Electron runs as a standalone app, preventing resource competition with browser tabs.
- The frontend does not perform any strategy computation or make trading decisions.
- No React hooks are used to fetch live data; all UI is driven by state fed from backend via websockets or Redis.
- Displays dashboards, charts, logs, and controls.
- Receives and renders real-time data streams.
- Sends user commands (e.g., start/stop strategy) to the backend via defined API endpoints or sockets.
- No direct data fetching from APIs.
- No strategy code, simulation, or analytics.
For more, see Working with QuantX.