Class BitfinexMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService<E>
org.knowm.xchange.service.BaseResilientExchangeService<BitfinexExchange>
org.knowm.xchange.bitfinex.service.BitfinexBaseService
org.knowm.xchange.bitfinex.service.BitfinexMarketDataServiceRaw
org.knowm.xchange.bitfinex.service.BitfinexMarketDataService
- All Implemented Interfaces:
BaseService,MarketDataService
public class BitfinexMarketDataService
extends BitfinexMarketDataServiceRaw
implements MarketDataService
Implementation of the market data service for Bitfinex
- Provides access to various market data values
-
Field Summary
Fields inherited from class org.knowm.xchange.bitfinex.service.BitfinexBaseService
apiKey, bitfinex, bitfinexV2, payloadCreator, signatureCreator, signatureV2Fields inherited from class org.knowm.xchange.service.BaseResilientExchangeService
resilienceRegistriesFields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange -
Constructor Summary
ConstructorsConstructorDescriptionBitfinexMarketDataService(BitfinexExchange exchange, ResilienceRegistries resilienceRegistries) Constructor -
Method Summary
Modifier and TypeMethodDescriptiongetLendOrderBook(String currency, Object... args) 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.bitfinex.service.BitfinexMarketDataServiceRaw
fundingBook, fundingBookRaw, getBitfinexLendBook, getBitfinexLends, getBitfinexOrderBook, getBitfinexPlatformStatus, getBitfinexPublicFundingTrades, getBitfinexPublicTrades, getBitfinexSymbols, getBitfinexTicker, getBitfinexTickers, getBitfinexTickerV2, getBitfinexTrades, getExchangeSymbols, getFundingHistoricCandles, getHistoricCandles, getStats, getStatus, getSymbolDetails, tradingBook, tradingBookRawMethods inherited from class org.knowm.xchange.service.BaseResilientExchangeService
decorateApiCall, rateLimiter, rateLimiter, retry, retryMethods 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
getCandleStickData, getFundingRate, getFundingRates, getOrderBook, getOrderBook, getTicker, getTrades, getTrades
-
Constructor Details
-
BitfinexMarketDataService
public BitfinexMarketDataService(BitfinexExchange exchange, ResilienceRegistries resilienceRegistries) Constructor- Parameters:
exchange-
-
-
Method Details
-
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- If two integers are provided, then those count as limit bid and limit ask count- 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
-
getLendOrderBook
- Throws:
IOException
-
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
-
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
-