Package org.knowm.xchange.coindirect
Interface CoindirectAuthenticated
- All Superinterfaces:
Coindirect
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptioncancelExchangeOrder
(String uuid, si.mazi.rescu.ParamsDigest signer) getAccountChannel
(si.mazi.rescu.ParamsDigest signer) getExchangeOrder
(String uuid, si.mazi.rescu.ParamsDigest signer) listExchangeOrders
(String symbol, boolean completed, long offset, long max, si.mazi.rescu.ParamsDigest signer) listWallets
(long max, si.mazi.rescu.ParamsDigest signer) placeExchangeOrder
(CoindirectOrderRequest coindirectOrderRequest, si.mazi.rescu.ParamsDigest signer) Methods inherited from interface org.knowm.xchange.coindirect.Coindirect
getExchangeOrderBook, getHistoricalExchangeData, getHistoricalExchangeTrades, listExchangeMarkets
-
Field Details
-
AUTHORIZATION
- See Also:
-
-
Method Details
-
listWallets
@GET @Path("api/wallet") List<CoindirectWallet> listWallets(@QueryParam("max") long max, @HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signer) throws IOException, CoindirectException - Throws:
IOException
CoindirectException
-
listExchangeOrders
@GET @Path("api/v1/exchange/order") List<CoindirectOrder> listExchangeOrders(@QueryParam("symbol") String symbol, @QueryParam("completed") boolean completed, @QueryParam("offset") long offset, @QueryParam("max") long max, @HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signer) throws IOException, CoindirectException - Throws:
IOException
CoindirectException
-
placeExchangeOrder
@POST @Path("api/v1/exchange/order") @Consumes("application/json") CoindirectOrder placeExchangeOrder(CoindirectOrderRequest coindirectOrderRequest, @HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signer) -
cancelExchangeOrder
@DELETE @Path("api/v1/exchange/order/{uuid}") CoindirectOrder cancelExchangeOrder(@PathParam("uuid") String uuid, @HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signer) -
getExchangeOrder
@GET @Path("api/v1/exchange/order/read/{uuid}") CoindirectOrder getExchangeOrder(@PathParam("uuid") String uuid, @HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signer) -
getAccountChannel
@GET @Path("api/account/channel") CoindirectAccountChannel getAccountChannel(@HeaderParam("Authorization") si.mazi.rescu.ParamsDigest signer) throws IOException, CoindirectException - Throws:
IOException
CoindirectException
-