Options
All
  • Public
  • Public/Protected
  • All
Menu

Hull-White stochastic process

Hierarchy

Implements

Index

Constructors

constructor

Properties

Protected _a

_a: Real

_discretization

_discretization: discretization

Protected _h

_isDisposed

_isDisposed: boolean = false

_observables

_observables: Set<Observable> = new Set()

_observers

_observers: Set<Observer> = new Set()

Protected _process

Protected _sigma

_sigma: Real

dispose

dispose: () => void

Type declaration

    • (): void
    • Returns void

isDisposed

isDisposed: boolean

notifyObservers

notifyObservers: () => void

Type declaration

    • (): void
    • Returns void

registerObserver

registerObserver: (o: Observer) => void

Type declaration

registerWith

registerWith: (h: Observable) => void

Type declaration

registerWithObservables

registerWithObservables: (o: Observer) => void

Type declaration

unregisterObserver

unregisterObserver: (o: Observer) => void

Type declaration

unregisterWith

unregisterWith: (h: Observable) => Size

Type declaration

unregisterWithAll

unregisterWithAll: () => void

Type declaration

    • (): void
    • Returns void

Methods

a

  • Returns Real

alpha

  • Parameters

    Returns Real

apply1

apply2

  • applies a change to the asset value. By default, it returns $ x + \Delta x $.

    Parameters

    Returns Real

covariance

deepUpdate

  • deepUpdate(): void

diffusion1

diffusion2

drift1

drift2

evolve1

evolve2

  • returns the asset value after a time interval $ \Delta t $ according to the given discretization. By default, it returns $$ E(x_0,t_0,\Delta t) + S(x_0,t_0,\Delta t) \cdot \Delta w $$ where $ E $ is the expectation and $ S $ the standard deviation.

    Parameters

    Returns Real

expectation1

expectation2

factors

  • returns the number of independent factors of the process

    Returns Size

init

initialValues

  • initialValues(): Real[]

sigma

  • Returns Real

size

stdDeviation1

stdDeviation2

time

  • time(d: Date): Time
  • returns the time value corresponding to the given date in the reference system of the stochastic process.

    note As a number of processes might not need this functionality, a default implementation is given which raises an exception.

    Parameters

    • d: Date

    Returns Time

update

  • update(): void

variance

x0