Description Usage Arguments Value Examples
Returns all of your account balances, including available balance, balance on orders, and the estimated BTC value of your balance. By default, this call is limited to your exchange account; set the all.balances input parameter to TRUE to include your margin and lending accounts.
1 2 3 | ## S4 method for signature 'PoloniexTradingAPI'
ReturnCompleteBalances(theObject,
all.balances = FALSE)
|
theObject |
The Trading client API object on which the function should be called. |
all.balances |
logical - set to TRUE to also return margin and lending account balances. |
todo
1 2 3 4 5 6 7 8 9 | ## Not run:
poloniex.trading <- PoloniexTradingAPI(your.key, your.secret)
balances <- ReturnCompleteBalances(poloniex.trading)
head(balances)
balances.all <- ReturnCompleteBalances(poloniex.trading)
head(balances.all)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.