Stock Prices Over A 30+ Year Period
Prices of Dow Jones, Nasdaq, and the SP500.
@kaggle.rishidamarla_stock_prices_over_a_30_year_period
Prices of Dow Jones, Nasdaq, and the SP500.
@kaggle.rishidamarla_stock_prices_over_a_30_year_period
This dataset contains stock prices of the DowJones, Nasdaq, and SP500.
The dataset comes from https://data.world/chasewillden/stock-market-from-a-high-level
CREATE TABLE dowjones (
"date" TIMESTAMP,
"value" DOUBLE
);CREATE TABLE nasdaq (
"date" TIMESTAMP,
"value" DOUBLE
);CREATE TABLE sp500 (
"date" TIMESTAMP,
"value" DOUBLE
);Anyone who has the link will be able to view this.