Description Usage Arguments Value References See Also Examples
The bt_getbalance() function retrieves the account balance
for a specified currency on https://bittrex.com. This function
can only be used after you provide information for authentication.
| 1 | bt_getbalance(currency)
 | 
| currency | currency to retrieve the account balance for. | 
A named list with the following elements:
success: a boolean indicating whether the request was successful.
message: a string describing the error if the request was not successful, otherwise an empty string.
result:  a data.frame with the currency, balance,
available funds, the amount of any pending transactions, and
cryptographic addresses that can be used to receive funding.
https://bittrex.com/api/v1.1/account/getbalances
| 1 2 3 4 5 6 7 | ## Not run: 
Note you must authenticate first.
bt_getbalance("btc")$result
#   currency balance available pending                     crypto_address
# 1      BTC       0         0       0 1Q6WissSMNF7NCNw3sDXQ2F7AbrSCYouj2
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.