Package org.knowm.xchange.upbit
Interface Upbit
- All Known Subinterfaces:
UpbitAuthenticated
@Path("v1")
public interface Upbit
-
Method Summary
Modifier and TypeMethodDescriptiongetCandleStick
(String timeUnit, long timeUnitCount, String market, String to, Integer count) getOrderBook
(String markets)
-
Method Details
-
getTicker
@GET @Path("ticker") UpbitTickers getTicker(@QueryParam("markets") String markets) throws IOException, UpbitException - Throws:
IOException
UpbitException
-
getMarketAll
- Throws:
IOException
UpbitException
-
getOrderBook
@GET @Path("orderbook") UpbitOrderBooks getOrderBook(@QueryParam("markets") String markets) throws IOException, UpbitException - Throws:
IOException
UpbitException
-
getTrades
@GET @Path("trades/ticks") UpbitTrades getTrades(@QueryParam("market") String market, @QueryParam("count") int count) throws IOException, UpbitException - Throws:
IOException
UpbitException
-
getCandleStick
@GET @Path("candles/{timeUnit}/{timeUnitCount}") List<UpbitCandleStickData> getCandleStick(@PathParam("timeUnit") String timeUnit, @PathParam("timeUnitCount") long timeUnitCount, @QueryParam("market") String market, @QueryParam("to") String to, @QueryParam("count") Integer count) throws IOException, UpbitException - Throws:
IOException
UpbitException
-