HQu-0.0.0.3: quantitative finance library
Safe HaskellNone
LanguageHaskell2010

Q.Options.ImpliedVol.Normal

Synopsis

Documentation

data Method Source #

Method to use to calculate the normal implied vol.

Constructors

Jackel

Jackel analytical formula approximation.

ChoKimKwak

J. Choi, K kim, and M. Kwak (2009) | Numerical root finding. Currently Ridders is used.

RootFinding 

Fields

Instances

Instances details
Default Method Source # 
Instance details

Defined in Q.Options.ImpliedVol.Normal

Methods

def :: Method #

euImpliedVol :: OptionType -> Forward -> Strike -> YearFrac -> Rate -> Premium -> Vol Source #

Default method implementation of euImpliedVolWith using Jackel.

euImpliedVolWith :: Method -> OptionType -> Forward -> Strike -> YearFrac -> Rate -> Premium -> Vol Source #

Calcualte the bachelier option implied vol of a european option.

If the options premium does not have time value hasTimeValue return 0.

h :: Floating p => p -> p Source #