org.knowm.xchange.gateio.GateioUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-gateio Show documentation
Show all versions of xchange-gateio Show documentation
XChange implementation for the Gate.io Exchange
package org.knowm.xchange.gateio;
import org.knowm.xchange.currency.CurrencyPair;
public class GateioUtils {
public static String toPairString(CurrencyPair currencyPair) {
String baseSymbol = currencyPair.base.getCurrencyCode().toLowerCase();
String counterSymbol = currencyPair.counter.getCurrencyCode().toLowerCase();
String pair = baseSymbol + "_" + counterSymbol;
return pair;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy