
com.xeiam.xchange.poloniex.dto.marketdata.PoloniexTicker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-poloniex Show documentation
Show all versions of xchange-poloniex Show documentation
XChange implementation for the Poloniex Exchange
The newest version!
package com.xeiam.xchange.poloniex.dto.marketdata;
import com.xeiam.xchange.currency.CurrencyPair;
/**
* @author Zach Holmes
*/
public class PoloniexTicker {
private PoloniexMarketData poloniexMarketData;
private CurrencyPair currencyPair;
public PoloniexTicker(PoloniexMarketData poloniexMarketData, CurrencyPair currencyPair) {
super();
this.poloniexMarketData = poloniexMarketData;
this.currencyPair = currencyPair;
}
public PoloniexMarketData getPoloniexMarketData() {
return poloniexMarketData;
}
public CurrencyPair getCurrencyPair() {
return currencyPair;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy