Learn R Programming

Rbitcoin (version 0.9.2)

market.api.query.btce: Send request to btce market API

Description

Send request to btce market API.

Usage

market.api.query.btce(url, key, secret, req = list(), verbose = getOption("Rbitcoin.verbose", 0))

Arguments

url
character with url on which query needs to be passed.
key
character API key used in private API calls.
secret
character API secret used in private API calls.
req
list of object passed to API: price and amount of opening order, id of cancelling order, etc. See note.
verbose
integer. Rbitcoin processing messages, print to console if verbose > 0, each subfunction reduce verbose by 1. If missing then getOption("Rbitcoin.verbose",0) is used, by default 0.

Value

R object created by fromJSON decoded result from market's API call.

References

https://btc-e.com/api/documentation

See Also

market.api.query

Examples

Run this code
## Not run: 
# # ticker
# market.api.query.btce(url = 'https://btc-e.com/api/2/btc_usd/ticker')
# # wallet
# market.api.query.btce(url = 'https://btc-e.com/tapi',
#                       req = list(method = 'getInfo'),
#                       key = '', secret = '')
# ## End(Not run)

Run the code above in your browser using DataLab