S&P 500 Stock Prices
(Source: The Investor's Exchange) (License: Public Domain)
@kaggle.gauravmehta13_sp_500_stock_prices
(Source: The Investor's Exchange) (License: Public Domain)
@kaggle.gauravmehta13_sp_500_stock_prices
Historical stock market data for current S&P 500 companies, from 2014-2017. Each record represents a single day of trading, and includes the ticker name, volume, high, low, open and close prices.
CREATE TABLE sp_500_stock_prices_2014_2017 (
"symbol" VARCHAR,
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.