@Override
public Trades getTrades(CurrencyPair currencyPair, Object... args) throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException {
long from = (Long) args[0];
HitbtcTradesSortOrder sortBy = (HitbtcTradesSortOrder) args[1];
long startIndex = (Long) args[2];
long max_results = (Long) args[3];
return HitbtcAdapters.adaptTrades(getHitbtcTrades(currencyPair, from, sortBy, startIndex, max_results), currencyPair);
}