Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

using Montecarlo create an R code to solve problem Consider a call option with S0=50),(K=51 , r=.05 , =.3 and T=.5 . Use the Monte

using Montecarlo create an R code to solve problem

Consider a call option with S0=50),\(K=51 , r=.05 , =.3 and T=.5 . Use the Monte Carlo estimation of stock price to estimate Delta, Gamma and vega for the standard call option and compare it with the formulas given in the book.

The following is given code just modify it

```{r} ST=50*exp((.05-.3^2/2)*.5+.3*sqrt(.5)*rnorm(10))

payoff=(51-ST)*(51-ST>0) ST payoff exp(-.05*.5)*mean(payoff) ST=50*exp((.05-.3^2/2)*.5+.3*sqrt(.5)*rnorm(10000)) payoff=(51-ST)*(51-ST>0) exp(-.05*.5)*mean(payoff) ```

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

International Financial Management

Authors: Jeff Madura

2nd Edition

0314430296, 978-0314430298

More Books

Students also viewed these Finance questions