Toyota Motors Stock Data (1980-2024)
Toyota Motors Stock Dataset from (1980-2024)
@kaggle.mhassansaboor_toyota_motors_stock_data_2980_2024
Toyota Motors Stock Dataset from (1980-2024)
@kaggle.mhassansaboor_toyota_motors_stock_data_2980_2024
🌟 This dataset offers daily stock trading data for Toyota Motor Corporation (ticker: TM) spanning from 1980 to 2024, sourced from Yahoo Finance. It provides an extensive record of Toyota’s stock performance over more than four decades, featuring essential metrics like adjusted close prices, opening/closing prices, highs, lows, and trading volumes.
This dataset is perfect for financial analysis, time-series forecasting, and machine learning applications to explore stock price trends and market behavior.
| 🏷️ Column | 🔍 Description |
|---|---|
📅 Date |
The trading date in YYYY-MM-DD format. |
📉 Adj Close |
The adjusted closing price, factoring in corporate actions like splits or dividends. |
🔒 Close |
The official closing price of Toyota’s stock on the given day. |
📈 High |
The highest price of the stock during the trading session. |
📉 Low |
The lowest price of the stock during the trading session. |
🔓 Open |
The opening price of Toyota’s stock on the given day. |
🔄 Volume |
The total number of shares traded during the day. |
Feel free to explore this dataset and leverage its rich insights for your financial and machine learning projects. Let me know if you need assistance with analysis, modeling, or visualization. 🚗✨
CREATE TABLE toyota_data (
"date" TIMESTAMP,
"adj_close" DOUBLE,
"close" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"volume" BIGINT
);Anyone who has the link will be able to view this.