org.knowm.xchange.kucoin.KucoinExchange Maven / Gradle / Ivy
package org.knowm.xchange.kucoin;
import java.io.IOException;
import org.knowm.xchange.BaseExchange;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.ExchangeSpecification;
import org.knowm.xchange.exceptions.ExchangeException;
import org.knowm.xchange.kucoin.service.KucoinAccountService;
import org.knowm.xchange.kucoin.service.KucoinMarketDataService;
import org.knowm.xchange.kucoin.service.KucoinTradeService;
import org.knowm.xchange.utils.nonce.CurrentTimeNonceFactory;
import si.mazi.rescu.SynchronizedValueFactory;
public class KucoinExchange extends BaseExchange implements Exchange {
private SynchronizedValueFactory nonceFactory = new CurrentTimeNonceFactory();
@Override
protected void initServices() {
this.marketDataService = new KucoinMarketDataService(this);
this.accountService = new KucoinAccountService(this);
this.tradeService = new KucoinTradeService(this);
}
@Override
public ExchangeSpecification getDefaultExchangeSpecification() {
ExchangeSpecification exchangeSpecification =
new ExchangeSpecification(this.getClass().getCanonicalName());
exchangeSpecification.setSslUri("https://api.kucoin.com/");
exchangeSpecification.setHost("kucoin.com");
exchangeSpecification.setPort(80);
exchangeSpecification.setExchangeName("Kucoin");
exchangeSpecification.setExchangeDescription("Kucoin is a bitcoin and altcoin exchange.");
return exchangeSpecification;
}
@Override
public SynchronizedValueFactory getNonceFactory() {
return nonceFactory;
}
@Override
public void remoteInit() throws IOException, ExchangeException {
exchangeMetaData = ((KucoinMarketDataService) marketDataService).getMetadata();
}
}