Amazon Stock Data And Key Affiliated Companies
Daily stock data for Amazon and its key affiliated companies driving its success
@kaggle.zongaobian_amazon_stock_data_and_key_affiliated_companies
Daily stock data for Amazon and its key affiliated companies driving its success
@kaggle.zongaobian_amazon_stock_data_and_key_affiliated_companies
This dataset, 'Amazon Stock Data and Key Affiliated Companies,' provides comprehensive daily stock data for Amazon (AMZN) and several companies that have significantly contributed to Amazon's business growth and success. The dataset includes historical data for key players such as Intel (INTC), FedEx (FDX), United Parcel Service (UPS), Salesforce (CRM), NVIDIA (NVDA), Visa (V), and Mastercard (MA).
The stock data spans over various years, capturing important trading metrics like open, close, high, low, and volume. Amazon, a global leader in e-commerce, cloud computing, and AI, has thrived with the support of these affiliated companies. From Intel's processors powering Amazon Web Services (AWS) to Salesforce's CRM solutions used by Amazon, and the logistics support provided by FedEx and UPS, each company plays a critical role.
This dataset can be used for financial analysis, stock market prediction models, correlation studies between Amazon and its key partners, or any other research involving the financial performance of these major corporations. Whether you're interested in understanding Amazon's stock trends or the interdependency of companies in its ecosystem, this dataset provides valuable insights.
CREATE TABLE amzn_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE crm_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE fdx_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE intc_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE ma_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE nvda_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE ups_daily_data (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE v_daily_data (
"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.