com.xeiam.xchange.examples.lakebtc.trade.LakeBTCTradeHistoryDemo 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.lakebtc.trade;
import java.io.IOException;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.dto.marketdata.Trades;
import com.xeiam.xchange.examples.lakebtc.LakeBTCExamplesUtils;
import com.xeiam.xchange.lakebtc.dto.trade.LakeBTCTradeResponse;
import com.xeiam.xchange.lakebtc.service.polling.LakeBTCTradeServiceRaw;
import com.xeiam.xchange.service.polling.trade.PollingTradeService;
/**
* Created by Cristi on 12/22/2014.
*/
public class LakeBTCTradeHistoryDemo {
public static void main(String[] args) throws IOException {
Exchange lakebtcExchange = LakeBTCExamplesUtils.createTestExchange();
generic(lakebtcExchange);
raw(lakebtcExchange);
}
private static void generic(Exchange lakebtcExchange) throws IOException {
PollingTradeService tradeService = lakebtcExchange.getPollingTradeService();
// Get the trade history
Trades trades = tradeService.getTradeHistory();
System.out.println(trades);
trades = tradeService.getTradeHistory(tradeService.createTradeHistoryParams());
System.out.println(trades);
}
private static void raw(Exchange lakeBtcExchange) throws IOException {
LakeBTCTradeServiceRaw tradeService = (LakeBTCTradeServiceRaw) lakeBtcExchange.getPollingTradeService();
// Get the trade history
LakeBTCTradeResponse[] trades = tradeService.getLakeBTCTradeHistory(0);
System.out.println(trades);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy