Skip to main content

Fourier-based European option pricing with Carr-Madan FFT, FRFT, and COS under characteristic-function models.

Project description

fourier-option-pricer

Fourier pricing toolkit for European options using Carr-Madan FFT, FRFT, and COS under characteristic-function models.

This package solves a practical numerical-finance problem: pricing vanilla European options quickly when the model is easier to describe through its characteristic function than through a closed-form price formula. It gives one consistent workflow for pricing strips, implied volatilities, and surfaces across Heston, Variance Gamma, Kou, and related models. The PyPI package name is fourier-option-pricer, and the Python import name is foureng.

Supported model layer

The pricing layer supports twenty characteristic-function models. Some are thin adapters over PyFENG, while others are implemented in-house inside foureng.models.

Model Public dataclass Characteristic-function source Notes
Black-Scholes-Merton BsmParams PyFENG-backed adapter Diffusion baseline and sanity-check model.
Heston HestonParams PyFENG-backed adapter Main stochastic-volatility benchmark.
OUSV / Schobel-Zhu OusvParams PyFENG-backed adapter Stochastic-volatility alternative to Heston.
Variance Gamma VGParams PyFENG-backed adapter Pure-jump Lévy model used in the repo benchmarks.
CGMY CgmyParams PyFENG-backed adapter Infinite-activity tempered-stable jump model.
Normal Inverse Gaussian NigParams PyFENG-backed adapter Lévy model with heavier tails than Gaussian diffusion.
Kou KouParams In-house implementation Double-exponential jump-diffusion CF and cumulants.
Bates BatesParams In-house composite Heston diffusion block plus Merton jump block.
Heston-Kou HestonKouParams In-house composite Heston block combined with the Kou jump CF.
Heston-CGMY HestonCGMYParams In-house composite Heston block combined with a CGMY jump factor.
3/2 Stochastic Volatility Sv32Params PyFENG-backed adapter Mean-reverting variance process with 3/2 diffusion coefficient.
GARCH (WMW 2012) GarchWMW2012Params In-house implementation Discrete-time GARCH model with analytic CF from Wendland-Maller-Weron (2012).
Rough Heston RoughHestonParams PyFENG-backed adapter Fractional Brownian motion variance driver (Hurst index H < 1/2).
Merton Jump-Diffusion MertonJDParams In-house implementation Geometric Brownian motion plus compound Poisson jumps with log-normal sizes.
Meixner MeixnerParams In-house implementation Lévy process with CF based on the hyperbolic cosine; fits S&P500 smile.
Bilateral Gamma BilateralGammaParams In-house implementation Separate Gamma processes for upward and downward moves (Küchler & Tappe 2008).
Generalized Hyperbolic GHParams In-house implementation Normal variance-mean mixture via GIG; includes NIG (λ=−½) and Hyperbolic (λ=1) as special cases.
Finite Moment Log Stable (FMLS) FMLSParams In-house implementation Maximally negatively-skewed α-stable Lévy process; all positive moments of S_T are finite (Carr & Wu 2003).
Double Heston DoubleHestonParams In-house implementation Two independent Heston variance factors; CF factorises as a product of two single-Heston CFs (Christoffersen, Heston & Jacobs 2009).
VGSA VGSAParams In-house implementation Variance Gamma on a stochastic CIR activity clock; captures term-structure of skew and vol-of-vol clustering (Carr, Geman, Madan & Yor 2003).

PyFENG dependency note. The eight PyFENG-backed models rely on pyfeng>=0.3.0. Rough Heston imports directly from pyfeng.sv_fft (not pyfeng.ex) to avoid a broken path that calls the removed scipy.misc.derivative in newer SciPy. The method="pyfeng_fft" option in price_strip is supported only for these eight models; the remaining twelve use the in-house COS / Carr-Madan / FRFT pricers.

All 20 models are first-class public API objects importable directly from the top-level package. Their parameter dataclasses, characteristic functions, and cumulant functions are all in foureng.__all__ and importable as fe.HestonParams, fe.vg_cf, fe.fmls_cumulants, etc. The MODEL_REGISTRY in foureng.models.registry is the single source of truth for which models are supported and which have a native PyFENG FFT pricer; price_strip dispatches through it.

