• C++ Programming for Financial Engineering
    Highly recommended by thousands of MFE students. Covers essential C++ topics with applications to financial engineering. Learn more Join!
    Python for Finance with Intro to Data Science
    Gain practical understanding of Python to read, understand, and write professional Python code for your first day on the job. Learn more Join!
    An Intuition-Based Options Primer for FE
    Ideal for entry level positions interviews and graduate studies, specializing in options trading arbitrage and options valuation models. Learn more Join!

2 simultaneous equations related to the Merton model

Joined
8/14/09
Messages
1
Points
11
Hi
Can someone help me in solving the 2 simultaneous equations related to the Merton model. Details are attached in the file

Regards
 

Attachments

  • Document1.pdf
    13 KB · Views: 146
Why not just use a non-linear solver like the one in excel to find appropriate values for vol and value of assets.
 
I think you could probably set that up easily as a non linear optimization problem. Excel solver should do the trick. If you're using something like python, try openopt. If you're using a .net like C#, try MS solver foundation.
 
My two cents.

From the Downloadable File extract program ExSan_4.00.Z_Merton_Eq to your desktop and execute.

C++:
 d Merton Equations
    sigma_e  ---> 0.698799   
    r  ---> 0.578974    
    E  European call option  ---> 99    
    F  strike  K---> 100    
    T  ---> 15
 
   (V) asset price S =  99.017     (sigma_v) asset volatility sigma  = 0.69868
 
    Verify using The Black-Scholes European call option formula
    Input data values:   s -> 99.017   k --> 100   stdev --> 0.69868  
    r --> 0.57897  tao --> 15
    d1 = 4.5587    d2 = 1.8528
    Black-Scholes, European call option value ----> 99
    N(d1) =  1   sigma_e' =  0.70574     confidence / error sigma_e' = 0.99314%

MERTON EQUATIONS
attached document
All values are known, except V and sigma v. -sv-
Find the values of V and sigma v? What kind of methods you will suggest?
E = V N(d1) - exp(-rT)*F*N(d2)
d1 =[ ln(V/F) + (r+0.5(sv)(sv))T ] / [ sv * sqrt(T)]
d2 = d1 - sv sqrt(T)
sE = (V/E) N(d1) sv
N(.) is the cumulative standard normal distribution

any takers ?
 

Attachments

  • ExSan4.00.Z_Merton_Eq.zip
    719 KB · Views: 187
Back
Top