TCS Stock Market Dataset Analysis
"Exploring Trends, Patterns, and Predictions for TCS Stock Market"
@kaggle.harshalkasat_tcs_stock_market_dataset_analysis
"Exploring Trends, Patterns, and Predictions for TCS Stock Market"
@kaggle.harshalkasat_tcs_stock_market_dataset_analysis
CONTEXT
"This dataset contains historical stock market data for Tata Consultancy Services (TCS), an Indian multinational information technology services and consulting company." The dataset includes daily stock prices, trading volume, and other financial metrics for TCS from April 29, 2013, to April 28, 2023. The information was gathered from publicly available sources such as Yahoo Finance and NSE India.
CONTENT
Tata Consultancy Services (TCS) is a global provider of IT services and consulting. TCS's stock price is closely tracked by investors, traders, and financial experts all over the world, considering it is a prominent player in the global technology business. This dataset includes 2,769 rows and 9 columns, including Date, Open Price, High Price, Low Price, Close Price, Adj. Close, Volume, Dividends, and Stock Splits.
ACKNOWLEDGEMENT
The data was scraped from finance.yahoo.com
CREATE TABLE stock_market_analysis (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT,
"dividends" DOUBLE,
"stock_splits" DOUBLE
);Anyone who has the link will be able to view this.