Package org.knowm.xchange.ccex
Interface CCEXAuthenticated
- All Superinterfaces:
CCEX
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionbalances
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) buylimit
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String lmarket, String rmarket, String quantity, String rate) cancel
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String uuid) getdepositaddress
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String currency) getopenorders
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) getorderhistory
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) selllimit
(String apikey, si.mazi.rescu.ParamsDigest signature, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String lmarket, String rmarket, String quantity, String rate) Methods inherited from interface org.knowm.xchange.ccex.CCEX
getOrderBook, getPairs, getProducts, getTicker, getTrades
-
Method Details
-
balances
@GET @Path("api.html?a=getbalances&apikey={apikey}&nonce={nonce}") CCEXBalancesResponse balances(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException - Throws:
IOException
-
getdepositaddress
@GET @Path("api.html?a=getbalance&apikey={apikey}&nonce={nonce}¤cy={currency}") CCEXBalanceResponse getdepositaddress(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("currency") String currency) throws IOException - Throws:
IOException
-
getopenorders
@GET @Path("api.html?a=getopenorders&apikey={apikey}&nonce={nonce}") CCEXGetopenordersResponse getopenorders(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException - Throws:
IOException
-
getorderhistory
@GET @Path("api.html?a=getorderhistory&apikey={apikey}&nonce={nonce}") CCEXGetorderhistoryResponse getorderhistory(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException - Throws:
IOException
-
cancel
@GET @Path("api.html?a=cancel&apikey={apikey}&nonce={nonce}&uuid={uuid}") CCEXCancelResponse cancel(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("uuid") String uuid) throws IOException - Throws:
IOException
-
buylimit
@GET @Path("api.html?a=buylimit&apikey={apikey}&nonce={nonce}&market={lmarket}-{rmarket}&quantity={quantity}&rate={rate}") CCEXBuySellLimitResponse buylimit(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("lmarket") String lmarket, @PathParam("rmarket") String rmarket, @PathParam("quantity") String quantity, @PathParam("rate") String rate) throws IOException - Throws:
IOException
-
selllimit
@GET @Path("api.html?a=selllimit&apikey={apikey}&nonce={nonce}&market={lmarket}-{rmarket}&quantity={quantity}&rate={rate}") CCEXBuySellLimitResponse selllimit(@PathParam("apikey") String apikey, @HeaderParam("apisign") si.mazi.rescu.ParamsDigest signature, @PathParam("nonce") si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @PathParam("lmarket") String lmarket, @PathParam("rmarket") String rmarket, @PathParam("quantity") String quantity, @PathParam("rate") String rate) throws IOException - Throws:
IOException
-