I am using the GARCH-DCC estimation-based bootstrap to predict one-month (22 days) cumulative returns. The details are as follows:
1. The GARCH-DCC model is fitted to the original return series to obtain estimated parameters and residuals.
2. Residuals are standardized by conditional standard deviations.
3. The standardized residuals are resampled with replacement to form pseudo samples of GARCH-DCC innovations.
4. Use the pseudo samples as inputs of the DCC and GARCH filters to obtain pseudo samples of GARCH-DCC log returns from period T+1 to period T+22.
5. Compute the cumulative arithmetic return for each pseudo sample.
My question is how to deal with the bad draws in cumulative returns? Can I manually delete some extreme values contained in standardized residuals before bootstrapping? I have checked the data I used in the estimation, some big financial firms do experience significant changes in their returns within a short period. I guess this might be the reason for having some extreme values in standardized residuals.
Many thanks in advance.