Cryptocurrency Price Analysis Dataset
Exploring Historical Price Behavior and Market Dynamics of Cryptocurrencies
@kaggle.adityamhaske_cryptocurrency_price_analysis_dataset
Exploring Historical Price Behavior and Market Dynamics of Cryptocurrencies
@kaggle.adityamhaske_cryptocurrency_price_analysis_dataset
Introduction:
The "Cryptocurrency Price Analysis Dataset: BTC, ETH, XRP, LTC (2018-2023)" is a comprehensive dataset that captures the daily price movements of six popular cryptocurrencies. It covers a period from January 1, 2018, to May 31, 2023, providing a valuable resource for researchers, analysts, and enthusiasts interested in studying the historical price behavior of these digital assets.
Description:
This dataset contains a wealth of information for six major cryptocurrencies: Bitcoin (BTC), Ethereum (ETH), Ripple (XRP), and Litecoin (LTC). The data spans a time frame of over five years, enabling users to explore long-term trends, analyze volatility patterns, and gain insights into market dynamics.
Columns:
Use Cases:
The dataset offers numerous possibilities for analysis and research within the field of cryptocurrencies. Here are a few potential use cases:
Please note that this dataset is for educational and research purposes only and should not be used for making financial decisions without thorough analysis and consultation with financial professionals.
CREATE TABLE btc (
"crypto" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);
CREATE TABLE crypto_combine (
"crypto" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);
CREATE TABLE eth (
"crypto" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);
CREATE TABLE ltc (
"crypto" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);
CREATE TABLE xpr (
"crypto" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE
);
Anyone who has the link will be able to view this.