
Last chance! 50% off unlimited learning
Sale ends in
The AmericanOptionImpliedVolatility
function solves for the
(unobservable) implied volatility, given an option price as well as
the other required parameters to value an option.
# S3 method for default
AmericanOptionImpliedVolatility(type, value,
underlying, strike,dividendYield, riskFreeRate, maturity, volatility,
timeSteps=150, gridPoints=151)
The AmericanOptionImpliedVolatility
function returns an numeric
variable with volatility implied by the given market prices and given parameters.
A string with one of the values call
or put
Value of the option (used only for ImpliedVolatility calculation)
Current price of the underlying stock
Strike price of the option
Continuous dividend yield (as a fraction) of the stock
Risk-free rate
Time to maturity (in fractional years)
Initial guess for the volatility of the underlying stock
Time steps for the Finite Differences method, default value is 150
Grid points for the Finite Differences method, default value is 151
Dirk Eddelbuettel edd@debian.org for the R interface;
the QuantLib Group for QuantLib
The Finite Differences method is used to value the American Option. Implied volatilities are then calculated numerically.
Please see any decent Finance textbook for background reading, and the
QuantLib
documentation for details on the QuantLib
implementation.
https://www.quantlib.org/ for details on QuantLib
.
EuropeanOption
,AmericanOption
,BinaryOption
AmericanOptionImpliedVolatility(type="call", value=11.10, underlying=100,
strike=100, dividendYield=0.01, riskFreeRate=0.03,
maturity=0.5, volatility=0.4)
Run the code above in your browser using DataLab