DCC implementation. Not Reach an Optimal Solution
显示 更早的评论
Dear All,
I am in attempt to work out on DCC GARCH implementation for 2 assets. My data consists of 2 stock return which are on weekly basis and I got a total of 670 observations. I apply the dcc garch toolbox from MFE Kevin Sheppard. I have tried this by using the following code where ;
[PARAMETERS,LL,HT,VCV,SCORES,DIAGNOSTICS]=dcc(data,[],1,0,1);
the program seems to work well but toward the end of the optimisation procedure, I got the following message :
Local minimum possible. Constraints satisfied.
fmincon stopped because the size of the current step is less than
the default value of the step size tolerance and constraints are
satisfied to within the selected value of the constraint tolerance.
Any recommendation for this issue and how can I tackle this problem.
1 个评论
Walter Roberson
2019-8-31
回答(1 个)
Juan Esteban De la Calle Echeverry
2019-8-30
0 个投票
You indeed have the correct and optimal solution!
1 个评论
Walter Roberson
2019-8-31
That is, fmincon is a local minimizer, and never promises to be a global minimizer. It has found a point that looks good as far as it can tell, but since it has not searched all possibilities, it cannot prove that you have found the best possible solution.
In some situations, the mathematics is such that you can show that there is only one minima. I do not know much at all about DCC models, but when I look at the information I find, it seems unlikely to me that that situation applies: I suspect that there are multiple minima.
类别
在 帮助中心 和 File Exchange 中查找有关 Optimization Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!