BlackScholesLambda - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Finance

  

BlackScholesLambda

  

compute the Lambda of a European-style option with given payoff

 

Calling Sequence

Parameters

Description

Examples

References

Compatibility

Calling Sequence

BlackScholesLambda(S0, K, T, sigma, r, d, optiontype)

BlackScholesLambda(S0, P, T, sigma, r, d)

Parameters

S0

-

algebraic expression; initial (current) value of the underlying asset

K

-

algebraic expression; strike price

T

-

algebraic expression; time to maturity

sigma

-

algebraic expression; volatility

r

-

algebraic expression; continuously compounded risk-free rate

d

-

algebraic expression; continuously compounded dividend yield

P

-

operator or procedure; payoff function

optiontype

-

call or put; option type

Description

• 

The Lambda of an option or a portfolio of options is the percentage change in option value per percentage change in the price of the underlying asset, which is used as a measure of leverage.

Λ=ⅆSⅆS0S0S

• 

The BlackScholesLambda command computes the Lambda of a European-style option with the specified payoff function.

• 

The parameter S0 is the initial (current) value of the underlying asset. The parameter T is the time to maturity in years.

• 

The parameter K specifies the strike price if this is a vanilla put or call option. Any payoff function can be specified using the second calling sequence. In this case the parameter P must be given in the form of an operator, which accepts one parameter (spot price at maturity) and returns the corresponding payoff.

• 

The sigma, r, and d parameters are the volatility, the risk-free rate, and the dividend yield of the underlying asset. These parameters can be given in either the algebraic form or the operator form. The parameter d is optional. By default, the dividend yield is taken to be 0.

Examples

withFinance:

The following example illustrates the characteristics of the Lambda of an option with respect to the underlying asset price as well as the time to maturity.

In this example, the Lambda is defined as a function of the underlying asset price S0, and time to maturity, T.  For a European call option, we will assume that the strike price is 100, volatility is 0.10, and the risk-free interest rate of 0.05.  We also assume that this option does not pay any dividends.

ΛBlackScholesLambdaS0,100,T,0.1,0.05,0,call:

plot3dΛ,T=1.0..0,S0=0..200,labels=Time To Maturity,Spot Price,Value,colorscheme=zgradient,Black,White,Red,thickness=0

We can also see how the Lambda behaves as a function of the risk-free interest rate, the dividend yield, and volatility.  To compute the Lambda of a European call option with strike price 100 maturing in 1 year, we take:

BlackScholesLambda100,100,1,σ,r,d,call

ⅇderfσ2+2d2r24σ1ⅇderfσ2+2d2r24σⅇrerfσ2+2d2r24σⅇd+ⅇr

(1)

This can be numerically solved for specific values of the risk-free rate, the dividend yield, and the volatility.

BlackScholesLambda100,100,1,0.3,0.05,0.03,call

4.568593519

(2)

It is also possible to use the generic method in which the option is defined through its payoff function:

BlackScholesLambda100,tmaxt100,0,1,σ,r,d

ⅇrderfσ2+2d2r24σ1erfσ2+2d2r24σⅇrdⅇrderfσ2+2d2r24σ+1

(3)

BlackScholesLambda100,tmaxt100,0,1,0.3,0.05,0.03

4.568593411

(4)

ΛBlackScholesLambda100,100,1,σ,r,0.03,call

Λ48.52227668σ48.52227668erf0.02121320343+0.707106781r+0.3535533905σ2σσ38.7151754ⅇ0.0000499999999750.σ2+100.r3.2σ2+39.89422803ⅇ1.0.5000000002rσ2+0.00044999999980.02999999998r+0.01499999999σ2+0.4999999997r2+0.1249999999σ4σ248.5222766848.52227668erf0.02121320343+0.707106781r+0.3535533905σ2σ+50.ⅇ1.r+50.ⅇ1.rerf0.02121320343+0.707106781r0.3535533905σ2σσ

(5)

plot3dΛ,σ=0..1,r=0..1

Here are similar examples for the European put option:

BlackScholesLambda100,120,1,0.3,0.05,0.03,put

−2.760749063

(6)

BlackScholesLambda100,tmax120t,0,1,0.3,0.05,0.03,0

−2.760749005

(7)

References

  

Hull, J., Options, Futures, and Other Derivatives, 5th. edition. Upper Saddle River, New Jersey: Prentice Hall, 2003.

Compatibility

• 

The Finance[BlackScholesLambda] command was introduced in Maple 2015.

• 

For more information on Maple 2015 changes, see Updates in Maple 2015.

See Also

Finance[BlackScholesDelta]

Finance[BlackScholesPrice]

Finance[BlackScholesRho]

Finance[BlackScholesTheta]

Finance[BlackScholesVega]

Finance[EuropeanOption]

Finance[ImpliedVolatility]

Finance[LatticePrice]