
org.knowm.xchange.truefx.TrueFxPublic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-truefx Show documentation
Show all versions of xchange-truefx Show documentation
XChange implementation for TrueFX
The newest version!
package org.knowm.xchange.truefx;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import java.io.IOException;
import org.knowm.xchange.currency.CurrencyPair;
import org.knowm.xchange.truefx.dto.marketdata.TrueFxTicker;
@Path("")
public interface TrueFxPublic {
@GET
@Path("rates/connect.html?f=csv&c={pair}")
TrueFxTicker getTicker(@PathParam("pair") CurrencyPair pair) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy