Class CoinjarMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.coinjar.service.CoinjarBaseService
org.knowm.xchange.coinjar.service.CoinjarMarketDataService
- All Implemented Interfaces:
BaseService
,MarketDataService
-
Field Summary
Fields inherited from class org.knowm.xchange.coinjar.service.CoinjarBaseService
authorizationHeader, coinjarData, coinjarTrading, LIVE_URL, SANDBOX_URL
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
Constructor Summary
Constructors -
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 parametersMethods 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, getTrades
-
Constructor Details
-
CoinjarMarketDataService
-
-
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
-
getOrderBook
Description copied from interface:MarketDataService
Get an order book representing the current offered exchange rates (market depth)- Specified by:
getOrderBook
in 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
-