Historical Stock Price Dataset
Analyzing Trends and Volatility for Major Ticker Symbols
@kaggle.anitarostami_historical_stock_price_dataset
Analyzing Trends and Volatility for Major Ticker Symbols
@kaggle.anitarostami_historical_stock_price_dataset
Dataset Description:
This dataset provides historical stock price data for selected ticker symbols ['AAPL', 'MSFT', 'JPM', 'GS', 'AMZN', 'PG', 'KO', 'JNJ', 'XOM', 'CAT'] from January 1, 2014, to December 31, 2023. It contains the daily opening, highest, lowest, closing, adjusted closing prices, and trading volume for each trading day. These tickers represent a diverse range of sectors to allow comprehensive financial analysis.
Purpose and Use Case:
This dataset is ideal for financial analysis, market trend assessments, and investment decision-making. Analysts and researchers can use this dataset to:
Acknowledgments:
Data was collected using Python and Yahoo Finance. This dataset supports visualization, exploratory data analysis (EDA), and in-depth analysis to develop a predictive model for forecasting stock prices, aiming to gain insights, identify patterns, and improve prediction accuracy.
Potential Research Questions and Inspiration:
CREATE TABLE stockpricedataset (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT,
"ticker" VARCHAR
);Anyone who has the link will be able to view this.