Package org.knowm.xchange.bibox.service
Class BiboxMarketDataService
- java.lang.Object
-
- org.knowm.xchange.service.BaseExchangeService
-
- org.knowm.xchange.bibox.service.BiboxBaseService
-
- org.knowm.xchange.bibox.service.BiboxMarketDataServiceRaw
-
- org.knowm.xchange.bibox.service.BiboxMarketDataService
-
- All Implemented Interfaces:
BaseService
,MarketDataService
public class BiboxMarketDataService extends BiboxMarketDataServiceRaw implements MarketDataService
Implementation of the market data service for Bibox- Provides access to various market data values
- Author:
- odrotleff
-
-
Field Summary
-
Fields inherited from class org.knowm.xchange.bibox.service.BiboxBaseService
apiKey, bibox, signatureCreator
-
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
-
Constructor Summary
Constructors Constructor Description BiboxMarketDataService(Exchange exchange)
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<OrderBook>
getAllOrderBooks(Integer depth)
ExchangeMetaData
getMetadata()
OrderBook
getOrderBook(CurrencyPair currencyPair, Object... args)
Get an order book representing the current offered exchange rates (market depth)List<OrderBook>
getOrderBooks(Integer depth, Collection<CurrencyPair> currencyPairs)
Ticker
getTicker(CurrencyPair currencyPair, Object... args)
Get a ticker representing the current exchange rateTrades
getTrades(CurrencyPair currencyPair, Object... args)
Get the trades recently performed by the exchange-
Methods inherited from class org.knowm.xchange.bibox.service.BiboxMarketDataServiceRaw
getAllBiboxMarkets, getBiboxDeals, getBiboxOrderBook, getBiboxOrderBooks, getBiboxTicker
-
Methods inherited from class org.knowm.xchange.bibox.service.BiboxBaseService
throwErrors
-
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, getTickers, getTrades
-
-
-
-
Constructor Detail
-
BiboxMarketDataService
public BiboxMarketDataService(Exchange exchange)
Constructor- Parameters:
exchange
-
-
-
Method Detail
-
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
-
getOrderBooks
public List<OrderBook> getOrderBooks(Integer depth, Collection<CurrencyPair> currencyPairs)
-
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
-
-