com.xeiam.xchange.examples.btcchina.trade.BTCChinaGetMarketDepthDemo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-examples Show documentation
Show all versions of xchange-examples Show documentation
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