I have an equal-weighted index on a number of different Indices (from US, Europe and Asian markets). This compound index is constructed from a time series that has missing values (for example, those regions have different banking holidays). This problem will affect about 10 days out of 250 per year of data. What strategy should I choose to handle those imputed values?
|
What is the aim of your calculation - rather risk analyis or performance comparison? In either case an easy and valid approach would be to replace missing values with the most recent nonmissing. In R na.locf from the package zoo does this. |
|||
|
|
|
I think the simple advice here is to keep the indexes unchanged from the previous closing day (you basically assume unchanged prices).
But again, I bet most would simply use the previous day's closing value. |
||||
|
|