S&P 500 (^GSPC) Historical Data
Standard and Poor's 500 stock market index, full historical data
@kaggle.paveljurke_s_and_p_500_gspc_historical_data
Standard and Poor's 500 stock market index, full historical data
@kaggle.paveljurke_s_and_p_500_gspc_historical_data
Full historical data for the S&P 500 (ticker ^GSPC), sourced from Yahoo Finance (https://finance.yahoo.com/).
Including Open, High, Low and Close prices in USD + daily volumes.
Info about S&P 500: https://en.wikipedia.org/wiki/S%26P_500
CREATE TABLE sap500 (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
Anyone who has the link will be able to view this.