org.knowm.xchange.tradeogre.TradeOgre Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-tradeogre Show documentation
Show all versions of xchange-tradeogre Show documentation
XChange implementation for the TradeOgre Exchange
The newest version!
package org.knowm.xchange.tradeogre;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import org.knowm.xchange.tradeogre.dto.marketdata.TradeOgreOrderBook;
import org.knowm.xchange.tradeogre.dto.marketdata.TradeOgreTicker;
@Path("")
public interface TradeOgre {
@GET
@Path("ticker/{market}")
TradeOgreTicker getTicker(@PathParam("market") String market) throws IOException;
@GET
@Path("markets")
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy