Trading Indexes APR 2019 TO APR 2020
Historical Trade Indexes for S&P 500, Nasdaq, Dow Jones
@kaggle.nickbaynham_trading_indexes_apr_2019_to_apr_2020
Historical Trade Indexes for S&P 500, Nasdaq, Dow Jones
@kaggle.nickbaynham_trading_indexes_apr_2019_to_apr_2020
CREATE TABLE dowjones (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT,
"adj_close" DOUBLE
);
CREATE TABLE nasdaq (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE,
"adj_close" DOUBLE
);
CREATE TABLE snp500 (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT,
"adj_close" DOUBLE
);
Anyone who has the link will be able to view this.