PDE (Finite Difference) Technique#
Bases: BaseTechnique
, GreekMixin
, IVMixin
Prices options by solving the Black-Scholes PDE with a Crank-Nicolson scheme.
This technique is optimized for the BSM model and calculates the price, delta, and gamma in a single pass by building a grid of asset prices and time steps.
Source code in src/quantfin/techniques/pde.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
|
__init__(S_max_mult: float = 3.0, M: int = 200, N: int = 200)
#
Initializes the PDE solver.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
S_max_mult
|
float
|
Multiplier for the initial spot price to set the maximum grid boundary, by default 3.0. |
3.0
|
M
|
int
|
Number of asset price steps (grid columns), by default 200. |
200
|
N
|
int
|
Number of time steps (grid rows), by default 200. |
200
|
Source code in src/quantfin/techniques/pde.py
delta(option: Option, stock: Stock, model: BaseModel, rate: Rate, **kwargs) -> float
#
Returns the cached delta from the PDE grid.
If the cache is empty, it first runs the pricing calculation.
Source code in src/quantfin/techniques/pde.py
gamma(option: Option, stock: Stock, model: BaseModel, rate: Rate, **kwargs) -> float
#
Returns the cached gamma from the PDE grid.
If the cache is empty, it first runs the pricing calculation.
Source code in src/quantfin/techniques/pde.py
price(option: Option, stock: Stock, model: BaseModel, rate: Rate, **kwargs) -> PricingResult
#
Calculates the option price and caches grid-based Greeks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
option
|
Option
|
The option contract to be priced. |
required |
stock
|
Stock
|
The underlying asset's properties. |
required |
model
|
BaseModel
|
The financial model to use. Must be a BSMModel. |
required |
rate
|
Rate
|
The risk-free rate structure. |
required |
Returns:
Type | Description |
---|---|
PricingResult
|
An object containing the calculated price. |