Getting Started
This Sections help users to install openalgo
Windows Platform
Mac OS Installation
Linux/Nginx Server
If you are using nginx it is recommended to execute using gunicorn with eventlet
gunicorn --worker-class eventlet -w 1 app:app
In the case of running using Gunicorn, -w 1 specifies that you should only use one worker process. This is important because WebSocket connections are persistent and stateful; having more than one worker would mean that a user could be switched between different workers, which would break the connection.
Last updated