error message occcurs when using the black model in matlab to compute the implied volatility
1 次查看(过去 30 天)
显示 更早的评论
hi,
I have the following problem:
I would like to compute the implied volatility using the black model for options on futures, but unfortunately every time this error message occurs:
EDU>> volatility=blkimpv(F_call,K_call,r_call,T_call,Price_call,true) Operation terminated by user during normcdf (line 90)
In blspriceeng (line 134) price(putCalcMask) = X(putCalcMask) .* exp(-r(putCalcMask).*T(putCalcMask)) .* normcdf(-d2(putCalcMask)) - ...
In blsprice (line 133) price = blspriceeng(OutSpec, OptSpec(:), S(:), X(:), r(:), T(:), sig(:), q(:));
In blsimpv>objfcn (line 240) [callValue, putValue] = blsprice(S, X, r, T, volatility, q);
In fzero (line 240) fb = FunFcn(b,varargin{:});
In blsimpv (line 208) [volatility(i), ~, exitFlag] = fzero(@objfcn, [0 limit], options, ...
In blkimpv (line 105) volatility = blsimpv(F, X, r, T, value, limit, r, tol, optionClass);
EDU>> F_short=F_call(1:5,:)
does anybody has an idea why it's not working?
1 个评论
Walter Roberson
2013-3-10
"operation terminated by user" means that the user hit control-C to interrupt the program.
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!