Bitcoin Historical Data 2013-2023
Including Price, Market Cap, 24hr Volume and Timestamp from CoinGecko API
@kaggle.danieltsai04_bitcoin_historical_data_from_2013_2023
Including Price, Market Cap, 24hr Volume and Timestamp from CoinGecko API
@kaggle.danieltsai04_bitcoin_historical_data_from_2013_2023
This dataset was collected from CoinGecko  public API https://www.coingecko.com/api/documentation with the currency of usd.
The json file includes marketcap, price and 24hr volume, and the csv file is a result after data wrangling process.
Daily data (00:00 UTC)
CREATE TABLE bitcoin_merged_data (
  "timestamp" TIMESTAMP,
  "price" DOUBLE,
  "volume" DOUBLE,
  "market_cap" DOUBLE
);Anyone who has the link will be able to view this.