Netflix | Stock Market Analysis | Founding Years
Stock Market Analysis of Netflix, Inc. (NFLX) from 2002 to 2022
@kaggle.whenamancodes_netflix_stock_market_analysis_founding_years
Stock Market Analysis of Netflix, Inc. (NFLX) from 2002 to 2022
@kaggle.whenamancodes_netflix_stock_market_analysis_founding_years
Stock Market Analysis of Netflix, Inc. (NFLX) from it's Founding / Listing Years which is 2002 to 2022
| Columns | Description |
|---|---|
| Date | Date of Listing (YYYY-MM-DD) |
| Open | Price when the market opens |
| High | Highest recorded price for the day |
| Low | Lowest recorded price for the day |
| Close | Price when the market closes |
| Adj Close | Modified closing price based on corporate actions |
| Volume | Amount of stocks sold in a day |
Netflix, Inc. is an American subscription streaming service and production company based in Los Gatos, California. Founded on August 29, 1997, by Reed Hastings and Marc Randolph in Scotts Valley, California, it offers a film and television series library through distribution deals as well as its own productions, known as Netflix Originals.
More
CREATE TABLE nflx (
"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.