Valuing European Options Using Monte Carlo Simulation-Derivative Pricing in Python

Subscribe to newsletter

In a previous post, we presented a methodology for pricing European options using a closed-form formula. In this installment, we price these options using a numerical method. Specifically, we will use Monte Carlo simulation.

Recall that,

  • A call option gives the buyer the right, but not the obligation to buy an agreed quantity of the underlying from the seller at a future time for a given price. The payoff of the call option at expiration is max(ST-K,0),
  • A put option gives the buyer the right, but not the obligation to sell an agreed quantity of the underlying to the seller at a future time for a given price. The payoff of the put option at expiration is max(K -ST,0),

where ST  denotes the stock price at expiration and K is the strike price.

Subscribe to newsletter https://harbourfrontquant.beehiiv.com/subscribe Newsletter Covering Trading Strategies, Risk Management, Financial Derivatives, Career Perspectives, and More

To price these options, we first simulate the price paths using the following Stochastic Differential Equation:

Monte Carlo simulation in pythonwhere

  • St is the stock price at time t,
  • σ denotes the stock volatility,
  • µ is the drift which equals the risk-free rate, and
  • dWt represents the standard normal random variable.

The simulation is carried out until the options’ maturity. We then apply the terminal payoff functions and calculate the mean values of all the payoffs. Finally, we discount the mean values to the present and thus obtain the option values.  For a more detailed presentation of the Monte Carlo method, see Reference [1].

The picture below shows the call and put option prices using 100000 simulations. All other parameters are the same as in the previous post.

options pricing in Python using Monte Carlo

We compare the above results to the ones obtained by using a third-party software and notice that they are in good agreement.

derivative pricing in python

In the next installment, we will present a methodology for pricing American options using Monte Carlo simulation.

References

[1] Glasserman, Paul; Monte Carlo Methods in Financial Engineering, Springer; 2003


To download the accompanying Excel workbook or Python program for this post:
1. Subscribe to the newsletter. If you're already a subscriber, go to the next step
2. Once subscribed, refer a friend
After completing these steps, you’ll gain access to the file for this post, along with files for a dozen other posts.

Further questions

What's your question? Ask it in the discussion forum

Have an answer to the questions below? Post it here or in the forum

LATEST NEWSPope Francis, first Latin American pontiff, dies after stroke and cardiac arrest
Pope Francis, first Latin American pontiff, dies after stroke and cardiac arrest
Stay up-to-date with the latest news - click here
LATEST NEWSPurpose Investments Announces Risk Rating Change for Purpose Global Innovators Fund
Purpose Investments Announces Risk Rating Change for Purpose Global Innovators Fund
Stay up-to-date with the latest news - click here
LATEST NEWSGold Surges to Record as Trump Ramps Up Threats on Fed’s Powell
Gold Surges to Record as Trump Ramps Up Threats on Fed’s Powell

Gold rose to an all-time-high, after concern that President Donald Trump could fire Federal Reserve Chair Jerome Powell triggered a flight from US stocks, bonds and the dollar.

Stay up-to-date with the latest news - click here
LATEST NEWSHarvard University sues to block Trump from slashing billions in research funding
Harvard University sues to block Trump from slashing billions in research funding
Stay up-to-date with the latest news - click here
LATEST NEWSLion Copper & Gold CEO John Banning buys $63,072 in shares
Lion Copper & Gold CEO John Banning buys $63,072 in shares
Stay up-to-date with the latest news - click here

One Response

Leave a Reply