public interface CryptsyAuthenticated
| Modifier and Type | Interface and Description |
|---|---|
static class |
CryptsyAuthenticated.SortOrder |
| Modifier and Type | Method and Description |
|---|---|
CryptsyOpenOrdersReturn |
allmyorders(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyTradeHistoryReturn |
allmytrades(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
String startDate,
String endDate) |
CryptsyCalculatedFeesReturn |
calculatefees(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
String orderType,
BigDecimal quantity,
BigDecimal price) |
CryptsyCancelMultipleOrdersReturn |
cancelallorders(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyCancelMultipleOrdersReturn |
cancelmarketorders(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int marketID) |
CryptsyCancelOrderReturn |
cancelorder(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int orderID) |
CryptsyPlaceOrderReturn |
createorder(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int marketID,
String orderType,
BigDecimal quantity,
BigDecimal price) |
CryptsyNewAddressReturn |
generatenewaddress(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
Integer currencyID,
String currencyCode) |
CryptsyAccountInfoReturn |
getinfo(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyGetMarketsReturn |
getmarkets(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyDepositAddressReturn |
getmydepositaddresses(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyGenericReturn<String> |
getwalletstatus(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce)
Stub method - to be added at later date
|
CryptsyWithdrawalReturn |
makewithdrawal(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
String address,
BigDecimal amount) |
CryptsyOrderBookReturn |
marketorders(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int marketID) |
CryptsyMarketTradesReturn |
markettrades(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int marketID) |
CryptsyOpenOrdersReturn |
myorders(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int marketID) |
CryptsyTradeHistoryReturn |
mytrades(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce,
int marketID,
int resultCount) |
CryptsyTxnHistoryReturn |
mytransactions(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyTransfersReturn |
mytransfers(String apiKey,
si.mazi.rescu.ParamsDigest signer,
si.mazi.rescu.SynchronizedValueFactory<Long> nonce) |
CryptsyAccountInfoReturn getinfo(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyTxnHistoryReturn mytransactions(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyNewAddressReturn generatenewaddress(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, @Nullable Integer currencyID, @Nullable String currencyCode) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usecurrencyID - currencyCode - IOExceptionCryptsyDepositAddressReturn getmydepositaddresses(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyWithdrawalReturn makewithdrawal(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String address, BigDecimal amount) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useaddress - Pre-Approved address to make this request toamount - Amount to withdraw to address (Currency determined by withdrawal addressIOExceptionCryptsyTransfersReturn mytransfers(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyOrderBookReturn marketorders(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int marketID) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usemarketID - marketID to request orderbook data forIOExceptionCryptsyMarketTradesReturn markettrades(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int marketID) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usemarketID - marketID to request trades data forIOExceptionCryptsyGetMarketsReturn getmarkets(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyTradeHistoryReturn mytrades(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int marketID, int resultCount) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usemarketID - marketID to request trades data forresultCount - Number of results to display (default: 1000)IOExceptionCryptsyTradeHistoryReturn allmytrades(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String startDate, String endDate) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usestartDate - Start date to display record fromendDate - Display record until this dateIOExceptionCryptsyOpenOrdersReturn myorders(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int marketID) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usemarketID - marketID to request openorders data forIOExceptionCryptsyOpenOrdersReturn allmyorders(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyPlaceOrderReturn createorder(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int marketID, String orderType, BigDecimal quantity, BigDecimal price) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usemarketID - marketID in which to create ordersorderType - OrderType (Buy/Sell)quantity - quantity to trade(BigDecimal)price - Price to be sold at (BigDecimal)IOExceptionCryptsyCancelOrderReturn cancelorder(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int orderID) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useorderID - ID of order to cancelIOExceptionCryptsyCancelMultipleOrdersReturn cancelmarketorders(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, int marketID) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to usemarketID - marketID in which to cancel ordersIOExceptionCryptsyCancelMultipleOrdersReturn cancelallorders(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCryptsyCalculatedFeesReturn calculatefees(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce, String orderType, BigDecimal quantity, BigDecimal price) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useorderType - OrderType (Buy/Sell)quantity - quantity to trade(BigDecimal)price - Price to be sold at (BigDecimal)IOExceptionCryptsyGenericReturn<String> getwalletstatus(@HeaderParam(value="Key") String apiKey, @HeaderParam(value="Sign") si.mazi.rescu.ParamsDigest signer, si.mazi.rescu.SynchronizedValueFactory<Long> nonce) throws IOException
apiKey - API key as given in ExchangeSpecificationsigner - POST Body Digest instance to use when signing POST requestnonce - Nonce to useIOExceptionCopyright © 2012–2017 Xeiam, LLC. All rights reserved.