GameStop Historical Stock Prices
Daily data of GameStop Stock Exchange
@kaggle.hananxx_gamestop_historical_stock_prices
Daily data of GameStop Stock Exchange
@kaggle.hananxx_gamestop_historical_stock_prices
GameStop Corp. is an American video game, consumer electronics, and gaming merchandise retailer. GameStop's stocks have spiked in recent days since the Reddit group blew up the stock price. Now GameStop is up more than 1,700% since the start of January. so it is interesting to try to predict the stock prices in the next months and see how prediction and time series models will perform in this case. This Dataset is a daily historical stock price of GameStop from February 2002 (the year it was listed) to January 2021.
The dataset contains:
This Dataset collected from Yahoo finance website
How a sudden increasi in the volume affect stock trading?
What the impact of the variance between the adjusted close and the next day's opening price?
CREATE TABLE gme_stock (
"date" TIMESTAMP,
"open_price" DOUBLE,
"high_price" DOUBLE,
"low_price" DOUBLE,
"close_price" DOUBLE,
"volume" DOUBLE,
"adjclose_price" DOUBLE
);Anyone who has the link will be able to view this.