Safe Haskell | None |
---|---|
Language | Haskell2010 |
QuantLib.Models.Volatility
- type Volatility = Double
- data Estimation = Estimation !Volatility
- class VolatilityEstimator algorithm where
- data VolatilityEstimatorAlgorithm
Documentation
type Volatility = Double #
Volatility type
data Estimation #
Estimation type with strictness as it is usually required only one Double
to process
Constructors
Estimation !Volatility |
Instances
class VolatilityEstimator algorithm where #
Type class of volatility estimators
Minimal complete definition
Methods
estimate :: algorithm -> IntervalPriceSeries -> Estimation #
The estimation procedure that takes a series of IntervalPrice
Instances
data VolatilityEstimatorAlgorithm #
Constructors
SimpleEstimator | Simple estimator with drift |
SimpleDriftLessEstimator | Simple estimator without drift |
ParkinsonEstimator | Parkinson number |
GarmanKlass5Estimator | Garman-Klass estimator |
RogersSatchelEstimator | Rogers-Stachel estimator |
YangZhangEstimator | Yang-Zhang estimator |