get_top_exchanges
returns a tibble containing details about the top
exchanges by volume for a given currency pair.
get_top_exchanges(fsym, tsym, limit = 5, sign = FALSE, app_name = NULL)
fsym | character. 3 letter name for coin to retreive price history for. |
---|---|
tsym | character. 3 letter name for how price should be reported for
|
limit | numeric. Maximum number of returned exchanges. Between 1 and 50. |
sign | logical. Should the server sign the response? Defaults to FALSE |
app_name | character. Name of app to be passed in API request. Defaults to NULL. |
A tibble containing volume details for the top limit
exchanges.
https://min-api.cryptocompare.com
# NOT RUN { # Top exchanges for BTC - USD get_top_exchanges("BTC", "USD") # }