System.out.println("Low: " + ticker.getLow().toString());
}
private static void raw(Exchange bitcurex, String currency) throws IOException {
BitcurexMarketDataServiceRaw bitcurexMarketDataServiceRaw = (BitcurexMarketDataServiceRaw) bitcurex.getPollingMarketDataService();
// Get the latest ticker data showing BTC to EUR
BitcurexTicker ticker = bitcurexMarketDataServiceRaw.getBitcurexTicker(currency);
System.out.println("Last: " + ticker.getLast().toString());
System.out.println("Vol: " + ticker.getVolume());
System.out.println("High: " + ticker.getHigh().toString());
System.out.println("Low: " + ticker.getLow().toString());