org.knowm.xchange.koineks.KoineksExchange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-koineks Show documentation
Show all versions of xchange-koineks Show documentation
XChange implementation for the Koineks Exchange
The newest version!
package org.knowm.xchange.koineks;
import org.knowm.xchange.BaseExchange;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.ExchangeSpecification;
import org.knowm.xchange.koineks.service.KoineksMarketDataService;
/**
* @author semihunaldi
*/
public class KoineksExchange extends BaseExchange implements Exchange {
@Override
protected void initServices() {
this.marketDataService = new KoineksMarketDataService(this);
}
@Override
public ExchangeSpecification getDefaultExchangeSpecification() {
ExchangeSpecification exchangeSpecification = new ExchangeSpecification(this.getClass());
exchangeSpecification.setSslUri("https://koineks.com");
exchangeSpecification.setHost("www.koineks.com");
exchangeSpecification.setPort(80);
exchangeSpecification.setExchangeName("Koineks");
exchangeSpecification.setExchangeDescription(
"Koineks is BTC, ETH, LTC, DASH and DOGE exchange registered in Turkey.");
return exchangeSpecification;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy