}
public ArrayList<BittrexTicker> getBittrexTickers() throws IOException {
BittrexTickersResponse response = bittrex.getTickers();
if (response.isSuccess()) {
return response.getTickers();
}
else {
throw new ExchangeException(response.getMessage());
}
}