This project provides a Java client library for the Bitfinex WebSocket API (v2). Public and private channels (candles, ticks, executed trades, (raw) orderbooks, orders, and wallets) are implemented.
In contrast to other implementations, this project uses the WSS (web socket secure) streaming API of Bitfinex. Most other projects are poll the REST-API periodically, which leads to delays in data processing. In this implementation, you can register callback methods on ticks, candles or orders. The callbacks are executed, as soon as new data is received from Bitfinex (see the examples section for more details).
Warning: Trading carries significant financial risk; you could lose a lot of money. If you are planning to use this software to trade, you should perform many tests and simulations first. This software is provided 'as is' and released under the Apache 2.0 license.
- If you like the project, please star it on GitHub!
- You need help or do you have questions? Join our chat at gitter.
- For reporting issues, visit our bug tracking system.
- For contributing, see our contributing guide. Project architecture outline can be found here.
- You are interested in a crypto currency trading bot? See my crypto-bot project.
- You need a highly available MySQL server for your trading? Have a look at the following project.
- For more information see https://github.com/jnidzwetzki.
You will find some examples here.
Check for latest version of library at https://mvnrepository.com/artifact/com.github.jnidzwetzki/bitfinex-v2-wss-api
Add these lines to your pom.xml
file
<dependency>
<groupId>com.github.jnidzwetzki</groupId>
<artifactId>bitfinex-v2-wss-api</artifactId>
<version>${bitfinex-v2-wss-api.version}</version>
</dependency>
Add these lines to your build.gradle
file
compile 'com.github.jnidzwetzki:bitfinex-v2-wss-api:${bitfinex-v2-wss-api.version}'
You will find the changelog of the project here.
The old order flags are deprecated by Bitfinex and replaced by the new 'WSv2 order flag'. This change is adapted in this version. Methods like BitfinexOrderBuilder.setHidden()
or BitfinexOrderBuilder.setReduce()
are replaced by BitfinexOrderBuilder.withOrderFlag(BitfinexOrderFlag)
.
Major refactoring has been made around the library. Library is operating in non-blocking manner fully from this version. User may register handlers to listen on upcoming server events through exposed callbacks API. Review Low-level channel subscriptions section of Examples for more details.
BitfinexCurrencyPair
is no longer auto-registering currency pairs in JVM. User should call BitfinexCurrencyPair#registerDefaults() explicitily if one wishes to use them.
The class BitfinexCurrencyPair
now supports dynamic currency creation. Therefore, the old enum consts are removed.
# Old (version <= 0.6.8)
BitfinexCurrencyPair.BTC_USD
# New (version > 0.6.8)
BitfinexCurrencyPair.of("BTC","USD")
The class BitfinexTick
was renamed to BitfinexCandle
and a new class for ticks was introduced.
Starting with version 0.6.3 the value for uninitialized BigDecimal values was unified to null (in version 0.6.2 sometimes -1 and sometimes null was used).
View Details
The BitfinexTick.INVALID_VOLUME is removed and replaced by a Java 8 optional
# Old (version <= 0.6.2)
if (tick.getVolume() != BitfinexTick.INVALID_VOLUME) {
tick.getVolume().doubleValue()
}
# New (version > 0.6.2)
if(tick.getVolume().isPresent()) {
tick.getVolume().get().doubleValue()
}
Since version 0.6.2, the double data type is replaced by the BigDecimal data type for increased precision.
Since version 0.6.1, the Wallets are new managed by the Wallet manager.
View Details
The WalletManager provides the same methods as the BitfinexAPIBroker in previous versions. Execute your wallet related calls on the new WalletManager.
# Old (version <= 0.6.0)
bitfinexClient.getWallets();
# New (version > 0.6.0)
bitfinexClient.getWalletManager().getWallets();
With version 0.6.0 the ta4j dependency was removed.
View Details
For quotes, the API implementation now returns instances of the class BitfinexTick
. To convert a BitfinexTick
into a ta4j Bar
, you can use the following code:
final BitfinexTick tick = ....;
final Instant instant = Instant.ofEpochMilli(tick.getTimestamp());
final ZonedDateTime time = ZonedDateTime.ofInstant(instant, Const.BITFINEX_TIMEZONE);
final Bar bar = new BaseBar(time, tick.getOpen().doubleValue(),
tick.getHigh().doubleValue(),
tick.getLow().doubleValue(),
tick.getClose().doubleValue(),
tick.getVolume().orElse(BigDecimal.ZERO).doubleValue());