Major Cryptocurrency Daily Price History
Bitcoin, Ethereum Daily Price Data from 2014 to 2024
@kaggle.zongaobian_cryptocurrency_daily_price_history
Bitcoin, Ethereum Daily Price Data from 2014 to 2024
@kaggle.zongaobian_cryptocurrency_daily_price_history
CREATE TABLE bnb_usd_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE btc_usd_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE eth_usd_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE sol_usd_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE xrp_usd_daily_data (
"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.