SnP 500 Dataset
Latest Data of S&P 500 from yahoo finance
@kaggle.yash16jr_snp500_dataset
Latest Data of S&P 500 from yahoo finance
@kaggle.yash16jr_snp500_dataset
The dataset contains the stock price information of the s&p 500 from 1927 till June 2023 with features such as Date, Open, High, Low, Close, Volume, Dividends and splits. The dataset can be used for EDA as well as Time Series Analysis.
CREATE TABLE snp500_history (
  "date" VARCHAR,
  "open" DOUBLE,
  "high" DOUBLE,
  "low" DOUBLE,
  "close" DOUBLE,
  "volume" BIGINT,
  "dividends" DOUBLE,
  "stock_splits" DOUBLE
);Anyone who has the link will be able to view this.