Description Usage Arguments Value Note References See Also Examples
View source: R/market_bitmarket.R
Send request to bitmarket market API.
1 2 | market.api.query.bitmarket(url, key, secret, req = list(),
verbose = getOption("Rbitcoin.verbose", 0))
|
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. |
verbose |
integer. Rbitcoin processing messages, print to console if |
Character string a response from markets API call.
Market specific bitmarket method
param should be provided in req
object.
https://www.bitmarket.pl/docs.php?file=api_private.html
1 2 3 4 5 6 7 8 9 | ## Not run:
# ticker
market.api.query.bitmarket(url = 'https://www.bitmarket.pl/json/LTCPLN/ticker.json')
# wallet
market.api.query.bitmarket(url = 'https://www.bitmarket.pl/api2/',
req = list(method = 'info'),
key = '', secret = '')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.