Stock Market Dataset
Historical daily prices of Nasdaq-traded stocks and ETFs
@kaggle.jacksoncrow_stock_market_dataset
Historical daily prices of Nasdaq-traded stocks and ETFs
@kaggle.jacksoncrow_stock_market_dataset
This dataset contains historical daily prices for all tickers currently trading on NASDAQ. The up to date list is available from nasdaqtrader.com. The historic data is retrieved from Yahoo finance via yfinance python package.
It contains prices for up to 01 of April 2020. If you need more up to date data, just fork and re-run data collection script also available from Kaggle.
The date for every symbol is saved in CSV format with common fields:
All that ticker data is then stored in either ETFs or stocks folder, depending on a type. Moreover, each filename is the corresponding ticker symbol. At last, symbols_valid_meta.csv contains some additional metadata for each ticker such as full name.
CREATE TABLE symbols_valid_meta (
"nasdaq_traded" VARCHAR,
"symbol" VARCHAR,
"security_name" VARCHAR,
"listing_exchange" VARCHAR,
"market_category" VARCHAR,
"etf" VARCHAR,
"round_lot_size" DOUBLE,
"test_issue" VARCHAR,
"financial_status" VARCHAR,
"cqs_symbol" VARCHAR,
"nasdaq_symbol" VARCHAR,
"nextshares" VARCHAR
);Anyone who has the link will be able to view this.