get_top_pairs
returns a tibble containing the top currency pairs by
volume.
get_top_pairs(fsym, limit = 5, sign = FALSE)
fsym | character. Three letter symbol for currency of interest. |
---|---|
limit | integer. Number of top pairs to return. Min of 1, max of 2000. Defaults to 5. |
sign | logical. Should the server sign the response? Defaults to FALSE. |
A tibble containing the top currencies by volume for the specified currency
https://www.cryptocompare.com/api#-api-data-toppairs-
# NOT RUN { # Get top 10 currencies for bitcoin get_top_pairs("BTC", limit = 10) # Get top 20 currencies for ethereum get_top_pairs("ETH", limit = 20) # }