Intel Stock Data (1980-2024)
This dataset contains Intel Stocks from 1980 to 2024
@kaggle.mhassansaboor_intel_stock_data_1980_2024
This dataset contains Intel Stocks from 1980 to 2024
@kaggle.mhassansaboor_intel_stock_data_1980_2024
🌟 This dataset contains daily stock trading data for Intel Corporation (ticker: INTC) from 1980 to 2024, sourced from Yahoo Finance. It provides a comprehensive view of Intel's stock performance over four decades, including key metrics like opening/closing prices, trading volume, dividends, and stock splits.
This dataset is ideal for financial analysis, stock trend forecasting, machine learning models, and portfolio optimization studies.
| 🏷️ Column | 🔍 Description |
|---|---|
📅 Date |
The trading date in YYYY-MM-DD format. |
🔓 Open |
The opening price of Intel'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. |
🔒 Close |
The closing price of the stock on the given day. |
🔄 Volume |
The total number of shares traded on the given day. |
💰 Dividends |
The dividend payouts, if applicable, on the given day. |
📊 Stock Splits |
The ratio of stock splits (if applicable) on the given day (e.g., 2-for-1 split = 2.0). |
Feel free to dive into the dataset and unlock its potential! Let me know if you need help with analysis or visualization. 😄
CREATE TABLE data (
"date" VARCHAR,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"volume" BIGINT,
"dividends" DOUBLE,
"stock_splits" DOUBLE
);Anyone who has the link will be able to view this.