XChange icon indicating copy to clipboard operation
XChange copied to clipboard

XChange is a Java library providing a streamlined API for interacting with 60+ Bitcoin and Altcoin exchanges providing a consistent interface for trading and accessing market data.

Results 241 XChange issues
Sort by recently updated
recently updated
newest added

This is a WIP but it has the barebones of at least Ticker streaming from a simulated exchange. It would need to improve the simulated exchange engine to allow more...

I am just wondering, why is there no android app using xchange on google play? Are there any legal or technical reasons why I cannot do that? I'd like to...

I am trying to extract trades from my Binance account with the following code: ``` ExchangeSpecification exSpec = new BinanceExchange().getDefaultExchangeSpecification(); // Define API key exSpec.setApiKey(keys.get(i).getAPIKey()); exSpec.setSecretKey(keys.get(i).getAPISecretKey()); Exchange binance = ExchangeFactory.INSTANCE.createExchange(exSpec);...

dydx and dydx stream module error. class name is lowercase

BTC-USD unit test works, as does KrakenOrderBookExample with ETH_USD but in real multithreaded life: 20:56:14.553[WARN ][nioEv..-3-1][i.b.x.kraken.KrakenStreamingAdapters]ETH/USD checksum does not match, expected 2505503822 but local checksum is 3675703619 20:56:14.554[WARN ][nioEv..-3-1][i.b.x.k.KrakenStreamingMarketDataService]Resubscribing ETH/USD...

- Xchange version: 5.0.14-SNAPSHOT - Kotlin JVM: 1.8 > The following code is executed under Kotlin coroutine in ViewModelScope with IO dispatcher. Kotlin code: ``` val binanceSpecification = BinanceStreamingExchange().defaultExchangeSpecification binanceSpecification.apiKey...

Right now the method ftx.getTradeService.getOrder(orderId) shows you something like that : LimitOrder [limitPrice=null, Order [type=BID, originalAmount=18.0, cumulativeAmount=18.0, averagePrice=1.090025, fee=null, instrument=XRP/USDT, id=8004102994, timestamp=Fri Sep 17 10:15:28 GET 2021, status=CLOSED, flags=[null, IOC],...

Currently the ftx polling services has the following issues 1) When orders are cancelled, the cumulative qty is set to the order size Currently the ftx streaming services has the...

Some exchanges implement a ping/pong heartbeats, however I am not sure this is implemented via the streaming services. It might be useful for upstream applications to issue heartbeats, and then...