Stock Prices Of APPL,AMZN,FB,GOOG,NFLX
Stock Prices of Amazon Apple Facebook Google Netflix in the year 2018
@kaggle.ratnarohith_stock_prices_of_applamznfbgoognflx_in_2018
Stock Prices of Amazon Apple Facebook Google Netflix in the year 2018
@kaggle.ratnarohith_stock_prices_of_applamznfbgoognflx_in_2018
This dataset contains five csv files. Each file contains details of stock price on the respective day of the year 2018. 5 files contains stock details of companies APPLE, AMAZON, FACEBOOK, GOOGLE, NETFLIX respectively.
Each file contains 6 attributes:
CREATE TABLE aapl (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" DOUBLE
);
CREATE TABLE amzn (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE fb (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE goog (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
CREATE TABLE nflx (
"date" TIMESTAMP,
"high" DOUBLE,
"low" DOUBLE,
"open" DOUBLE,
"close" DOUBLE,
"volume" BIGINT
);
Anyone who has the link will be able to view this.