Google Stock Prices Since COVID-19 Started
Dataset containing stock prices of Google since the pandemic began
@kaggle.anubhavgoyal10_google_stock_prices_since_the_pandemic_started
Dataset containing stock prices of Google since the pandemic began
@kaggle.anubhavgoyal10_google_stock_prices_since_the_pandemic_started
This dataset contains the stock prices of Google since the COVID-19 pandemic began.
There are 7 columns in this dataset:
Feature | Description |
---|---|
Data | Date on which the market was open |
Open | Stock price at which market was open |
High | Highest price of stock on that date |
Low | Lowest price of stock on that dated |
Close | Price of stock when market closed |
Adj Close | Adjusted closed price after considering some factors |
Volume | Volume of trade which took place during the day |
CREATE TABLE stock_prices (
"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.