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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyTxnHistoryReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyNewAddressReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to usecurrencyID
- currencyCode
- IOException
CryptsyDepositAddressReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyWithdrawalReturn 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 ExchangeSpecification
signer
- 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 addressIOException
CryptsyTransfersReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyOrderBookReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to usemarketID
- marketID to request orderbook data forIOException
CryptsyMarketTradesReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to usemarketID
- marketID to request trades data forIOException
CryptsyGetMarketsReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyTradeHistoryReturn 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 ExchangeSpecification
signer
- 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)IOException
CryptsyTradeHistoryReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to usestartDate
- Start date to display record fromendDate
- Display record until this dateIOException
CryptsyOpenOrdersReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to usemarketID
- marketID to request openorders data forIOException
CryptsyOpenOrdersReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyPlaceOrderReturn 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 ExchangeSpecification
signer
- 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)IOException
CryptsyCancelOrderReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useorderID
- ID of order to cancelIOException
CryptsyCancelMultipleOrdersReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to usemarketID
- marketID in which to cancel ordersIOException
CryptsyCancelMultipleOrdersReturn 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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
CryptsyCalculatedFeesReturn 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 ExchangeSpecification
signer
- 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)IOException
CryptsyGenericReturn<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 ExchangeSpecification
signer
- POST Body Digest instance to use when signing POST requestnonce
- Nonce to useIOException
Copyright © 2012–2018 Xeiam, LLC. All rights reserved.