Package org.knowm.xchange.upbit
Interface UpbitAuthenticated
- All Superinterfaces:
Upbit
@Path("v1") @Produces("application/json") @Consumes("application/json") public interface UpbitAuthenticated extends Upbit
-
Method Summary
Modifier and Type Method Description UpbitOrderResponse
cancelOrder(si.mazi.rescu.ParamsDigest signatureCreator, String uuid)
UpbitOrderResponse
getOrder(si.mazi.rescu.ParamsDigest signatureCreator, String uuid)
UpbitBalances
getWallet(si.mazi.rescu.ParamsDigest signatureCreator)
UpbitOrderResponse
limitOrder(si.mazi.rescu.ParamsDigest signatureCreator, UpbitOrderRequest upbitOrderRequest)
Methods inherited from interface org.knowm.xchange.upbit.Upbit
getMarketAll, getOrderBook, getTicker, getTrades
-
Method Details
-
getWallet
@GET @Path("accounts") UpbitBalances getWallet(@HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signatureCreator) throws IOException, UpbitException- Throws:
IOException
UpbitException
-
limitOrder
@POST @Path("orders") UpbitOrderResponse limitOrder(@HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signatureCreator, UpbitOrderRequest upbitOrderRequest) throws IOException, UpbitException- Throws:
IOException
UpbitException
-
cancelOrder
@DELETE @Path("order") UpbitOrderResponse cancelOrder(@HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signatureCreator, @QueryParam("uuid") String uuid) throws IOException, UpbitException- Throws:
IOException
UpbitException
-
getOrder
@GET @Path("order") UpbitOrderResponse getOrder(@HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signatureCreator, @QueryParam("uuid") String uuid) throws IOException, UpbitException- Throws:
IOException
UpbitException
-