Binance Trading Bot Versions Save

Automated Binance trading bot - Trade multiple cryptocurrencies. Buy low/sell high with Grid Trading. Integrated with TradingView technical analysis

v0.0.88

1 year ago

What's Changed

Full Changelog: https://github.com/chrisleekr/binance-trading-bot/compare/v0.0.87...v0.0.88

v0.0.86

1 year ago

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: https://github.com/chrisleekr/binance-trading-bot/compare/v0.0.85...v0.0.86

v0.0.85

2 years ago

What's Changed

  • Refactored TradingView python server - #383

Full Changelog: https://github.com/chrisleekr/binance-trading-bot/compare/v0.0.84...v0.0.85

v0.0.84

2 years ago

What's Changed

  • Enhanced TradingView using get_multiple_analysis - #375
  • Fixed the last buy removal threshold. Thanks @Rayn0r - #379

Full Changelog: https://github.com/chrisleekr/binance-trading-bot/compare/v0.0.83...v0.0.84

v0.0.83

2 years ago

What's Changed

  • Fixed Redis/TradingView docker images for Raspberry Pi - #366

Full Changelog: https://github.com/chrisleekr/binance-trading-bot/compare/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.

  1. 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
     ```
    
  2. Pull the latest code

    $ git pull
    
  3. Pull latest docker images

    $ docker-compose -f docker-compose.rpi.yml pull
    
  4. Up docker images

    $ docker-compose -f docker-compose.rpi.yml up -d
    
  5. 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
  6. Restart binance bot

    $ docker restart binance-bot
    
  7. Access frontend to check all working.

v0.0.82

2 years ago
  • Quick fix with Github actions

v0.0.81

2 years ago
  • Quick fix with Github actions

v0.0.80

2 years ago

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: https://github.com/chrisleekr/binance-trading-bot/compare/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

2 years ago
  • 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