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.
- 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.
- If you like the project please star it on GitHub.
- You are interested in a crypto currency trading bot? See my crypto-bot project.
You will find some examples here.
Add these lines to your pom.xml
file
<dependency>
<groupId>com.github.jnidzwetzki</groupId>
<artifactId>bitfinex-v2-wss-api</artifactId>
<version>0.6.9</version>
</dependency>
Add these lines to your build.gradle
file
compile 'com.github.jnidzwetzki:bitfinex-v2-wss-api:0.6.9'
You will find the changelog of the project here.
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).
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. 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. 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());