ReturnCompleteBalances: Returns all of your account balances, including available...

Description Usage Arguments Value Examples

Description

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.

Usage

1
ReturnCompleteBalances(theObject, all.balances = FALSE)

Arguments

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.

Value

todo

Examples

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)

PoloniexR documentation built on July 11, 2017, 1:02 a.m.