Skip to content

Releases: chrisleekr/binance-trading-bot

v0.0.91

28 Sep 20:45
Compare
Choose a tag to compare

What's Changed

Thanks @habibalkhabbaz for your great contributions. 100 heart

Full Changelog: v0.0.90...v0.0.91

v0.0.90

27 Aug 13:52
Compare
Choose a tag to compare

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

16 Aug 10:39
Compare
Choose a tag to compare

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

24 Jul 07:57
Compare
Choose a tag to compare

What's Changed

  • feat: tradingview logging level configuration by @azorpax in #436

Full Changelog: v0.0.87...v0.0.88

v0.0.87

23 Jul 04:01
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.86...v0.0.87

v0.0.86

22 Jul 13:27
Compare
Choose a tag to compare

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

02 Nov 09:39
Compare
Choose a tag to compare

What's Changed

  • Refactored TradingView python server - #383

Full Changelog: v0.0.84...v0.0.85

v0.0.84

30 Oct 13:27
Compare
Choose a tag to compare

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

22 Oct 14:05
Compare
Choose a tag to compare

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.

  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

22 Oct 12:26
Compare
Choose a tag to compare
  • Quick fix with Github actions