Complete Historical Cryptocurrency Financial Data
Top 200 Cryptocurrencies by Marketcap
@kaggle.philmohun_cryptocurrency_financial_data
Top 200 Cryptocurrencies by Marketcap
@kaggle.philmohun_cryptocurrency_financial_data
Context
Recent growing interest in cryptocurrencies, specifically as a speculative investment vehicle, has sparked global conversation over the past 12 months. Although this data is available across various sites, there is a lack of understanding as to what is driving the exponential rise of many individual currencies. This data set is intended to be a starting point for a detailed analysis into what is driving price action, and what can be done to predict future movement.
Content
Consolidated financial information for the top 10 cryptocurrencies by marketcap. Pulled from CoinMarketCap.com. Attributes include:
Inspiration
For the past few months I have been searching for a reliable source for historical price information related to cryptocurrencies. I wasn't able to find anything that I could use to my liking, so I built my own data set.
I've written a small script that scrapes historical price information for the top 200 coins by market cap as listed on CoinMarketCap.com.
I plan to run some basic analysis on it to answer questions that I have a "gut" feeling about, but no quantitative evidence (yet!).
Questions such as:
Feel free to use this for your own purposes! I just ask that you share your results with the group when complete. Happy hunting!
CREATE TABLE consolidated_coin_data (
  "currency" VARCHAR,
  "date" TIMESTAMP,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" DOUBLE,
  "market_cap" BIGINT
);Anyone who has the link will be able to view this.