Package org.knowm.xchange.upbit.service
Class UpbitMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.upbit.service.UpbitBaseService
org.knowm.xchange.upbit.service.UpbitMarketDataServiceRaw
org.knowm.xchange.upbit.service.UpbitMarketDataService
- All Implemented Interfaces:
BaseService,MarketDataService
- Author:
- interwater
-
Field Summary
Fields inherited from class org.knowm.xchange.upbit.service.UpbitBaseService
apiKey, apiSecret, signatureCreator, upbit, urlFields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCandleStickData(CurrencyPair currencyPair, CandleStickDataParams params) Get the CandleStickData for given currency between startDate to endDate.getOrderBook(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.upbit.service.UpbitMarketDataServiceRaw
getMarketAll, getTicker, getTickers, getTrades, getUpbitCandleStickData, getUpbitOrderBookMethods 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
getFundingRate, getFundingRates, getOrderBook, getOrderBook, getTicker, getTrades, getTrades
-
Constructor Details
-
UpbitMarketDataService
Constructor- Parameters:
exchange-
-
-
Method Details
-
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
-
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
-
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
-
getMetaData
- Throws:
IOException
-
getCandleStickData
public CandleStickData getCandleStickData(CurrencyPair currencyPair, CandleStickDataParams params) throws IOException Description copied from interface:MarketDataServiceGet the CandleStickData for given currency between startDate to endDate.- Specified by:
getCandleStickDatain interfaceMarketDataService- Parameters:
currencyPair- currencyPair.params- Params for query, including start(e.g. march 2022.) and end date, period etc.,- Returns:
- The CandleStickData, null if some sort of error occurred. Implementers should log the error.
- Throws:
IOException- - Indication that a networking error occurred while fetching JSON data
-