Package org.knowm.xchange.kucoin
Class KucoinMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService<E>
org.knowm.xchange.service.BaseResilientExchangeService<KucoinExchange>
org.knowm.xchange.kucoin.KucoinBaseService
org.knowm.xchange.kucoin.KucoinMarketDataServiceRaw
org.knowm.xchange.kucoin.KucoinMarketDataService
- All Implemented Interfaces:
BaseService,MarketDataService
public class KucoinMarketDataService
extends KucoinMarketDataServiceRaw
implements MarketDataService
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringSet on calls togetOrderBook(CurrencyPair, Object...)to return the full orderbook rather than the default 100 prices either side.static final StringSet on calls togetOrderBook(CurrencyPair, Object...)to return the shallow partial orderbook depth of 20.Fields inherited from class org.knowm.xchange.kucoin.KucoinBaseService
accountApi, apiKey, depositAPI, digest, fillApi, histOrdersApi, historyApi, limitOrderAPI, nonceFactory, orderApi, orderBookApi, passphrase, symbolApi, tradingFeeAPI, websocketAPI, withdrawalAPIFields inherited from class org.knowm.xchange.service.BaseResilientExchangeService
resilienceRegistriesFields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedKucoinMarketDataService(KucoinExchange exchange, ResilienceRegistries resilienceRegistries) -
Method Summary
Modifier and TypeMethodDescriptiongetOrderBook(CurrencyPair currencyPair, Object... args) Get an order book representing the current offered exchange rates (market depth)getTicker(CurrencyPair currencyPair, Object... args) Get a ticker representing the current exchange rategetTickers(Params params) Get the tickers representing the current exchange rate for the provided parametersgetTrades(CurrencyPair currencyPair, Object... args) Get the trades recently performed by the exchangeMethods inherited from class org.knowm.xchange.kucoin.KucoinMarketDataServiceRaw
getKucoin24hrStats, getKucoinBaseFee, getKucoinCurrencies, getKucoinCurrencies, getKucoinKlines, getKucoinOrderBookFull, getKucoinOrderBookPartial, getKucoinOrderBookPartialShallow, getKucoinPrices, getKucoinSymbols, getKucoinSymbolsV2, getKucoinTicker, getKucoinTickers, getKucoinTradeFee, getKucoinTradesMethods inherited from class org.knowm.xchange.kucoin.KucoinBaseService
checkAuthenticatedMethods inherited from class org.knowm.xchange.service.BaseResilientExchangeService
decorateApiCall, rateLimiter, rateLimiter, retry, retryMethods inherited from class org.knowm.xchange.service.BaseExchangeService
verifyOrder, verifyOrder, verifyOrderMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.knowm.xchange.service.marketdata.MarketDataService
getCandleStickData, getFundingRate, getFundingRates, getOrderBook, getOrderBook, getTicker, getTrades, getTrades
-
Field Details
-
PARAM_FULL_ORDERBOOK
Set on calls togetOrderBook(CurrencyPair, Object...)to return the full orderbook rather than the default 100 prices either side.- See Also:
-
PARAM_PARTIAL_SHALLOW_ORDERBOOK
Set on calls togetOrderBook(CurrencyPair, Object...)to return the shallow partial orderbook depth of 20.- See Also:
-
-
Constructor Details
-
KucoinMarketDataService
protected KucoinMarketDataService(KucoinExchange exchange, ResilienceRegistries resilienceRegistries)
-
-
Method Details
-
getTicker
Description copied from interface:MarketDataServiceGet a ticker representing the current exchange rate- Specified by:
getTickerin interfaceMarketDataService- Returns:
- The Ticker, null if some sort of error occurred. Implementers should log the error.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
getTickers
Description copied from interface:MarketDataServiceGet the tickers representing the current exchange rate for the provided parameters- Specified by:
getTickersin interfaceMarketDataService- Returns:
- The Tickers, null if some sort of error occurred. Implementers should log the error.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
getOrderBook
Description copied from interface:MarketDataServiceGet an order book representing the current offered exchange rates (market depth)- Specified by:
getOrderBookin interfaceMarketDataService- Parameters:
args- Optional arguments. Exchange-specific- Returns:
- The OrderBook, null if some sort of error occurred. Implementers should log the error.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-
getTrades
Description copied from interface:MarketDataServiceGet the trades recently performed by the exchange- Specified by:
getTradesin interfaceMarketDataService- Parameters:
args- Optional arguments. Exchange-specific- Returns:
- The Trades, null if some sort of error occurred. Implementers should log the error.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-