Integration Technique#
Bases: BaseTechnique
, GreekMixin
, IVMixin
Prices options using the Gil-Pelaez inversion formula via numerical quadrature.
This technique leverages the model's characteristic function (CF) to price options. It is particularly useful for models where a closed-form solution is unavailable but the CF is known (e.g., Heston, Bates, VG, NIG).
It provides an analytic delta as a "free" byproduct of the pricing calculation.
Source code in src/quantfin/techniques/integration.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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 |
|
__init__(*, upper_bound: float = 200.0, limit: int = 200, epsabs: float = 1e-09, epsrel: float = 1e-09)
#
Initializes the numerical integration solver.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
upper_bound
|
float
|
The upper limit of the integration, by default 200.0. |
200.0
|
limit
|
int
|
The maximum number of sub-intervals for the integration, by default 200. |
200
|
epsabs
|
float
|
The absolute error tolerance for the integration, by default 1e-9. |
1e-09
|
epsrel
|
float
|
The relative error tolerance for the integration, by default 1e-9. |
1e-09
|
Source code in src/quantfin/techniques/integration.py
delta(option: Option, stock: Stock, model: BaseModel, rate: Rate, **kwargs: Any) -> float
#
Returns the 'free' delta calculated during the pricing call.
If the cache is empty or the analytic delta calculation failed, it
falls back to the numerical finite difference method from GreekMixin
.
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 support a characteristic function. |
required |
rate
|
Rate
|
The risk-free rate structure. |
required |
Returns:
Type | Description |
---|---|
float
|
Delta of the option. |
Source code in src/quantfin/techniques/integration.py
price(option: Option, stock: Stock, model: BaseModel, rate: Rate, **kwargs: Any) -> PricingResult
#
Calculates the option price and caches the 'free' analytic delta.
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 support a characteristic function. |
required |
rate
|
Rate
|
The risk-free rate structure. |
required |
Returns:
Type | Description |
---|---|
PricingResult
|
An object containing the calculated price. |