You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Seems like I have failed to use the "SubscribeToOrderUpdates" function in socketClient because I could not find a place to authenticate myself like what I did in REST request
using (var socketClient = new HuobiSocketClient())
{
//Able to listen
socketClient.SubscribeToMarketKlineUpdates("ethusdt", HuobiPeriod.FiveMinutes, data =>
{
Console.WriteLine("Received kline update. Last price: " + data.Close);
});
//Unable to listen
socketClient.SubscribeToOrderUpdates(data =>
{
Console.WriteLine("Received order update. Last price: " + data.ToString());
});
Console.ReadLine();
}
Is the Authentication in socketClient missing, or is there any problem with my code?
Thanks,!
The text was updated successfully, but these errors were encountered:
Hi! Seems like I have failed to use the "SubscribeToOrderUpdates" function in socketClient because I could not find a place to authenticate myself like what I did in REST request
Is the Authentication in socketClient missing, or is there any problem with my code?
Thanks,!
The text was updated successfully, but these errors were encountered: