py_vollib.black

A library for option pricing, implied volatility, and greek calculation. py_vollib is based on lets_be_rational, a Python wrapper for LetsBeRational by Peter Jaeckel as described below.

copyright:

© 2023 Larry Richards

license:

MIT, see LICENSE for more details.

About LetsBeRational:

The source code of LetsBeRational resides at www.jaeckel.org/LetsBeRational.7z .

========================================================================================
Copyright © 2013-2014 Peter Jäckel.

Permission to use, copy, modify, and distribute this software is freely granted,
provided that this notice is preserved.

WARRANTY DISCLAIMER
The Software is provided "as is" without warranty of any kind, either express or implied,
including without limitation any implied warranties of condition, uninterrupted use,
merchantability, fitness for a particular purpose, or non-infringement.
========================================================================================

Subpackages

Submodules

Package Contents

Functions

black(flag, F, K, t, r, sigma)

Calculate the (discounted) Black option price.

undiscounted_black(F, K, sigma, t, flag)

Calculate the undiscounted Black option price.

normalised_black(x, s, flag)

Calculate the normalised Black value,

Attributes

binary_flag

binary_flag
black(flag, F, K, t, r, sigma)[source]

Calculate the (discounted) Black option price.

Parameters:
  • F (float) – underlying futures price

  • K (float) – strike price

  • sigma (float) – annualized standard deviation, or volatility

  • t (float) – time to expiration in years

>>> F = 100
>>> K = 100
>>> sigma = .2
>>> flag = 'c'
>>> r = .02
>>> t = .5
>>> black(flag, F, K, t, r, sigma)
5.5811067246048118
undiscounted_black(F, K, sigma, t, flag)[source]

Calculate the undiscounted Black option price.

Parameters:
  • F (float) – underlying futures price

  • K (float) – strike price

  • sigma (float) – annualized standard deviation, or volatility

  • t (float) – time to expiration in years

>>> F = 100
>>> K = 100
>>> sigma = .2
>>> flag = 'c'
>>> t = .5
>>> undiscounted_black(F, K, sigma, t, flag)
5.637197779701664
normalised_black(x, s, flag)[source]

Calculate the normalised Black value, a “time value put-call invariant” transformation of the Black pricing formula. In other words, the amount of time value, or “extrinsic” value of a put and call at the same log-moneyness will be always be identical.

Parameters:
  • x (float) – ln(F/K) where K is the strike price, and F is the futures price

  • s (float) – volatility times the square root of time to expiration

  • flag (str) – ‘p’ or ‘c’ for put or call

>>> def normalised_intrinsic(F, K, flag):
...     if flag=='c':
...         return max(F-K,0)/(F*K)**0.5
...     else:
...         return max(K-F,0)/(F*K)**0.5
>>> F = 100.
>>> K = 95.
>>> x = log(F/K)
>>> t = 0.5
>>> v = 0.3
>>> s = v * sqrt(t)
>>> normalised_black(x,s,'p')
0.061296663817558904
>>> normalised_black(x,s,'c')
0.11259558142181655

‘’’ Here the put is OTM, so has only time value. The call is ITM, having both intrinsic and time value. Since the time value must be equal for both, the call normalised price minus its normalised intrinsic must equal the put normalised price.

>>> (normalised_black(x,s,'p') - (
... normalised_black(x,s,'c') - normalised_intrinsic(F,K,'c')))<1e-12
True