Amazon.com, Inc. (AMZN) Historical Stock Prices
Daily Open, High, Low, Close, and Adjusted Close Prices
@kaggle.programmerrdai_amazon_com_inc_amzn_historical_stock_prices
Daily Open, High, Low, Close, and Adjusted Close Prices
@kaggle.programmerrdai_amazon_com_inc_amzn_historical_stock_prices
This dataset contains daily historical stock prices for Amazon.com, Inc. (AMZN) spanning from May 15, 1997, to June 20, 2024. The data includes the opening price, highest price, lowest price, closing price, adjusted closing price, and trading volume. This dataset is valuable for analyzing the long-term performance and trends of Amazon's stock in the financial markets. It can be used by data scientists, financial analysts, researchers, and investors for various purposes, including predictive modeling, trend analysis, and investment strategy development.
CREATE TABLE amzn (
"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.