
com.xeiam.xchange.cointrader.CointraderExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-cointrader Show documentation
Show all versions of xchange-cointrader Show documentation
XChange implementation for the Cointrader Exchange
The newest version!
package com.xeiam.xchange.cointrader;
import com.xeiam.xchange.BaseExchange;
import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeSpecification;
import com.xeiam.xchange.cointrader.service.polling.CointraderAccountService;
import com.xeiam.xchange.cointrader.service.polling.CointraderMarketDataService;
import com.xeiam.xchange.cointrader.service.polling.CointraderTradeService;
import si.mazi.rescu.SynchronizedValueFactory;
/**
* @author Matija Mazi
*/
public class CointraderExchange extends BaseExchange implements Exchange {
public static final String CURRENCY_PAIR = "CURRENCY_PAIR";
@Override
public void applySpecification(ExchangeSpecification exchangeSpecification) {
super.applySpecification(exchangeSpecification);
this.pollingMarketDataService = new CointraderMarketDataService(this);
if (exchangeSpecification.getApiKey() != null && exchangeSpecification.getSecretKey() != null) {
this.pollingTradeService = new CointraderTradeService(this);
this.pollingAccountService = new CointraderAccountService(this);
}
}
@Override
public ExchangeSpecification getDefaultExchangeSpecification() {
ExchangeSpecification exchangeSpecification = new ExchangeSpecification(this.getClass().getCanonicalName());
exchangeSpecification.setSslUri("https://www.cointrader.net");
// exchangeSpecification.setSslUri("https://sandbox.cointrader.net");
exchangeSpecification.setHost("www.cointrader.net");
exchangeSpecification.setPort(80);
exchangeSpecification.setExchangeName("Cointrader");
return exchangeSpecification;
}
@Override
public SynchronizedValueFactory getNonceFactory() {
throw new UnsupportedOperationException("No nonce factory is used.");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy