All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.examples.hitbtc.HitbtcExampleUtils Maven / Gradle / Ivy

package org.knowm.xchange.examples.hitbtc;

import org.knowm.xchange.Exchange;
import org.knowm.xchange.ExchangeFactory;
import org.knowm.xchange.ExchangeSpecification;
import org.knowm.xchange.hitbtc.v2.HitbtcExchange;

public class HitbtcExampleUtils {

  public static Exchange createExchange() {

    ExchangeSpecification exSpec = new ExchangeSpecification(HitbtcExchange.class);
    exSpec.setApiKey("");
    exSpec.setSecretKey("");

    return ExchangeFactory.INSTANCE.createExchange(exSpec);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy