}
@Override
public OrderBook getOrderBook(CurrencyPair currencyPair, Object... args) throws IOException {
ItBitDepth depth = getItBitDepth(currencyPair, args);
List<LimitOrder> asks = ItBitAdapters.adaptOrders(depth.getAsks(), currencyPair, OrderType.ASK);
List<LimitOrder> bids = ItBitAdapters.adaptOrders(depth.getBids(), currencyPair, OrderType.BID);
return new OrderBook(null, asks, bids);
}