2024-08-14
- added recent new fields
2024-04-30
- support order operations
2023-05-09
- no longer try websocket ping after disconnect
- support querying websocket connection status
2023-03-16
- fix subscribe msg concurrent write cause panic
- add
FuturesOrder
response fieldstop_profit_price
andstop_loss_price
- add
FuturesAutoOrder
response fieldme_order_id
,order_type
andinitial.auto_size
2022-12-07
- spot balance add fields
freeze
,freeze_change
andchange_type
2022-11-22
- add common response field
time_ms
for time of message created
2022-10-21
- futures model
FuturesUserTrade
add fieldsfee
andpoint_fee
- avoid saving
ping
andtime
subscribe msg in request history
2022-08-11
- remove client method
NewConnConf
. Recommend to useNewConnConfFromOption
instead - add new config field
PingInterval
to send ping message - add default ping message to avoid to be closed by server
2022-05-24
- fix reconnect panic
- update spot and futures models
- add
ShowReconnectMsg
config field to decide to show reconnect success msg - update some test cases
- update future's models, fix fields wrong type
2021-08-12
- update futures models, fix fields wrong type
- add futures model
FuturesPositions
2021-08-11
- Support websocket skip tls verify with
SkipTlsVerify
of ConfOptions - Update futures models
- Update examples
2021-07-23
- Add constant
ChannelSpotCrossBalance
supportspot.cross_balances
channel - SpotUserTradesMsg add field
Text
for orders' text - Update local order book example
2021-06-24
- fix futures book ticker and order book update struct
2021-06-24
- fix futures order book update struct
2021-06-24
- add futures order book struct
2021-06-22
- add
WsService
methodGetConnection()
to get the connection - fix
changelog
date error
2021-06-04
- fix reconnect msg nil
SubscribeOptions
caused reconnect msg lost
2021-06-04
- add
io.ErrUnexpectedEOF
error capture, it caused v0.1.5 can't reconnect - fix reconnect msg repeat add
2021-06-02
- add
SpotUpdateAllDepthMsg
struct for parse all order book msg
2021-06-02
- fix overlapping price for local order book example
- update README
2021-05-26
- Support futures websocket.
- Modify channels name to with flag
Spot
orFuture
. - Add field
TimestampInMilli
in modelsSpotBalancesMsg
,SpotFundingBalancesMsg
,SpotMarginBalancesMsg
. Add fieldTimeInMilli
in modelSpotBookTickerMsg
- Add new method
NewConnConfFromOption
to get a ConnConf flexible. - Add new method
SubscribeWithOption
to support futures subscribe with id. - Add example for both spot and futures connection use.
- Fix reconnect websocket failed bug.
- Optimizing code structure.
2021-04-19
- Fix subscribe repeat bug.
2021-04-16
- Fix subscribe channel failed bug.
2021-04-12
- Support spot websocket function.