
Last chance! 50% off unlimited learning
Sale ends in
List all of the crypto currencies that have existed on CoinMarketCap
and use this to populate the URL base for scraping historical market
data. It retrieves name, slug, symbol and rank of crypto currencies from
CoinMarketCap and creates URLS for scraper()
to use.
crypto_list(coin = NULL, start_date = NULL, end_date = NULL, coin_list = NULL)
Name, symbol or slug of crypto currency
Start date to retrieve data from, format yyyymmdd
Start date to retrieve data from, format yyyymmdd
'api', 'static' or NULL
Crypto currency historic OHLC market data in a dataframe:
Coin symbol (not-unique)
Coin name
Coin URL slug (unique)
Current rank by market cap
Exchange market tables urls for scraping
Historical market tables urls for scraping
Required dependency that is used in function call getCoins().
# NOT RUN {
coin <- 'kin'
coins <- crypto_list(coin)
# return all coins
coin_list <- crypto_list()
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab