-
Methods in org.knowm.xchange.luno that return LunoQuote
Modifier and Type |
Method |
Description |
LunoQuote |
LunoAPI.createQuote(OrderType type,
BigDecimal baseAmount,
String pair) |
Creates a new quote to buy or sell a particular amount.
You can specify either the exact amount that you want to pay or the exact amount that you want
too receive.
For example, to buy exactly 0.1 Bitcoin using ZAR, you would create a quote to BUY 0.1 XBTZAR.
|
LunoQuote |
LunoAPIImpl.createQuote(OrderType type,
BigDecimal baseAmount,
String pair) |
|
LunoQuote |
LunoAuthenticated.createQuote(si.mazi.rescu.ParamsDigest auth,
OrderType type,
BigDecimal baseAmount,
String pair) |
Creates a new quote to buy or sell a particular amount.
You can specify either the exact amount that you want to pay or the exact amount that you want
too receive.
For example, to buy exactly 0.1 Bitcoin using ZAR, you would create a quote to BUY 0.1 XBTZAR.
|
LunoQuote |
LunoAPI.discardQuote(String quoteId) |
Discard a quote.
|
LunoQuote |
LunoAPIImpl.discardQuote(String quoteId) |
|
LunoQuote |
LunoAuthenticated.discardQuote(si.mazi.rescu.ParamsDigest auth,
String quoteId) |
Discard a quote.
|
LunoQuote |
LunoAPI.exerciseQuote(String quoteId) |
Exercise a quote to perform the trade.
|
LunoQuote |
LunoAPIImpl.exerciseQuote(String quoteId) |
|
LunoQuote |
LunoAuthenticated.exerciseQuote(si.mazi.rescu.ParamsDigest auth,
String quoteId) |
Exercise a quote to perform the trade.
|
LunoQuote |
LunoAPI.getQuote(String quoteId) |
Get the latest status of a quote.
|
LunoQuote |
LunoAPIImpl.getQuote(String quoteId) |
|
LunoQuote |
LunoAuthenticated.getQuote(si.mazi.rescu.ParamsDigest auth,
String quoteId) |
Get the latest status of a quote.
|