Top 100–2020 Cryptocurrency Daily Market Price
Daily crypto markets open, close, low, high & volume data for the top 100 coins
@kaggle.nebulosito_top_100_2020_cryptocurrency_daily_market_price
Daily crypto markets open, close, low, high & volume data for the top 100 coins
@kaggle.nebulosito_top_100_2020_cryptocurrency_daily_market_price
Here you are a dataset containing the top 100 coins by their total volume across all markets during 9th January of 2021. The prices are in USD dollars.
If you need a different or specific cryptocurrency data, open a new Discussion and I will try to do my best.
This dataset was obtained thanks to cryptocompare API. You can see that it contains data about the top 100 coins by volume market during moreover 2020 (it contains a little bit of 2019 and 2021 years also). The dataset has 10 columns:
To get the data I used this endpoint and to get the top 100 coins list I used this one.
The code I used to generate can be found in my personal github (I would really appreciate any contribution, follow or star 😃). Feel free to contact me (you can find my email in my github) if you need something about the data.
Part of the code used to obtain the data was inspired in this fabulous analsys from Roman Orac.
CREATE TABLE cryptocurrencies_to_usd_default_day_2021_01_09 (
"datetime" TIMESTAMP,
"low" DOUBLE,
"high" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volumefrom" DOUBLE,
"volumeto" DOUBLE,
"cryptocurrency" VARCHAR,
"image_url" VARCHAR,
"coin_name" VARCHAR
);Anyone who has the link will be able to view this.