Walmart Stock Historical Data
Walmart Inc stock data for last 10 years
@kaggle.namithadeshpande027_walmart_stock_historical_data
Walmart Inc stock data for last 10 years
@kaggle.namithadeshpande027_walmart_stock_historical_data
The dataset contains Walmart Inc historical stock price data for last 10 years. I obtained this data from the official Yahoo Website. It can found in the following link - https://finance.yahoo.com/quote/WMT/history?p=WMT. The purpose of this dataset is to understand and implement different forecasting models.
This dataset contains a total of 2516 observations and 6 features.
Each feature is described below:
Date - Date of the trading dayClose - Price of the stock at the end of the trading dayVolume - Total number of stocks sold on a given trading dayOpen - Price of the stock at the beginning of the trading dayHigh - Highest stock price during the trading dayLow - Lowest stock price during the tradingAdj Close - Adjusted close is the closing price after adjustments for all applicable splits and dividend distributions.This dataset is inspired by another dataset on Kaggle which can be found here
CREATE TABLE wmt (
"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.