Why use Fourier methods here instead of plain Monte Carlo?

Monte Carlo is still useful as a validation baseline, but it scales poorly for plain-vanilla European pricing once a characteristic function is available. Its standard error behaves like

$$ \text{MC error} = O(n^{-1/2}), $$

so reducing the error by a factor of 10 usually needs about 100 times as many paths. The Fourier methods in this package reuse the same model input to price whole strike strips much more efficiently than pathwise simulation.

Characteristic-function backbone

All three pricing families in this package start from the same object:

$$ \varphi_T(u) = \mathbb{E}^{\mathbb{Q}}\left[e^{iuX_T}\right], \qquad X_T = \log\left(\frac{S_T}{F_0}\right). $$

Here i = sqrt(-1), u is the Fourier frequency, and X_T is the terminal log-forward return. Carr-Madan FFT and FRFT recover prices through Fourier inversion of this characteristic function, while COS uses the same object to build cosine-series coefficients on a truncated interval. For PyFENG-backed models, foureng translates its dataclasses into the corresponding pyfeng.*Fft model and evaluates charfunc_logprice; for the in-house models, the characteristic functions are implemented directly in foureng.models.

Installation

pip install fourier-option-pricer

Quick start

import numpy as np
import foureng as fe

fwd = fe.ForwardSpec(S0=100.0, r=0.01, q=0.02, T=1.0)
params = fe.HestonParams(kappa=4.0, theta=0.25, nu=1.0, rho=-0.5, v0=0.04)

phi = lambda u: fe.heston_cf_form2(u, fwd, params)
strikes = np.array([80.0, 90.0, 100.0, 110.0, 120.0])
grid = fe.cos_auto_grid(fe.heston_cumulants(fwd, params), N=256, L=10.0)
result = fe.cos_prices(phi, fwd, strikes, grid)

print(result.call_prices)

Testing and validation layout

The repository currently collects 669 pytest cases. They are grouped by validation purpose rather than by implementation phase:

Folder Contents
tests/refs/ Frozen JSON reference files used by no-network paper-replication tests: MathWorks Bates case, PyFENG 3/2 regression target, and Baldeaux-Badran 3/2 figure parameters.
tests/papers/ Published-paper and benchmark replications: Carr-Madan, Lewis, FRFT, Fang-Oosterlee COS, Kou/COS, Bates MathWorks reference (all six pricers), and 3/2 Baldeaux-Badran qualitative smoke test.
tests/models/ Model adapter, regression-strip, and reduction-limit tests for all 20 models, including paper-backed 3-layer suites (analytic benchmarks, cross-engine agreement, structural properties) for each in-house model, and model-reduction identities (Bates→BSM, Bates→Merton JD, sv32 PyFENG regression).
tests/methods/ Pricing-method behavior: COS policies, filters, alpha validity, cross-method agreement, and robustness sweeps.
tests/features/ End-to-end package features: Monte Carlo, control variates, implied volatility, calibration, Greeks, public API, integration workflows, and @pytest.mark.slow notebook execution guards.

Run the fast CI-style suite with:

pytest -q -m "not slow"

Run every test, including slower reference and Monte Carlo checks, with:

pytest -q

See tests/README.md for the folder map.

API reference

The main public API is exposed from:

import foureng as fe

The unified notebook and benchmark dispatcher is also available as:

from foureng.pipeline import price_strip

Market inputs and model parameters

