메뉴 건너뛰기

XEDITION

Board

600Extending our model to price binary options.
Our model of pricing European options by Monte Carlo simulations can be used as the basis for pricing a variety of exotic options.
In our previous simulation we defined a way of distributing asset prices at maturity, and a way of assessing the value of an option at maturity with that price.
This simulation can be thought of generically like:
By changing how we generate asset prices and how we assess an option's payoff, we can generate prices for forex some exotic options.
Binary options.
A binary option (also known as an all-or-nothing or digital option) is an option where the payoff is either some amount or nothing at all. The payoff is, usually, binary options a fixed amount of cash or the value of the asset.
For our simulation, we're going to look at cash-or-nothing binary options. The payoff of the binary call and put options are shown below.
The payoff graph of the binary call is telling us that if the price of the stock is greater than or equal to $40.00 (our strike) then the option pays $1.00.
We can write a binary call's payoff as a python function:
Simulation.
Our asset's price is still going to follow a geometric Brownian motion, best forex robot so we can use the generate_asset_price() function from the previous article.
That's all we need to price binary cash-or-nothing calls. Putting it all together looks like this:
Running this gives us a price of around $0.48413327, or around $0.484.
Checking our results.
Binary options can also be priced using the traditional Black Scholes model, using the following formula:
Where N is the cumulative normal distribution function, and d2 is given by the standard Black Scholes formula.
Let's test how accurate our price was by plugging in the parameters from our simulation:
So the Black Scholes formula gives us a price of around $0.490. Meaning our simulation was off by only $0.006.
위로