Releases: chrisleekr/binance-trading-bot
v0.0.91
What's Changed
- Fixed sorting symbols when the field is null by @habibalkhabbaz - #496
- Added backup/restore functions - #501
- Added demo mode - #509
- Fixed account balance calculation by @habibalkhabbaz - #514
Thanks @habibalkhabbaz for your great contributions. 100 heart
Full Changelog: v0.0.90...v0.0.91
v0.0.90
What's Changed
- Fixed handling execution report - #495
- Fixed archiving grid order if all sell orders are executed - #490
- Update symbol delete action to remove override data - #489
- Improved performance with bulk write candles to DB by @habibalkhabbaz - #481
- Fixed non-active exchange symbols by @habibalkhabbaz - #478
- Fixed incorrect symbol in reset-symbol-websockets by @habibalkhabbaz - #477
- Improved UI by @uhliksk - #479
Thanks @habibalkhabbaz and @uhliksk for your great contributions. 💯 ❤️
Full Changelog: v0.0.89...v0.0.90
v0.0.89
What's Changed
- Fixed incorrect behaviour of exceeding max open orders by @uhliksk - #462
- Bumped vulnerable package versions - #472
- Refactored the slack hander to avoid message flooding to Slack - #471
- Implemented queue to stabilise the trade by @habibalkhabbaz - #464
- Fixed to handle order status update correctly - #461
- Fixed timezone inconsistency by @uhliksk - #454
- Improved UI by @uhliksk - #452
- Improved error handler and stability by @habibalkhabbaz - #448
Thanks @habibalkhabbaz and @uhliksk for your great contributions.
New Contributors
Full Changelog: v0.0.88...v0.0.89
v0.0.88
What's Changed
Full Changelog: v0.0.87...v0.0.88
v0.0.87
What's Changed
- Refactored error handling. Thanks @habibalkhabbaz - #434
Full Changelog: v0.0.86...v0.0.87
v0.0.86
What's Changed
- Upgraded TradingView TA to 3.2.10 - #426
- Added override trading view with auto trigger buy - #429
- Enhanced to use WebSocket for monitoring candles/orders/account information. It's faster! - #431
- Updated the frontend with pagination - #431
- Updated account balance layout in the frontend - #431
Thanks @habibalkhabbaz for all these updates!
Full Changelog: v0.0.85...v0.0.86
v0.0.85
v0.0.84
What's Changed
- Enhanced TradingView using get_multiple_analysis - #375
- Fixed the last buy removal threshold. Thanks @Rayn0r - #379
Full Changelog: v0.0.83...v0.0.84
v0.0.83
What's Changed
- Fixed Redis/TradingView docker images for Raspberry Pi - #366
Full Changelog: v0.0.82...v0.0.83
Attention to Raspberry Pi traders
If you are having an issue with the previous broken image, please follow the below steps to fix it.
-
Check docker version
$ docker -v Docker version 20.10.9, build c2ea9bc
1-1. If the docker version is not
20.10.9
, upgrade the system and reboot``` $ sudo apt-get update $ sudo apt-get upgrade $ sudo reboot ```
1-2. Check docker version
``` $ docker -v Docker version 20.10.9, build c2ea9bc ```
-
Pull the latest code
$ git pull
-
Pull latest docker images
$ docker-compose -f docker-compose.rpi.yml pull
-
Up docker images
$ docker-compose -f docker-compose.rpi.yml up -d
-
Access to Redis and flush
$ docker exec -it binance-redis > AUTH <redis password> OK > FLUSHALL OK
- Redis password can be found in
docker-compose.rpi.yml
- Redis password can be found in
-
Restart binance bot
$ docker restart binance-bot
-
Access frontend to check all working.
v0.0.82
- Quick fix with Github actions