Binance.API.Csharp.Client
Binance.API.Csharp.Client copied to clipboard
websocket chartdata listening is stopping after a while!!
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);
}
`
I am also seeing this.