Assignment 4: Pandas Series Download the NFLX.csv file, which contains the Netflix stock price from 1999-01-01 to 2019-0
Posted: Mon Jul 11, 2022 9:55 am
questions. Question 1 a. When was the maximum price ever reached? Your code must be a Series with the date and the price. Don't worry about ties. b. Find the ten largest one-day % drops (in % compared to the closing cost of the previous trading day). Make sure that your output is a Series object that shows both date and the % drop. C. Consider this investment strategy: buy whenever the price goes above the 50-day moving average, and then sell after 3 trading sessions. How much profit (in %) would we make on average? On trading day x, we say that the price "goes above" the 50-day moving average if (1) the price was below the moving average on trading day x-1 and (2) the price is above the moving average on trading day x
Assignment 4: Pandas Series Download the NFLX.csv file, which contains the Netflix stock price from 1999-01-01 to 2019-01-22, and load it with Panda in Jupyter Notebook. A Notebook Jupyter template file is provided. Please submit completed jupyter file to answer the following