Skip to content

Releases: Marfusios/bitfinex-client-websocket

Version 3.0

19 Apr 13:45
5af7f4f
Compare
Choose a tag to compare

Features

Order class now contains new properties that groups order statuses together

  • IsCanceled - true if the order was canceled by user or by error (insufficient balance, not able to be maker (postonly), etc.)
  • IsActive - true if the order is placed in the order book
  • IsInactive - true if the order was removed from order book (canceled or executed)

Breaking changes

  • It no longer returns status OrderStatus.Canceled when the order was canceled by error 'insufficient balance' (there are new statuses OrderStatus.InsufficientBalance and OrderStatus.InsufficientMargin, you can use property IsCanceled in order to find out terminated state)

Version 2.0

04 Feb 18:53
367a7d9
Compare
Choose a tag to compare

Breaking changes

  • dependency to Serilog was removed, switched to logging abstraction (LibLog)
  • requests were moved into a new namespaces
    • all subscriptions are under Bitfinex.Client.Websocket.Requests.Subscriptions
    • order input api is under Bitfinex.Client.Websocket.Requests.Orders