BMW Stock Data (1996-2024)
BMW Stock Dataset starts from November 1996 and ends at December 2024
@kaggle.mhassansaboor_bmw_stock_data_1996_2024
BMW Stock Dataset starts from November 1996 and ends at December 2024
@kaggle.mhassansaboor_bmw_stock_data_1996_2024
Welcome to the BMW Stock Price Dataset, a comprehensive collection of historical stock data for Bayerische Motoren Werke AG (BMW). This dataset spans over 28 years (from November 1996 to December 2024) and provides valuable insights into BMW's financial performance, trends, and market movements. π¦π
| Column Name | Description |
|---|---|
π Date |
The trading date. |
π° Open |
Stock price at the start of the trading day. |
π High |
Highest stock price during the trading day. |
π Low |
Lowest stock price during the trading day. |
π Close |
Stock price at the end of the trading day. |
π― Adj Close |
Adjusted closing price after splits/dividends. |
π Volume |
Number of shares traded on the given date. |
yfinance library.CREATE TABLE bmw_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.