Class GeminiMarketDataService
java.lang.Object
org.knowm.xchange.service.BaseExchangeService
org.knowm.xchange.gemini.v1.service.GeminiBaseService
org.knowm.xchange.gemini.v1.service.GeminiMarketDataServiceRaw
org.knowm.xchange.gemini.v1.service.GeminiMarketDataService
- All Implemented Interfaces:
BaseService
,MarketDataService
public class GeminiMarketDataService extends GeminiMarketDataServiceRaw implements MarketDataService
Implementation of the market data service for Gemini
- Provides access to various market data values
-
Field Summary
Fields inherited from class org.knowm.xchange.gemini.v1.service.GeminiBaseService
apiKey, gemini, gemini2, payloadCreator, signatureCreator
Fields inherited from class org.knowm.xchange.service.BaseExchangeService
exchange
-
Constructor Summary
Constructors Constructor Description GeminiMarketDataService(Exchange exchange)
Constructor -
Method Summary
Modifier and Type Method Description LoanOrderBook
getLendOrderBook(String currency, Object... args)
OrderBook
getOrderBook(CurrencyPair currencyPair, 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 exchangeMethods inherited from class org.knowm.xchange.gemini.v1.service.GeminiMarketDataServiceRaw
getCandles, getExchangeSymbols, getGeminiLendBook, getGeminiLends, getGeminiOrderBook, getGeminiSymbols, getGeminiTicker, getGeminiTrades, getTicker2
Methods inherited from class org.knowm.xchange.gemini.v1.service.GeminiBaseService
handleException
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, getOrderBook, getTickers, getTrades, getTrades
-
Constructor Details
-
GeminiMarketDataService
Constructor- Parameters:
exchange
-
-
-
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
- 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:MarketDataService
Get the trades recently performed by the exchange- Specified by:
getTrades
in interfaceMarketDataService
- Parameters:
currencyPair
- The CurrencyPair for which to query trades.args
- One argument may be supplied which is the timestamp after which trades should be collected. Trades before this time are not reported. The argument may be of type java.util.Date or Number (milliseconds since Jan 1, 1970)- 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
-