Object Parameters Returns / purpose
ForwardSpec(S0, r, q, T) S0: float, r: float, q: float, T: float Market inputs. Also provides derived F0 and discount factor disc.
BsmParams(sigma) Black-Scholes volatility parameter Diffusion baseline model dataclass.
HestonParams(kappa, theta, nu, rho, v0) Heston stochastic-volatility parameters Heston model parameter dataclass.
OusvParams(sigma0, kappa, theta, nu, rho) Schobel-Zhu / OUSV stochastic-volatility parameters OUSV model parameter dataclass.
VGParams(sigma, nu, theta) Variance Gamma parameters Variance Gamma parameter dataclass.
CgmyParams(C, G, M, Y) CGMY Levy parameters CGMY model parameter dataclass.
NigParams(sigma, nu, theta) NIG Levy parameters NIG model parameter dataclass.
KouParams(sigma, lam, p, eta1, eta2) Diffusion plus jump parameters Kou double-exponential jump-diffusion parameter dataclass.
BatesParams(kappa, theta, nu, rho, v0, lam_j, mu_j, sigma_j) Heston block plus Merton jump parameters Bates stochastic-volatility jump-diffusion dataclass.
HestonKouParams(kappa, theta, nu, rho, v0, lam_j, p_j, eta1, eta2) Heston block plus Kou jump parameters Heston-Kou composite model dataclass.
HestonCGMYParams(kappa, theta, nu, rho, v0, C, G, M, Y) Heston block plus CGMY jump parameters Heston-CGMY composite model dataclass.
Sv32Params(v0, kappa, theta, nu, rho) 3/2 model parameters 3/2 stochastic-volatility parameter dataclass.
GarchWMW2012Params(v0, kappa, theta, nu, rho) GARCH diffusion parameters (Wu-Ma-Wang 2012) Discrete-time GARCH option pricing dataclass.
RoughHestonParams(sigma, vov, mr, rho, theta, alpha) Rough Heston parameters Rough Heston parameter dataclass; alpha in (0, 1) (fractional exponent).
MertonJDParams(sigma, lam, mu_j, sigma_j) Diffusion volatility plus jump parameters Merton jump-diffusion parameter dataclass.
MeixnerParams(a, b, delta) Meixner Lévy parameters Meixner process parameter dataclass.
BilateralGammaParams(alpha_p, lambda_p, alpha_m, lambda_m) Bilateral Gamma parameters Bilateral Gamma parameter dataclass (separate up/down Gamma processes).
GHParams(lam, alpha, beta, delta) Generalized Hyperbolic parameters GH Lévy model dataclass; lam=-0.5 gives NIG, lam=1 gives Hyperbolic.
FMLSParams(alpha, sigma) Stability index and scale FMLS parameter dataclass; alpha in (1, 2], recovers BSM at alpha=2.
DoubleHestonParams(kappa1, theta1, nu1, rho1, v01, kappa2, theta2, nu2, rho2, v02) Two independent Heston variance-factor parameter sets Double Heston dataclass; CF factorises as product of two single-Heston CFs.
VGSAParams(C, G, M, kappa, eta, lam) VG tempering rates plus CIR activity-clock parameters VGSA dataclass; C is initial activity, G/M are left/right tempering rates, kappa/eta/lam are CIR parameters. lam=0 reduces to standard VG.

Characteristic functions and cumulants

Object Parameters Returns / purpose
bsm_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: BsmParams Complex-valued Black-Scholes characteristic function.
heston_cf_form2(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: HestonParams Complex-valued Heston characteristic function in log-forward coordinates.
ousv_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: OusvParams Complex-valued OUSV / Schobel-Zhu characteristic function.
vg_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: VGParams Complex-valued Variance Gamma characteristic function.
cgmy_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: CgmyParams Complex-valued CGMY characteristic function.
nig_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: NigParams Complex-valued NIG characteristic function.
kou_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: KouParams Complex-valued Kou characteristic function.
bates_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: BatesParams Complex-valued Bates characteristic function.
heston_kou_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: HestonKouParams Complex-valued Heston-Kou characteristic function.
heston_cgmy_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: HestonCGMYParams Complex-valued Heston-CGMY characteristic function.
sv32_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: Sv32Params Complex-valued 3/2 stochastic-volatility characteristic function.
garch_wmw2012_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: GarchWMW2012Params Complex-valued GARCH characteristic function (Wendland-Maller-Weron).
rough_heston_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: RoughHestonParams Complex-valued Rough Heston characteristic function via Adams scheme.
merton_jd_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: MertonJDParams Complex-valued Merton jump-diffusion characteristic function.
meixner_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: MeixnerParams Complex-valued Meixner characteristic function.
bilateral_gamma_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: BilateralGammaParams Complex-valued Bilateral Gamma characteristic function.
gh_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: GHParams Complex-valued Generalized Hyperbolic characteristic function (uses Bessel K).
fmls_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: FMLSParams Complex-valued FMLS characteristic function via principal branch of (iu)^alpha.
double_heston_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: DoubleHestonParams Complex-valued Double Heston CF; product of two single-Heston CFs.
vgsa_cf(u, fwd, params) u: np.ndarray, fwd: ForwardSpec, params: VGSAParams Complex-valued VGSA CF via CIR Laplace transform of the VG Lévy exponent.
bsm_cumulants(fwd, params) ForwardSpec, BsmParams Black-Scholes cumulants used in COS grid construction.
heston_cumulants(fwd, params) ForwardSpec, HestonParams Heston cumulants used to build COS truncation intervals.
ousv_cumulants(fwd, params) ForwardSpec, OusvParams OUSV cumulants for COS grid construction.
vg_cumulants(fwd, params) ForwardSpec, VGParams Variance Gamma cumulants for COS grid construction.
cgmy_cumulants(fwd, params) ForwardSpec, CgmyParams CGMY cumulants for COS grid construction.
nig_cumulants(fwd, params) ForwardSpec, NigParams NIG cumulants for COS grid construction.
kou_cumulants(fwd, params) ForwardSpec, KouParams Kou cumulants for COS grid construction.
bates_cumulants(fwd, params) ForwardSpec, BatesParams Bates cumulants for COS grid construction.
heston_kou_cumulants(fwd, params) ForwardSpec, HestonKouParams Heston-Kou cumulants for COS grid construction.
heston_cgmy_cumulants(fwd, params) ForwardSpec, HestonCGMYParams Heston-CGMY cumulants for COS grid construction.
sv32_cumulants(fwd, params) ForwardSpec, Sv32Params 3/2 model cumulants for COS grid construction.
garch_wmw2012_cumulants(fwd, params) ForwardSpec, GarchWMW2012Params GARCH cumulants for COS grid construction.
rough_heston_cumulants(fwd, params) ForwardSpec, RoughHestonParams Rough Heston cumulants for COS grid construction.
merton_jd_cumulants(fwd, params) ForwardSpec, MertonJDParams Merton jump-diffusion cumulants for COS grid construction.
meixner_cumulants(fwd, params) ForwardSpec, MeixnerParams Meixner cumulants for COS grid construction.
bilateral_gamma_cumulants(fwd, params) ForwardSpec, BilateralGammaParams Bilateral Gamma cumulants for COS grid construction (closed form).
gh_cumulants(fwd, params) ForwardSpec, GHParams Generalized Hyperbolic cumulants for COS grid construction.
fmls_cumulants(fwd, params) ForwardSpec, FMLSParams FMLS cumulants via numerical Cauchy integration. Note: COS is not recommended for α<2 (power-law tails); prefer Carr-Madan or FRFT.
double_heston_cumulants(fwd, params) ForwardSpec, DoubleHestonParams Double Heston cumulants (sum of the two single-factor Heston cumulants).
vgsa_cumulants(fwd, params) ForwardSpec, VGSAParams VGSA cumulants via CIR moment formulas for the integrated activity.

Grid objects and grid builders

Object Parameters Returns / purpose
COSGrid(a, b, N) truncation interval and number of terms Concrete COS grid used by cos_prices.
COSGridPolicy(...) policy fields such as mode, truncation, dx_target, L, eps_trunc Rule-based COS grid specification used by the improved and filtered COS paths.
FFTGrid(N, eta, alpha) FFT size, frequency spacing, damping parameter Carr-Madan FFT grid.
FRFTGrid(N, eta, lam, alpha) FRFT size, spacing, strike step, damping parameter Fractional FFT grid.
cos_auto_grid(cumulants, N, L) cumulants, term count, truncation multiplier Returns a COSGrid from the standard cumulant rule.
cos_improved_grid(cumulants, model=..., params=...) cumulants plus model context Returns a COSGrid using the improved COS truncation policy.
recommended_cos_policy(model, params, mode=...) model name and parameter dataclass Returns a COSGridPolicy for the improved COS workflow.

Core pricing functions

Object Parameters Returns / purpose
cos_prices(phi, fwd, strikes, grid) characteristic function, ForwardSpec, strike array, COSGrid Returns COSResult with strikes and call_prices.
carr_madan_price_at_strikes(phi, fwd, grid, strikes) characteristic function, ForwardSpec, FFTGrid, strike array Returns NumPy array of call prices from Carr-Madan FFT.
frft_price_at_strikes(phi, fwd, grid, strikes) characteristic function, ForwardSpec, FRFTGrid, strike array Returns NumPy array of call prices from FRFT.
filtered_cos_prices(phi, fwd, strikes, grid, filter_spec=...) characteristic function, ForwardSpec, strike array, COS grid, filter Returns COSResult with spectral filtering applied to the COS coefficients.
price_strip(model, method, strikes, fwd, params, grid=None, ...) model label, method label, strike array, market inputs, model parameters Unified strip-pricing dispatcher used throughout the notebooks and benchmarks.

Filtered-COS helpers

Object Parameters Returns / purpose
COSFilterSpec(name, order=..., alpha=...) filter family and optional shape parameters Filter specification for the filtered COS method.
cos_filter_weights(N, filter_spec) number of COS terms and filter spec NumPy array of spectral weights sigma_k.
cos_adaptive_decision(...) model context and COS policy inputs Returns COSPolicyDecision summarizing the improved COS grid choice.

Implied volatility

Object Parameters Returns / purpose
BSInputs(F0, K, T, r, q, is_call) Black-style inversion inputs Dataclass passed into implied-vol routines.
bs_price_from_fwd(sigma, inputs) volatility and BSInputs Black-Scholes price from forward inputs.
implied_vol_newton_safeguarded(price, inputs) option price and BSInputs Returns float implied volatility using safeguarded Newton iterations.
implied_vol_brent(price, inputs) option price and BSInputs Returns float implied volatility using a bracketing solver.

Surfaces, calibration, and Greeks

Object Parameters Returns / purpose
SurfaceSpec(S0, r, q, maturities, strikes) market inputs plus maturity/strike grids Surface input container for model price or IV surfaces.
model_price_surface(...) surface spec plus pricing callbacks Returns a price surface over maturity and strike grids.
model_iv_surface(...) surface spec plus pricing callbacks Returns an implied-volatility surface.
calibrate_heston(...), calibrate_vg(...), calibrate_kou(...) market targets, grid inputs, initial guesses Return CalibrationResult for the chosen model.
cos_price_and_greeks(phi, fwd, strikes, grid) characteristic function, market inputs, strike array, grid Returns COSGreeks with prices and sensitivity arrays.
cos_delta_gamma(phi, fwd, strikes, grid) characteristic function, market inputs, strike array, grid Returns delta and gamma arrays.
cos_parameter_sensitivity(...) model setup plus parameter perturbation inputs Returns COS-based parameter sensitivities.

License

MIT. See LICENSE.

Demo notebook

Open In Colab

The Colab-ready demo notebook lives at notebooks/demo.ipynb.

Paper-replication notebooks live at notebooks/paper_replications/:

Notebook What it shows
bates_mathworks_replication.ipynb Bates model priced against the frozen MathWorks reference case using COS, improved COS, filtered COS, Carr-Madan, FRFT, and Lewis. Includes a scoreboard table, error plots, an assertion gate, and a CSV saved to benchmarks/.
three_halves_replication.ipynb 3/2 SV model: PyFENG regression case cross-checked against COS-improved and Lewis; Baldeaux-Badran figure parameters used for qualitative IV smile and no-arbitrage shape checks.

Papers used

These are the main papers the package and notebook workflow are built around.

Topic Reference
Carr-Madan FFT Carr, P. and Madan, D.B. (1999), Option Valuation Using the Fast Fourier Transform.
FRFT for option pricing Chourdakis, K. (2004), Option Pricing Using the Fractional FFT.
COS method Fang, F. and Oosterlee, C.W. (2008), A Novel Pricing Method for European Options Based on Fourier-Cosine Series Expansions.
Heston model Heston, S.L. (1993), A Closed-Form Solution for Options with Stochastic Volatility.
Stable Heston CF branch handling Albrecher, H., Mayer, P., Schoutens, W. and Tistaert, J. (2007), The Little Heston Trap.
Lewis benchmark formula Lewis, A.L. (2001), A Simple Option Formula for General Jump-Diffusion and Other Exponential Levy Processes.
Variance Gamma model Madan, D.B., Carr, P. and Chang, E.C. (1998), The Variance Gamma Process and Option Pricing.
Kou jump-diffusion model Kou, S.G. (2002), A Jump-Diffusion Model for Option Pricing.
Improved COS truncation range Junike, G. and Pankrashkin, K. (2022), Precise Option Pricing by the COS Method: How to Choose the Truncation Range.
Improved COS term-count policy Junike, G. (2024), On the Number of Terms in the COS Method for European Option Pricing.
Spectral filtering for Fourier/COS pricing Ruijter, M.J., Versteegh, M. and Oosterlee, C.W. (2015), On the Application of Spectral Filters in a Fourier Option Pricing Technique.
Merton jump-diffusion Merton, R.C. (1976), Option Pricing when Underlying Stock Returns are Discontinuous, Journal of Financial Economics.
Meixner process Schoutens, W. (2002), The Meixner Process: Theory and Applications in Finance, EURANDOM Report.
Bilateral Gamma Küchler, U. and Tappe, S. (2008), Bilateral Gamma Distributions and Processes in Financial Mathematics, Stochastic Processes and their Applications.
Generalized Hyperbolic Barndorff-Nielsen, O.E. (1977), Exponentially Decreasing Distributions for the Logarithm of Particle Size, Proc. Royal Society London. Eberlein, E. and Keller, U. (1995), Hyperbolic Distributions in Finance, Bernoulli.
Finite Moment Log Stable Carr, P. and Wu, L. (2003), The Finite Moment Log Stable Process and Option Pricing, Journal of Finance, 58(2), 753–777.
Double Heston (two-factor SV) Christoffersen, P., Heston, S. and Jacobs, K. (2009), The Shape and Term Structure of the Index Option Smirk: Why Multifactor Stochastic Volatility Models Work So Well, Management Science, 55(12), 1914–1932.
VGSA (VG with stochastic arrival) Carr, P., Geman, H., Madan, D.B. and Yor, M. (2003), Stochastic Volatility for Lévy Processes, Mathematical Finance, 13(3), 345–382.
Bates SVJ model Bates, D.S. (1996), Jumps and Stochastic Volatility: Exchange Rate Processes Implicit in Deutsche Mark Options, Review of Financial Studies, 9(1), 69–107.
3/2 SV qualitative parameters Baldeaux, J. and Badran, A. (2012), Consistent Modelling of VIX and Equity Derivatives Using a 3/2 Plus Jumps Model, Applied Mathematical Finance, 21(4), 299–312.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fourier_option_pricer-0.4.0.tar.gz (116.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fourier_option_pricer-0.4.0-py3-none-any.whl (133.9 kB view details)

Uploaded Python 3

File details

Details for the file fourier_option_pricer-0.4.0.tar.gz.

File metadata

  • Download URL: fourier_option_pricer-0.4.0.tar.gz
  • Upload date:
  • Size: 116.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fourier_option_pricer-0.4.0.tar.gz
Algorithm Hash digest
SHA256 114dfafcddd3b42f58e1fd64293bb5dc6502cf2910286a22a30d68e8e7c08c70
MD5 5cc80aadf4635df3588ec611ba340a81
BLAKE2b-256 583dfaaef913ff724e051866f687098ac80997b06120434d9e20842daac7bcaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fourier_option_pricer-0.4.0.tar.gz:

Publisher: publish.yml on nl2992/fourier-option-pricer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fourier_option_pricer-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for fourier_option_pricer-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 078783c7fd49adb2a2e844427283a243f83423bc952547000dd5b69414a63364
MD5 61a116c8fc97dda62378d819be83b44a
BLAKE2b-256 dd752432d76eefba860c5b2cb488b167456f91723a6bca577233cf203c10490c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fourier_option_pricer-0.4.0-py3-none-any.whl:

Publisher: publish.yml on nl2992/fourier-option-pricer

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page