Tata Motors Stock Price
Tata Motors Stock Price Data (Last 5 Years)
@kaggle.hussainkhasamwala_tata_motors_stock_price_5_years
Tata Motors Stock Price Data (Last 5 Years)
@kaggle.hussainkhasamwala_tata_motors_stock_price_5_years
This dataset contains the historical stock prices of Tata Motors Limited over the past 5 years. It includes daily open, high, low, close prices, adjusted close prices, and trading volume.
The data is sourced using the Yahoo Finance
library, ensuring accurate and up-to-date stock market information. This CSV file is useful for performing time-series analysis, trend identification, and market forecasting.
Contains One CSV File
Column | Description |
---|---|
Date | The trading date. |
Open | The stock's opening price for the day. |
High | The highest price during the trading session. |
Low | The lowest price during the trading session. |
Close | The stock's closing price for the day. |
Adjusted Close | Closing price adjusted for corporate actions (e.g., splits, dividends). |
Volume | Total number of shares traded during the day. |
CREATE TABLE tatamotors (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);
Anyone who has the link will be able to view this.