Package org.knowm.xchange.binance
Class BinanceExchange
java.lang.Object
org.knowm.xchange.BaseExchange
org.knowm.xchange.binance.BinanceExchange
- All Implemented Interfaces:
Exchange
- Direct Known Subclasses:
BinanceStreamingExchange
,BinanceUsExchange
public class BinanceExchange extends BaseExchange implements Exchange
-
Field Summary
Fields Modifier and Type Field Description static String
FUTURES_URL
protected static ResilienceRegistries
RESILIENCE_REGISTRIES
static String
SANDBOX_FUTURES_URL
static String
SPECIFIC_PARAM_USE_FUTURES_SANDBOX
static String
SPECIFIC_PARAM_USE_SANDBOX
protected si.mazi.rescu.SynchronizedValueFactory<Long>
timestampFactory
Fields inherited from class org.knowm.xchange.BaseExchange
accountService, exchangeMetaData, exchangeSpecification, logger, marketDataService, tradeService
Fields inherited from interface org.knowm.xchange.Exchange
USE_SANDBOX
-
Constructor Summary
Constructors Constructor Description BinanceExchange()
-
Method Summary
Modifier and Type Method Description void
applySpecification(ExchangeSpecification exchangeSpecification)
Applies any exchange specific parametersExchangeSpecification
getDefaultExchangeSpecification()
si.mazi.rescu.SynchronizedValueFactory<Long>
getNonceFactory()
The nonce factory used to create a nonce value.ResilienceRegistries
getResilienceRegistries()
resilience4j registries with retry strategies, rate limiters, etc.si.mazi.rescu.SynchronizedValueFactory<Long>
getTimestampFactory()
protected void
initServices()
protected boolean
isAuthenticated()
boolean
isFuturesSandbox()
void
remoteInit()
Initialize this instance with the remote meta data.static void
resetResilienceRegistries()
boolean
usingSandbox()
Methods inherited from class org.knowm.xchange.BaseExchange
getAccountService, getExchangeInstruments, getExchangeMetaData, getExchangeSpecification, getMarketDataService, getMetaDataFileName, getTradeService, loadExchangeMetaData, loadMetaData, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.knowm.xchange.Exchange
getAccountService, getExchangeInstruments, getExchangeMetaData, getExchangeSpecification, getMarketDataService, getTradeService
-
Field Details
-
SPECIFIC_PARAM_USE_SANDBOX
- See Also:
- Constant Field Values
-
SPECIFIC_PARAM_USE_FUTURES_SANDBOX
- See Also:
- Constant Field Values
-
FUTURES_URL
- See Also:
- Constant Field Values
-
SANDBOX_FUTURES_URL
- See Also:
- Constant Field Values
-
RESILIENCE_REGISTRIES
-
timestampFactory
-
-
Constructor Details
-
BinanceExchange
public BinanceExchange()
-
-
Method Details
-
initServices
protected void initServices()- Specified by:
initServices
in classBaseExchange
-
getTimestampFactory
-
getNonceFactory
Description copied from interface:Exchange
The nonce factory used to create a nonce value. Allows services to accept a placeholder that is replaced with generated value just before message is serialized and sent. If a method of a rest accepts ValueFactory as a parameter, it's evaluated, the message is serialized and sent in a single synchronized block.- Specified by:
getNonceFactory
in interfaceExchange
- Overrides:
getNonceFactory
in classBaseExchange
- Returns:
- Synchronized value factory
-
resetResilienceRegistries
public static void resetResilienceRegistries() -
getResilienceRegistries
Description copied from interface:Exchange
resilience4j registries with retry strategies, rate limiters, etc. used for this exchange.- Specified by:
getResilienceRegistries
in interfaceExchange
- Returns:
- resilience4j registries
-
getDefaultExchangeSpecification
- Specified by:
getDefaultExchangeSpecification
in interfaceExchange
- Returns:
- A default ExchangeSpecification to use during the creation process if one is not supplied
-
applySpecification
Description copied from interface:Exchange
Applies any exchange specific parameters- Specified by:
applySpecification
in interfaceExchange
- Overrides:
applySpecification
in classBaseExchange
- Parameters:
exchangeSpecification
- TheExchangeSpecification
-
isFuturesSandbox
public boolean isFuturesSandbox() -
usingSandbox
public boolean usingSandbox() -
remoteInit
public void remoteInit()Description copied from interface:Exchange
Initialize this instance with the remote meta data. Most exchanges require this method to be called beforeExchange.getExchangeMetaData()
. Some exchanges require it before using some of their services.- Specified by:
remoteInit
in interfaceExchange
- Overrides:
remoteInit
in classBaseExchange
-
isAuthenticated
protected boolean isAuthenticated()
-