public static void main(String[] args) throws Exception {

    CertHelper.trustAllCerts();
    final BitcoiniumRealtimeOrderbookDemo bitcoiniumRealtimeTickerDemo =
        new BitcoiniumRealtimeOrderbookDemo();
    bitcoiniumRealtimeTickerDemo.go();
  }
  public static void main(String[] args) throws Exception {

    CertHelper.trustAllCerts();

    Exchange exchange = CryptoTradeExampleUtils.createExchange();
    PollingAccountService accountService = exchange.getPollingAccountService();

    generic(accountService);
    raw((CryptoTradeAccountServiceRaw) accountService);
  }