Class CmcMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.coinmarketcap.pro.v1.service.CmcMarketDataService
- All Implemented Interfaces:
BaseService
,MarketDataService
public class CmcMarketDataService extends BaseExchangeService implements MarketDataService
-
Field Summary
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
Constructor Summary
Constructors Constructor Description CmcMarketDataService(Exchange exchange)
-
Method Summary
Modifier and Type Method Description List<Ticker>
getAllTickers()
CmcCurrencyInfo
getCmcCurrencyInfo(Currency currency)
List<CmcCurrency>
getCmcCurrencyList()
List<CmcTicker>
getCmcLatestDataForAllCurrencies()
List<CmcTicker>
getCmcLatestDataForAllCurrencies(int startIndex, int limitIndex, String currencyCounters, String sortByField, String sortDirection, String currencyType)
Map<String,CmcTicker>
getCmcLatestQuote(CurrencyPair currencyPair)
Map<String,CmcTicker>
getCmcLatestQuotes(Set<Currency> baseCurrencySet, Set<Currency> convertCurrencySet)
Map<String,CmcCurrencyInfo>
getCmcMultipleCurrencyInfo(List<Currency> currencyList)
OrderBook
getOrderBook(CurrencyPair currencyPair, Object... objects)
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... objects)
Get the trades recently performed by the exchangeMethods 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
getCandleStickData, getFundingRate, getFundingRates, getOrderBook, getOrderBook, getTicker, getTrades, getTrades
-
Constructor Details
-
CmcMarketDataService
-
-
Method Details
-
getTicker
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
-
getTickers
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
-
getAllTickers
- Throws:
IOException
-
getOrderBook
Description copied from interface:MarketDataService
Get an order book representing the current offered exchange rates (market depth)- Specified by:
getOrderBook
in interfaceMarketDataService
objects
- Optional arguments. Exchange-specific- Returns:
- The OrderBook, null if some sort of error occurred. Implementers should log the error.
-
getTrades
Description copied from interface:MarketDataService
Get the trades recently performed by the exchange- Specified by:
getTrades
in interfaceMarketDataService
objects
- Optional arguments. Exchange-specific- Returns:
- The Trades, null if some sort of error occurred. Implementers should log the error.
-
getCmcCurrencyInfo
- Throws:
IOException
-
getCmcMultipleCurrencyInfo
public Map<String,CmcCurrencyInfo> getCmcMultipleCurrencyInfo(List<Currency> currencyList) throws IOException- Throws:
IOException
-
getCmcCurrencyList
- Throws:
IOException
-
getCmcLatestDataForAllCurrencies
- Throws:
IOException
-
getCmcLatestDataForAllCurrencies
public List<CmcTicker> getCmcLatestDataForAllCurrencies(int startIndex, int limitIndex, String currencyCounters, String sortByField, String sortDirection, String currencyType) throws IOException- Throws:
IOException
-
getCmcLatestQuote
- Throws:
IOException
-
getCmcLatestQuotes
public Map<String,CmcTicker> getCmcLatestQuotes(Set<Currency> baseCurrencySet, Set<Currency> convertCurrencySet) throws IOException- Throws:
IOException
-