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.
Hi all,
I want to subscribe to the getOrders() method that is in BitmexStreamingTradeService class, but i get an exception
"Exception in thread "main" org.knowm.xchange.exceptions.NotYetImplementedForExchangeException: Feature not yet implemented for exchange.
at info.bitrich.xchangestream.core.StreamingExchange.getStreamingTradeService(StreamingExchange.java:99)"
so i guess this:
/* Returns service that can be used to access streaming trade data. /
default StreamingTradeService getStreamingTradeService() {
throw new NotYetImplementedForExchangeException();
}
should be changed for this in the StreamingExchange interface or something like that:
StreamingTradeService getStreamingTradeService()
Hi all, I want to subscribe to the getOrders() method that is in BitmexStreamingTradeService class, but i get an exception
"Exception in thread "main" org.knowm.xchange.exceptions.NotYetImplementedForExchangeException: Feature not yet implemented for exchange. at info.bitrich.xchangestream.core.StreamingExchange.getStreamingTradeService(StreamingExchange.java:99)"
so i guess this: /* Returns service that can be used to access streaming trade data. / default StreamingTradeService getStreamingTradeService() { throw new NotYetImplementedForExchangeException(); }
should be changed for this in the StreamingExchange interface or something like that: StreamingTradeService getStreamingTradeService()
thanks