Package org.knowm.xchange.coinone
Interface Coinone
- All Known Subinterfaces:
CoinoneAuthenticated
public interface Coinone
-
Method Summary
Modifier and Type Method Description CoinoneOrderBook
getOrderBook(String currency)
CoinoneTicker
getTicker(String currency)
CoinoneTrades
getTrades(String currency, String period)
-
Method Details
-
getTicker
@GET @Path("ticker") CoinoneTicker getTicker(@QueryParam("currency") String currency) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
getOrderBook
@GET @Path("orderbook") CoinoneOrderBook getOrderBook(@QueryParam("currency") String currency) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-
getTrades
@GET @Path("trades") CoinoneTrades getTrades(@QueryParam("currency") String currency, @QueryParam("currency") String period) throws IOException, CoinoneException- Throws:
IOException
CoinoneException
-