Gunbot v22 Beta versions changelogs

Gunbot Shop Gunbot Forum General Discussion Gunbot v22 Beta versions changelogs

Viewing 15 posts - 1 through 15 (of 24 total)
  • Author
    Posts
  • #9994
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    In this post we will keep you updated with the changelogs of latest Gunbot v22.x Beta versions.

    https://gunbot.shop/gunbot-v22-download-and-changelogs/

    New fixes and changes in v22.0:

    This version includes several fixes that improve user experience compared to the last stable version, 21.1.0

    – Improved and fixed PNL calculations for telegram bot.

    – Migrated to Websockets system making Gunbot faster and increasing GUI performance.

    – Updated to keep compatibility with latest api system changes of Binance, Kucoin etc…

    – Pullback strategy fixed.

    – ADX strategy fixed.

    – Custom strategies: use require instead of requirejs for loading custom javascript modules.

    – Give custom strats the option to draw trading targets as lines on the chart.

    To use an external module, first place it in a folder called ‘user_modules’ in the Gunbot root folder.
    Then require it in your strategy code, like this:

    On Linux (and likely macOS):
    const cryptopanic = gb.method.requirejs(gb.modulesPath + ‘/cryptopanic’)

    On Windows:
    const cryptopanic = gb.method.requirejs(gb.modulesPath + ‘\\cryptopanic’)

    The above assumes you have a module in a folder called cryptopanic in the user_modules folder.
    gb.modulesPath returns the path to whereever your gunbot folder is on your filesystem.

    If you are updating from a previous 2x.x version, you can do it just by replacing the new Gunthy-win.exe file in your “old” Gunbot directory. For instructions on how to make a fresh installation, you can check this video -> https://gunbot.shop/gunbot-21-presentation-and-installation-video-tutorial/

     

    Gunbot Shop - https://gunbot.shop

    #9995
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.1 – Patch release

    – sga: fix case where ct sell should be allowed, but wasn’t

    – Fix fetching pair lists for huobi.

    – Remove irrelevant KEEP_QUOTE from futuresGrid strategy editor.

    Gunbot Shop - https://gunbot.shop

    #9996
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.2 – Patch release

    Gunbot Shop - https://gunbot.shop

    #9997
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.3 – HFT – alpha

    – initial broken commit of Gunbot HFT: do not use this in production

    Status:

    – Entire Gunbot is now migrated to pure websockets

    – Only a very few initial api calls are sent with REST calls because exchanges do not send the entire history of an endpoint to websockets: they only send updates.

    – So balances, candles, trades and many other endpoints MUST do their first call with REST api

    – PositionRisk at binance futures is not sent via websockets (and the few informations they send are not enough for our bot)

    – For this reason we need to use positionRisk with REST api call at all the times (i’m throttling it with one api call when it is needed).

    – You can decide the speed of your bot: set WS_SLEEP_TIME in milliseconds in bot section of your config and play with it looking at the speed of your bot changing.

    – Example i start with WS_SLEEP_TIME: 2000 and the bot is throttled with 2 seconds per pair.

    – Being that you can use milliseconds, based on the ping you have to the exchange and your server performances, you can tune that down to 0 milliseconds if you are able to.

    – For slower servers: use higher values up to 4/6 seconds (4000/6000)

    – All pairs cycles at same time.

    – It means if you have 300 pairs configured, each pair will cycle whenever a new websocket event comes in.

    – Ignore all errors that you would see on console log for now.

    – Strictly use this build with binanceFutures: anything else will not work.

     

    Gunbot Shop - https://gunbot.shop

    #10119
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.4 – HFT – alpha

    – Adding binanceFutures coin-m coins, binance spot on websockets.

    – Adding WS_SLEEP_TIME in GUI.

    – Fix long standing bug of pnl not showing in gui without a bot restart.

    Gunbot Shop - https://gunbot.shop

    #10120
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.5 – HFT – alpha

    – Fix some undefined things that have been reported and prevent 22.0.4 to start for some users.

    Gunbot Shop - https://gunbot.shop

    #10121
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.6 – HFT – alpha

    – Catch other undefined values/errors preventing the bot to run smooth.

    – Parsing WS_SLEEP_TIME as a number.

    Gunbot Shop - https://gunbot.shop

    #10122
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.7 – HFT – alpha

    – Fix a candles rejection that would prevent websockets to reconnect on watchCandles.

    Gunbot Shop - https://gunbot.shop

    #10200
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.8 HFT (with REST api option)

    – You can run this build with legacy REST options by just ignoring to add WS_SLEEP_TIME in your config.

    – If you add WS_SLEEP_TIME (in milliseconds) it will use the HFT process instead: first cycle of all pairs will fetch 1 single rest api call to get values and then it will cycle with websockets forever.

    – I suggest you to start with WS_SLEEP_TIME 5000 and eventually tune at your wishes.

    – This build can be safely run by people using stable v22.0.2 (without WS_SLEEP_TIME)

    – Tested ws with binance, binance futures.

    – Tested with sg and fg strategies families.

    – Adds the following coins at kraken:

    ANKR’ ,
    ‘BNT’ ,
    ‘SUSHI’,
    ‘MKR’ ,
    ‘REN’ ,
    ‘ZRX’ ,
    ‘RARI’ ,
    ‘GHST’ ,
    ‘MATIC’

    – Fix all custom strategy gui target lines.

    – Change logic for fetching candle data in trend module, for hft mode.

    – Sga: improve logic to determine ct sell and ct buy amounts.

    – Fix pnl not updating for new orders on gui dashboard.

    – Refactor chart lines placement logic.

     

     

    Gunbot Shop - https://gunbot.shop

    #10201
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.0.9 HFT (with REST api option)

    – Fix an underfined reference for config.

    – Fix an undefined reference for autoconfig.

    – Add ENJ, SAND, LPT coins at kraken.

     

    Gunbot Shop - https://gunbot.shop

    #10202
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.1.0 HFT (with REST api option)

    – ParseFloat WS_SLEEP_TIME as some guys are already changing it from GUI.

    – Fix a missed reference for kraken pairs.

     

    Gunbot Shop - https://gunbot.shop

    #10203
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.1.1 HFT (with REST api option)

    – Fix check position size for short close orders.

    Gunbot Shop - https://gunbot.shop

    #10204
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.1.2 HFT (with REST api option)

    – Attempt to preserve backward compatibility for positions sizes updates with websockets: actually i suggest to only try these builds with no positions opened pairs tho.

     

     

    Gunbot Shop - https://gunbot.shop

    #10205
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.1.3 HFT (with REST api option)

    – Fix balances api response after a trade occurred (fixes both ws and restful api bots).

    Gunbot Shop - https://gunbot.shop

    #10206
    Javieralv
    Moderator
    • Posts: 260
    • Moderator

    Gunbot v22.1.4 HFT (with REST api option)

    – Sending correct balances updates to trades.

    Gunbot Shop - https://gunbot.shop

Viewing 15 posts - 1 through 15 (of 24 total)
  • You must be logged in to reply to this topic.
Contact us