Python Coding Assignment
Question: You basically have to retrieve stock prices for like AAPL for the last 6 months then obtain the price fluctuations for each week.
Large Data Processing -
1) Retrieve historical stock information for different stocks
2) Store the data for each stock in different text files
3) Compute the price fluctuation between different weeks, given the formula below.
a. (Max(Week(n+1)) - Avg(week(n)))/ Avg(week(n)) * 100 %