Binance.API.Csharp.Client icon indicating copy to clipboard operation
Binance.API.Csharp.Client copied to clipboard

websocket chartdata listening is stopping after a while!!

Open akildemir opened this issue 8 years ago • 1 comments

hi im trying to listen chartdata prices for specific pair with the function below but after some time later for example 1 day, new prices is not coming out. the function doenst give any exception or error it just stops working or maybe its still working but new prices is not coming anymore.(maybe server blocks my ip) do you know what may be the problem or do you have nay solution ? thank you. i wanna listen prices forever.

` private void KlineHandler(KlineMessage messageData) { var klineData = messageData; }

public void TestKlineEndpoint()
{
    binanceClient.ListenKlineEndpoint("ethbtc", TimeInterval.Minutes_1, KlineHandler);
}

`

akildemir avatar Feb 14 '18 14:02 akildemir

I am also seeing this.

Twistt avatar Jan 08 '19 20:01 Twistt