Closed dante1989 closed 4 years ago
i'm using this code to get exchange's Klines btcusdt exchange
Dim clientBinance = New BinanceClient 'API Tài Khoản Binance clientBinance.SetApiCredentials(API_Binance1, Secret_Binance1) Dim m1d As CallResult(Of IEnumerable(Of BinanceKline)) m1d = Await clientBinance.GetKlinesAsync(Symbol, TickTimeFrame1d, fromtime, totime)
But, now I want to get future's Klines data instead of exchange. how do i get future data? Thank you so much
Hi, you'll need to use the futures client, which is separate from the normal client. For futures use the BinanceFuturesClient class.
BinanceFuturesClient
Thank you
i'm using this code to get exchange's Klines btcusdt exchange
But, now I want to get future's Klines data instead of exchange. how do i get future data? Thank you so much