Introducing Delta
Now we are going to dive deeper into some fundamental concepts of option pricing, specifically in a binomial tree. We’ll then introduce the concept of delta hedging, a strategy used to hedge against price movements in the underlying asset.
To set the scene, let’s think of a situation where the underlying stock price distribution is captured in a graph. This is based on a risk-free rate r=0, and we’re working on pricing a call option with a strike price K=90.
We’ll start with importing necessary Python libraries:
Delta Hedging in the Binomial Tree
Let’s dive right into the code that computes various aspects of our European call option using the binomial tree approach:
This function gives us the underlying asset’s evolution, the call option’s price at each tree node, and the delta at each node.
To better understand this function, consider the following example:
This outputs the underlying asset price, call price, and delta for all nodes.
To hedge the sale of the call option (from a bank’s perspective), one would:
Buy 0.675 shares at t=0. At t=1, hold 0.1875 shares if the price goes down or 1 share if the price increases.
By following this strategy, the resulting total cost would be $16.5, which matches the call price.
Generalization to Any N
Once we understand the basic example, generalizing the tree and hedging strategy for any number of time steps becomes straightforward.
#### Convergence How does the option price change with different time steps, N? Let’s visualize:
This code iterates through different values of N, and for each, computes the price of the option.
In a more visual form:
This visualization prompts us to ponder: Why does the price behave in this particular manner as we increase the number of steps?
The more steps we use, the finer the granularity of our simulation, meaning we capture more possible price paths of the underlying.
Discreteness vs. Continuity: A binomial model is inherently discrete, meaning it breaks down the time to expiration into small intervals and considers the price movement of the underlying asset at each interval. As we increase the number of steps, this model approximates a continuous model, which is often more accurate and reflective of the real world. The Black-Scholes model for option pricing, for instance, is a continuous model.
Law of Large Numbers: As the number of steps increases, we are effectively taking more samples of possible price paths. This allows our model to converge to a more ‘expected’ or ‘average’ result due to the law of large numbers, which states that as the number of trials in a random experiment increases, the average of the results should get closer to the expected value.
Model Convergence: As the number of steps N approaches infinity, the binomial model price will converge to the Black-Scholes model price. This is because the binomial model becomes a closer approximation of the continuous stochastic differential equation that underpins the Black-Scholes model.
We’ve navigated through the intricacies of option pricing in the binomial model and seen the effects of varying the number of steps in our model. This exercise underscores the importance of understanding delta hedging and the underlying assumptions in our model. As we’ve seen, the choice of parameters can lead to different pricing results, which has significant implications for hedging strategies and risk management in finance.