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
This dataset contains detailed daily price information for Bitcoin (BTC) and Ethereum (ETH) against USD, covering the period from 2014 to 2024. It includes key financial metrics such as Open, High, Low, Close prices, Volume, and Adjusted Close values for both cryptocurrencies. This dataset is ideal for cryptocurrency enthusiasts, financial analysts, and data scientists looking to explore trends, analyze market movements, and develop predictive models for Bitcoin’s and Ethereum’s performance over the last decade.
The data provides insights into Bitcoin and Ethereum’s price fluctuations, from Bitcoin’s early adoption phase to Ethereum's rise as a dominant platform for decentralized applications and smart contracts. Whether you're interested in historical patterns, volatility analysis, or future price predictions, this comprehensive dataset serves as a valuable resource for your cryptocurrency research and analysis.
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.