-
Notifications
You must be signed in to change notification settings - Fork 3
Using QuantX
Duncan Parker edited this page Jul 17, 2025
·
2 revisions
-
Run the Backend
- Clone the repo and follow backend install instructions.
- Start the backend server.
-
Run the Frontend
- Start the Electron/React app.
- It will connect to the backend via websocket/Redis.
- Write strategy code in the backend.
- Register new strategies according to backend guidelines.
- Deploy and manage strategies via backend API or frontend controls.
- Add new UI components to display data.
- No need to implement hooks or data fetching logic—simply handle the data provided by backend streams.
- Websockets: For real-time data and events.
- Redis (if used): For pub/sub, cache, and inter-service communication.
- Keep business logic on the backend.
- Use the frontend for presentation and controls only.
- If the frontend shows no data, check backend server and websocket connections.
- All errors and logs are available in the backend logs.
See FAQ for common issues.