com.xeiam.xchange.examples.anx.v2.trade.TradesDemo 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.anx.v2.trade;
import java.io.IOException;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.dto.marketdata.Trade;
import com.xeiam.xchange.dto.marketdata.Trades;
import com.xeiam.xchange.examples.anx.v2.ANXExamplesUtils;
import com.xeiam.xchange.service.polling.trade.PollingTradeService;
/**
* Test requesting all open orders at MtGox
*/
public class TradesDemo {
public static void main(String[] args) throws IOException {
Exchange anx = ANXExamplesUtils.createExchange();
// Interested in the private trading functionality (authentication)
PollingTradeService tradeService = anx.getPollingTradeService();
Trades trades = tradeService.getTradeHistory();
for (Trade trade : trades.getTrades()) {
System.out.println(trade);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy