FinancialDerivatives.jl icon indicating copy to clipboard operation
FinancialDerivatives.jl copied to clipboard

Financial derivatives modeling and pricing in Julia.

Results 9 FinancialDerivatives.jl issues
Sort by recently updated
recently updated
newest added

It's a registered package now, so you can add it more concisely.

Since the Manifest is old and is included in the package, I think most devs won't be able to instantiate and run tests because of an old Arpack dependency.

It seems like your dispatching for derivatives is too strict. Terms like ```julia struct AmericanOption{T

Implement Heston model via FFT according to [this ref](https://arxiv.org/vc/arxiv/papers/1502/1502.02963v1.pdf)

Closes #21 The implemenation has been validated against [QuantLib](https://www.quantlib.org/): ```py >>> option_price_ql = option.NPV() >>> print(f"Option Price using QuantLib: {option_price_ql:.16f}") >>> on Price using QuantLib: 8982.8708666875791096 ```

Allow the interface to support `Base.Dates`. This would allow defining valuation and expiration date.

Till we have a more stable version, we should make newer releases once we have "new" features.

## Motivation The current package supports a variety of financial models (e.g., Black-Scholes, Heston, Vasicek) and instruments (e.g., European Options, American Options, FX Options), but tightly couples them via a...