- Why do we care about predicting the future?
- What does seasonality mean? How could it impact our predictions?
- How does one measure the impact of seasonality?
- Write an R program to use the moving average of the last five years to predict the next year's expected return. The source of the data is http://fiannce.yahoo.com. You can test a few stocks such as IBM, C, and WMT. In addition, apply the same method to the S&P500 index. What is your conclusion?
- Assume that we have the following true model:

Write a Python program to use linear and polynomial models to approximate the previous function and show the related graphs.
- Download a market index monthly data and estimate its next year's annual return. The S&P500 could be used as the index and Yahoo!Finance at finance.yahoo.com could be used as the source of data. Source of data: https...