Historical Sentiment Data | BTC, ETH, BNB, ADA
Timeseries Sentimental Analysis of Cryptocurrencies
@kaggle.gautamchettiar_historical_sentiment_data_btc_eth_bnb_ada
Timeseries Sentimental Analysis of Cryptocurrencies
@kaggle.gautamchettiar_historical_sentiment_data_btc_eth_bnb_ada
The dataset contains 4 CSV tabular files that have historical time series sentiment data from 4 popular cryptocurrencies, namely Bitcoin, Ethereum, Binance Coin, and Cardano. This can be used for time series analysis coupled with historical price data such as the OHLCV data for additional forecasting performance.
Each of the data files contains:
CREATE TABLE ada_df (
"unnamed_0" BIGINT -- Unnamed: 0,
"date" TIMESTAMP,
"count" BIGINT,
"normalized" DOUBLE
);CREATE TABLE bnb_df (
"unnamed_0" BIGINT -- Unnamed: 0,
"date" TIMESTAMP,
"count" BIGINT,
"normalized" DOUBLE
);CREATE TABLE btc_df (
"unnamed_0" BIGINT -- Unnamed: 0,
"date" TIMESTAMP,
"count" BIGINT,
"normalized" DOUBLE
);CREATE TABLE eth_df (
"unnamed_0" BIGINT -- Unnamed: 0,
"date" TIMESTAMP,
"count" BIGINT,
"normalized" DOUBLE
);Anyone who has the link will be able to view this.