Skip to content

Backend

Duncan Parker edited this page Jul 17, 2025 · 2 revisions

Backend: Strategy Layer & Core Logic

All strategy development and deployment in QuantX happens in the backend.

Responsibilities

  • 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.

Communication with Frontend

  • Websockets: For pushing real-time updates.
  • Redis: For inter-process communication or caching.

Deployment

  • 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.

Clone this wiki locally