Baselight

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

Loading...
Loading...

About this Dataset

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

  1. crypto_prices_180days.csv – Daily OHLCV (Open, High, Low, Close, Volume, Market Cap) data for 5 cryptocurrencies.
  2. google_trends_top10_180days.csv – Google Trends interest-over-time scores for the same coins.
  3. crypto_trends_prices_combined.csv – A merged dataset aligning both price and trends data on a daily basis.

Columns

  • Date – The calendar date (YYYY-MM-DD).
  • Symbol – Cryptocurrency identifier (e.g., BITCOIN).
  • Open / High / Low / Close – Daily OHLC price data.
  • Volume – Daily trading volume.
  • Market Cap – Daily market capitalization.
  • Google Trends – Normalized popularity score (0–100) from Google Trends.

Tables

Crypto Prices 180days

@kaggle.tarunjonwal_crypto_prices_with_google_trends_180_days.crypto_prices_180days
  • 57.84 kB
  • 900 rows
  • 8 columns
Loading...
CREATE TABLE crypto_prices_180days (
  "date" TIMESTAMP,
  "symbol" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" DOUBLE,
  "market_cap" DOUBLE
);
@kaggle.tarunjonwal_crypto_prices_with_google_trends_180_days.crypto_trends_180days
  • 5.76 kB
  • 900 rows
  • 3 columns
Loading...
CREATE TABLE crypto_trends_180days (
  "date" TIMESTAMP,
  "symbol" VARCHAR,
  "trend_score" BIGINT
);
@kaggle.tarunjonwal_crypto_prices_with_google_trends_180_days.crypto_trends_prices_combined
  • 59.65 kB
  • 900 rows
  • 9 columns
Loading...
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
);

Share link

Anyone who has the link will be able to view this.