package org.knowm.xchange.examples.anx.v2;
import org.knowm.xchange.Exchange;
import org.knowm.xchange.ExchangeFactory;
import org.knowm.xchange.ExchangeSpecification;
import org.knowm.xchange.anx.v2.ANXExchange;
/**
* @author timmolter
*/
public class ANXExamplesUtils {
public static Exchange createExchange() {
ExchangeSpecification exSpec = new ExchangeSpecification(ANXExchange.class);
exSpec.setApiKey("");
exSpec.setSecretKey("");
return ExchangeFactory.INSTANCE.createExchange(exSpec);
}
}