Crypto Prices With Google Trends (180 Days)
Historical dataset of 5 major cryptocurrencies over the past 180 days
@kaggle.tarunjonwal_crypto_prices_with_google_trends_180_days
Historical dataset of 5 major cryptocurrencies over the past 180 days
@kaggle.tarunjonwal_crypto_prices_with_google_trends_180_days
The cryptocurrency market is highly volatile and influenced not only by market dynamics but also by public attention and sentiment. This dataset provides a structured collection of historical cryptocurrency prices along with Google Trends search popularity, enabling researchers, traders, and analysts to explore the relationship between market behavior and public interest. The five cryoptocurrencies are as follows : Bitcoin, Ethereum, Solana, Binancecoin, Ripple.
The dataset is derived from reliable sources such as the CoinGecko API for price data and the Google Trends API for search interest. It covers five major cryptocurrencies across a 180-day period.
Files Included
Columns
CREATE TABLE crypto_prices_180days (
"date" TIMESTAMP,
"symbol" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"market_cap" DOUBLE
);
CREATE TABLE crypto_trends_180days (
"date" TIMESTAMP,
"symbol" VARCHAR,
"trend_score" BIGINT
);
CREATE TABLE crypto_trends_prices_combined (
"date" TIMESTAMP,
"symbol" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"market_cap" DOUBLE,
"trend_score" BIGINT
);
Anyone who has the link will be able to view this.