}
@Override
public OrderBook getOrderBook(CurrencyPair currencyPair, Object... args) throws IOException {
VircurexDepth vircurexDepth = getVircurexOrderBook(currencyPair);
// Adapt to XChange DTOs
List<LimitOrder> asks = VircurexAdapters.adaptOrders(vircurexDepth.getAsks(), currencyPair, "ask", "");
List<LimitOrder> bids = VircurexAdapters.adaptOrders(vircurexDepth.getBids(), currencyPair, "bid", "");
return new OrderBook(new Date(), asks, bids);
}