-
Notifications
You must be signed in to change notification settings - Fork 3
Backend
Duncan Parker edited this page Jul 17, 2025
·
2 revisions
All strategy development and deployment in QuantX happens in the backend.
- Strategy Development & Execution: All trading logic, data analytics, and decision-making.
- Data Management: Ingests and stores market/user data.
- API/Socket Server: Serves data and accepts commands from the frontend.
- Extensibility: Add new strategies, data sources, or analytics modules without touching the frontend.
- Websockets: For pushing real-time updates.
- Redis: For inter-process communication or caching.
- Strategies are deployed and managed by the backend.
- The backend exposes control endpoints for starting/stopping strategies, viewing logs, and adjusting parameters.
For more on extending or interacting with the backend, see Working With QuantX.