-
-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When Binance Trade Bot is running use it's database api instead of operating on the database file #23
Comments
The api server should be launched using the following command: gunicorn binance_trade_bot.api_server:app -k eventlet -w 1 --threads 1 -b 0.0.0.0:5123 Dependencies: |
Endpoints are:
|
This issue was created in an attempt to fix sometimes getting outdated data from the database. Furthermore I believe this issue should not be resolved / does not have high priority. |
Hey @lorcalhost |
The mysqlalchemy session implementation used in Binance Trade Bot only updates the database file every now and then and at the end of the session.
To fetch good data switch to their database API.
Thanks @DmytroLitvinov for finding the cause of the slow data update problem.
The text was updated successfully, but these errors were encountered: