S&P 500 Historical Data
Historical Data of S&P 500 Index From 1927 to 2020
@kaggle.henryhan117_sp_500_historical_data
Historical Data of S&P 500 Index From 1927 to 2020
@kaggle.henryhan117_sp_500_historical_data
Historical data of S&P 500 Index
This dataset includes the historical data of S&P 500 index from 1927 to 2020 with columns of date, opening price, highest price, lowest price, closing price, adjusted closing price, and the number of shares traded each day.
Inspired from this dataset: https://www.kaggle.com/borismarjanovic/price-volume-data-for-all-us-stocks-etfs
CREATE TABLE spx (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
Anyone who has the link will be able to view this.