ES of Black-Scholes call using Monte Carlo Simulation
Estimates ES of Black-Scholes call Option using Monte Carlo simulation
BlackScholesCallESSim(amountInvested, stockPrice, strike, r, mu, sigma, maturity, numberTrials, cl, hp)
amountInvested
: Total amount paid for the Call Option and is positive (negative) if the option position is long (short)stockPrice
: Stock price of underlying stockstrike
: Strike price of the optionr
: Risk-free ratemu
: Expected rate of return on the underlying asset and is in annualised termsigma
: Volatility of the underlying stock and is in annualised termmaturity
: The term to maturity of the option in daysnumberTrials
: The number of interations in the Monte Carlo simulation exercisecl
: Confidence level for which ES is computed and is scalarhp
: Holding period of the option in days and is scalarES
# Market Risk of American call with given parameters. BlackScholesCallESSim(0.20, 27.2, 25, .16, .2, .05, 60, 30, .95, 30)
Dinesh Acharya
Dowd, Kevin. Measuring Market Risk, Wiley, 2007.
Lyuu, Yuh-Dauh. Financial Engineering & Computation: Principles, Mathematics, Algorithms, Cambridge University Press, 2002.
Useful links