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
public class UpbitMarketDataService extends UpbitMarketDataServiceRaw implements MarketDataService
- Author:
- interwater
-
-
Field Summary
-
Fields inherited from class org.knowm.xchange.upbit.service.UpbitBaseService
apiKey, apiSecret, signatureCreator, upbit, url
-
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
-
Constructor Summary
Constructors Constructor Description UpbitMarketDataService(Exchange exchange)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExchangeMetaData
getMetaData()
OrderBook
getOrderBook(CurrencyPair currencyPair, Object... args)
Get an order book representing the current offered exchange rates (market depth)Ticker
getTicker(CurrencyPair currencyPair, Object... args)
Get a ticker representing the current exchange rateList<Ticker>
getTickers(Params params)
Get the tickers representing the current exchange rate for the provided parametersTrades
getTrades(CurrencyPair currencyPair, Object... args)
Get the trades recently performed by the exchange-
Methods inherited from class org.knowm.xchange.upbit.service.UpbitMarketDataServiceRaw
getMarketAll, getTicker, getTickers, getTrades, getUpbitOrderBook
-
Methods inherited from class org.knowm.xchange.service.BaseExchangeService
verifyOrder, verifyOrder, verifyOrder
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.knowm.xchange.service.marketdata.MarketDataService
getOrderBook, getTrades
-
-
-
-
Constructor Detail
-
UpbitMarketDataService
public UpbitMarketDataService(Exchange exchange)
Constructor- Parameters:
exchange
-
-
-
Method Detail
-
getTickers
public List<Ticker> getTickers(Params params) throws IOException
Description copied from interface:MarketDataService
Get the tickers representing the current exchange rate for the provided parameters- Specified by:
getTickers
in 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
public Ticker getTicker(CurrencyPair currencyPair, Object... args) throws IOException
Description copied from interface:MarketDataService
Get a ticker representing the current exchange rate- Specified by:
getTicker
in 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
public OrderBook getOrderBook(CurrencyPair currencyPair, Object... args) throws IOException
Description copied from interface:MarketDataService
Get an order book representing the current offered exchange rates (market depth)- Specified by:
getOrderBook
in interfaceMarketDataService
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
public Trades getTrades(CurrencyPair currencyPair, Object... args) throws IOException
Description copied from interface:MarketDataService
Get the trades recently performed by the exchange- Specified by:
getTrades
in interfaceMarketDataService
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
public ExchangeMetaData getMetaData() throws IOException
- Throws:
IOException
-
-