JKorf / Kucoin.Net

A C# .netstandard client library for the Kucoin REST and Websocket Spot and Futures API focusing on clear usage and models
https://jkorf.github.io/Kucoin.Net/
MIT License
113 stars 64 forks source link

Hi. IS HFT API supported currently? #197

Closed hftcryptobot closed 1 year ago

hftcryptobot commented 1 year ago

https://docs.kucoin.com/spot-hf/#quick-start

hftcryptobot commented 1 year ago

Also, I tried to create a request to create an HFT account. The result is OK, but there are no account in the final list of all accounts.

`

var result= await KuCoinclient.SpotApi.Account.CreateAccountAsync(AccountType.HighFrequency,"USDT", new CancellationToken()); var accounts = await KuCoinclient.SpotApi.Account.GetAccountsAsync(null, accountType: AccountType.HighFrequency, new CancellationToken()); var accounts2 = await KuCoinclient.SpotApi.Account.GetAccountsAsync();`

JKorf commented 1 year ago

The latest version has some basic endpoints (under the ProAccount api in the client) but the full API is not yet implemented