I have a websocketstream for marketdata and do a live subscribe/unsubscribe to select which data I need. I have also requested a listenkey from my websocket connection for managing orders. Can I use this listenkey to do a live subscription for my user-data stream?
You connect to wss://stream.binance.com to monitor the market over WebSocket.
You connect to wss://ws-api.binance.com to manage orders over WebSocket.
You have requested a listen key using userDataStream.start method.
Now you want to listen to the user data steam to monitor execution of your orders.
Right?
I think right now it’s possible to use listen keys only with stream.binance.com, along with the market data, but not on the same WebSocket connection with order management.