APPLE INC ACTION
The value of action d'Apple Inc
@kaggle.borismbobe_apple_action
The value of action d'Apple Inc
@kaggle.borismbobe_apple_action
This database comes from the yahoo finance site, it contains information on the shares of Apple Inc.
It contains 7 columns in all, which you will confirm by exploring the database. Have fun with this database, using time series.
The another in this site https://finance.yahoo.com/quote/AAPL?p=AAPL
CREATE TABLE aapl (
"date" TIMESTAMP,
"open" DOUBLE,
"high" DOUBLE,
"low" DOUBLE,
"close" DOUBLE,
"adj_close" DOUBLE,
"volume" BIGINT
);CREATE TABLE aapl_1 (
"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.