}
public ArrayList<BittrexSymbol> getBittrexSymbols() throws IOException {
BittrexSymbolsResponse response = bittrex.getSymbols();
if (response.isSuccess()) {
return response.getSymbols();
}
else {
throw new ExchangeException(response.getMessage());
}
}