Results 20 comments of HypsyNZ

Are you still having issues with this?

It is likely you didn't keep the connection alive

[Binance.Net/Enums/OrderType](https://github.com/JKorf/Binance.Net/blob/9e3572dc68a36e4680f22e130e63e5e6ddf06cb2/Binance.Net/Enums/OrderType.cs) ```cs namespace Binance.Net.Enums { /// /// The type of an order /// public enum OrderType { /// /// Limit orders will be placed at a specific price. If the...

Manually change the local time to something absurd then run `w32tm /resync` as administrator

Maybe something is blocking in your implementation somewhere, this doesn't even sound possible.

> OK. But what is this listenKey parameter? It notifies Binance to keep sending information to the socket the `listenkey` is in the return of the `subscription`

> Are you sure? Wouldn't the listenKey be the return key of the StartUserStreamAsync method? Yeah that is what I said. This issue isn't constructive and doesn't represent an issue...

The listen key from `StartUserStreamAsync` (the subscription) needs to be used with `KeepAliveUserStreamAsync` at least once an hour, personally I do this every 15 minutes. This is not optional and...

Are you getting error messages saying the socket is going slow? Do you get any errors/information when this happens with logging level set to "Information" ? when you say "stops...

The other thing that comes to mind is maybe all of this is happening in the same thread and causing it to block, did you create these subscriptions inside their...