Class CoincheckMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.coincheck.service.CoincheckBaseService
org.knowm.xchange.coincheck.service.CoincheckMarketDataServiceRaw
org.knowm.xchange.coincheck.service.CoincheckMarketDataService
- All Implemented Interfaces:
BaseService
,MarketDataService
public class CoincheckMarketDataService extends CoincheckMarketDataServiceRaw implements MarketDataService
-
Field Summary
Fields inherited from class org.knowm.xchange.coincheck.service.CoincheckBaseService
LOG
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
Constructor Summary
Constructors Constructor Description CoincheckMarketDataService(Exchange exchange)
-
Method Summary
Modifier and Type Method Description OrderBook
getOrderBook(CurrencyPair currencyPair, Object... args)
Get an order book representing the current offered exchange rates (market depth)OrderBook
getOrderBook(Instrument instrument, 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 rateTicker
getTicker(Instrument instrument, Object... args)
Get a ticker representing the current exchange rateTrades
getTrades(CurrencyPair currencyPair, Object... args)
Get the trades recently performed by the exchangeTrades
getTrades(Instrument instrument, Object... args)
Get the trades recently performed by the exchangeMethods inherited from class org.knowm.xchange.coincheck.service.CoincheckMarketDataServiceRaw
getCoincheckOrderBook, getCoincheckTicker, getCoincheckTrades
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
getCandleStickData, getFundingRate, getFundingRates, getOrderBook, getTickers, getTrades
-
Constructor Details
-
CoincheckMarketDataService
-
-
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
-
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
-
getOrderBook
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
-
getOrderBook
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
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
-
getTrades
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
-