Top 10 Global Companies Stock Data (2024)
This dataset provides daily stock prices for the top 10
global companies in 2024. It includes key financial metrics
like opening price, closing price, high, low, adjusted
closing price, and trading volume.
Dataset Overview
- Companies Included: Apple, Microsoft, Alphabet,
Amazon, Meta, Tesla, Berkshire Hathaway, Johnson &
Johnson, Nvidia, JPMorgan Chase.
- Columns:
Date
: Date of stock data.
Open
: Opening price.
High
: Highest price.
Low
: Lowest price.
Close
: Closing price.
Adj Close
: Adjusted closing price.
Volume
: Trading volume.
Usage
- Time Series Analysis: Analyze stock trends over time.
- Predictive Modeling: Forecast stock prices.
- Algorithmic Trading: Test trading strategies.
- Research: Compare company performance.
Example Usage (Python)
import pandas as pd
df = pd.read_csv('top_10_global_companies_stock_data_2024.csv')
print(df.head())
Tasks
- I want to see the correlation between Closing Price and
Date to see how the price of the stock has increased over
time.
- I want to see if there is a correlation between the
trading volume and adjusted closing prices for different
companies.
- I want to compare how the stock prices of all 10 companies
responded during a specific market event, like a surge or
crash in the market.
- I want to identify the days when some companies hit their
highest and lowest prices within the dataset.
- Finally, I want to see how trading volumes compare for
these stocks on a daily basis