All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xeiam.xchange.examples.btcchina.trade.BTCChinaGetMarketDepthDemo Maven / Gradle / Ivy

Go to download

Provides a set of examples that demonstrate how to use XChange in client applications

The newest version!
package com.xeiam.xchange.examples.btcchina.trade;

import java.io.IOException;

import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.btcchina.dto.trade.BTCChinaMarketDepthOrder;
import com.xeiam.xchange.btcchina.dto.trade.response.BTCChinaGetMarketDepthResponse;
import com.xeiam.xchange.btcchina.service.polling.BTCChinaTradeServiceRaw;
import com.xeiam.xchange.examples.btcchina.BTCChinaExamplesUtils;

/**
 * Demo for {@link BTCChinaTradeServiceRaw#getMarketDepth(Integer, String)}.
 */
public class BTCChinaGetMarketDepthDemo {

  private static Exchange exchange = BTCChinaExamplesUtils.getExchange();
  private static BTCChinaTradeServiceRaw tradeService = (BTCChinaTradeServiceRaw) exchange.getPollingTradeService();

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

    getMarketDepth(null, null);
    getMarketDepth(10, null);
    getMarketDepth(null, "LTCCNY");
    getMarketDepth(10, "LTCCNY");

  }

  private static void getMarketDepth(Integer limit, String market) throws IOException {

    System.out.println(String.format("limit: %d, market: %s", limit, market));

    BTCChinaGetMarketDepthResponse response = tradeService.getMarketDepth(limit, market);
    System.out.println(response);

    for (BTCChinaMarketDepthOrder o : response.getResult().getMarketDepth().getBids()) {
      System.out.println(String.format("Bid %s,%s", o.getPrice(), o.getAmount()));
    }

    for (BTCChinaMarketDepthOrder o : response.getResult().getMarketDepth().getAsks()) {
      System.out.println(String.format("Ask %s,%s", o.getPrice(), o.getAmount()));
    }
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy