Releases: chrisleekr/binance-trading-bot
Releases · chrisleekr/binance-trading-bot
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
v0.0.81
- Quick fix with Github actions
v0.0.80
What's Changed
- Enhanced auto-trigger buy feature - #316
- Added TradingView Technical Analysis - #327
- Updated buy/auto-buy trigger/sell action to integrate with TradingView Technical Analysis - #327
- Fixed dust transfer base amount. Thanks @ilbuonmarcio - #346
- Added /status endpoint. Thanks @ilbuonmarcio - #347
- Added logging features for actions - #362
Full Changelog: v0.0.79...v0.0.80
How to upgrade
There are some changes in docker-compose.sever.yml
file.
If you are not in master
branch.
$ git checkout master
And then git pull and pull the docker images.
$ git pull
$ docker-compose -f docker-compose.server.yml pull
$ docker-compose -f docker-compose.server.yml up -d
v0.0.79
- Clear exchange/symbol info cache in the Redis periodically - #284
- Added minimum required order amount - #84
- Added estimates for quote assets. Thanks @ilbuonmarcio - #305
- Support limit for buy open orders/open trades - #147
- Fixed CRLF issue on Windows. Thanks @ilbuonmarcio - #326