Skip to content
This repository was archived by the owner on Sep 9, 2023. It is now read-only.

v0.37.0 - Major Updates

Compare
Choose a tag to compare
@bmancini55 bmancini55 released this 18 Aug 20:20
· 237 commits to master since this release

This is a big one!!!

Changes

  • 12 new exchanges 🎉

    • Binance Futures Coin-M
    • Binance Futures USDT-M
    • Bithumb
    • Deribit
    • Digifinex
    • FTX US
    • Huobi Futures
    • Huobi Swaps
    • Huobi Japan
    • Huobi Korea
    • Huobi Russia
    • LedgerX
  • All clients now support an options object when instantiated which supports:

    • Custom wssPath which allows overriding the connection client - Issue #94
    • Custom watcherMs which allows controlling the reconnection watcher - Issue #185
  • Candle/kline support was added for all exchanges that support it. - Issue #75

    • Bibox
    • Binances
    • BitMEX
    • Bittrex
    • CEX
    • Coinex
    • HitBTC
    • Huobis
    • Kucoin
    • Kraken
    • OKEx
  • Kucoin had some updates (#198)

    • Added support for candles
    • Added L3 order book support
    • Created prototype L3 order book /src/orderbooks/KucoinOrderBooks.js
    • L2 Snapshot now includes the market
    • L2 update changed sequenceLast to lastSequenceId to make it consistent with Binance
  • Bittrex was updated to V3 (#173)

    • ⚠️ this change may introduce some breaking changes since v3 API uses different markets
    • Removed dependencies on legacy SignalR libraries
    • Converted to BasicClient which should resolve some reconnection issues
    • Added Candle support
  • Reconnection watcher now includes candle subs (#197)

  • Fix reconnection issues (#113, #117)

    • Poloniex reconnection issue with tickers
    • Binance reconnection issue with tickers
    • Fixed reconnection with network interruptions
  • HitBTC fixes crash on close (#133)

  • OKEx was modified to use the tick-by-tick order book stream (#171)

  • Implemented prototype order books. These are not in the main export path and are more for research purposes. There are plans to implement a full complement of order books in the future.