BTC - ETH Price Dataset (2014-2024)
Bitcoin (2014-2024) and Ethereum (2017-2024) daily price dataset
@kaggle.mrsimple07_bitcoindataanalysis
Bitcoin (2014-2024) and Ethereum (2017-2024) daily price dataset
@kaggle.mrsimple07_bitcoindataanalysis
This dataset provides historical daily price information for Bitcoin and Ethereum. It includes daily closing prices from January 1, 2014, to the present for Bitcoin, and from January 1, 2017, to the present for Ethereum. This data is crucial for anyone interested in analyzing cryptocurrency price trends, performing time series forecasting, or studying market behavior in the cryptocurrency space.
CREATE TABLE btc_usd_daily_2014_2024 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE eth_usd_daily_2017_2024 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.