MAAMA Weekly Stock Data (2012-2022)
Weekly stock data of MAAMA companies (Microsoft, Apple, Alphabet, Meta, Amazon)
@kaggle.arnavr10880_maama_companies_stock_price_20122022
Weekly stock data of MAAMA companies (Microsoft, Apple, Alphabet, Meta, Amazon)
@kaggle.arnavr10880_maama_companies_stock_price_20122022
MAAMA is a group of revolutionary multi-national companies: Meta (prev. Facebook), Apple, Alphabet (prev. Google), Microsoft and Amazon. They have changed our life in different ways. They make huge amount of money and they also help others by giving them a chance to invest in their companies via stocks and shares. This dataset aims to provide the stock price data (weekly) covering the span from 2012 to 24th June 2022.
This dataset contains information about:
The data will be updated weekly.
CREATE TABLE aapl (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE amzn (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE goog (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE meta (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE msft (
"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.