Skip to content
18

Windowed Cokurtosis

PortfolioOptimisers.WindowedCokurtosis Type
julia
struct WindowedCokurtosis{__T_ke, __T_w, __T_window} <: CokurtosisEstimator

Cokurtosis estimator that restricts computation to a rolling or indexed observation window.

WindowedCokurtosis wraps a Cokurtosis estimator and applies it to a subset of observations defined by a window and/or custom observation weights. This enables time-varying or recency-weighted cokurtosis estimation.

Fields

  • ke: Cokurtosis estimator.

  • w: Optional observation weights vector observations × 1, or a concrete subtype of DynamicAbstractWeights. If nothing, the computation is unweighted.

  • window: Window specification: an integer (last window observations) or a vector of indices.

Constructors

julia
WindowedCokurtosis(;
    ke::CokurtosisEstimator = Cokurtosis(),
    w::Option{<:ObsWeights} = nothing,
    window::Option{<:Int_VecInt} = nothing
) -> WindowedCokurtosis

Keywords correspond to the struct's fields.

Validation

  • If w is not nothing, !isempty(w).

  • If window is provided, it must be nonempty, nonnegative, and finite.

Examples

julia
julia> WindowedCokurtosis()
WindowedCokurtosis
      ke ┼ Cokurtosis
         │    me ┼ SimpleExpectedReturns
         │       │   w ┴ nothing
         │    mp ┼ MatrixProcessing
         │       │     pdm ┼ Posdef
         │       │         │      alg ┼ UnionAll: NearestCorrelationMatrix.Newton
         │       │         │   kwargs ┴ @NamedTuple{}: NamedTuple()
         │       │      dn ┼ nothing
         │       │      dt ┼ nothing
         │       │     alg ┼ nothing
         │       │   order ┴ NTuple{4, Symbol}: (:pdm, :dn, :dt, :alg)
         │   alg ┼ FullMoment()
         │     w ┴ nothing
       w ┼ nothing
  window ┴ nothing

Related

source
PortfolioOptimisers.cokurtosis Method
julia
cokurtosis(ke::WindowedCokurtosis, X::MatNum; dims::Int = 1, iv::Option{<:MatNum} = nothing, kwargs...)

Compute the cokurtosis tensor using a rolling or indexed observation window.

This method selects a window of observations from X (and applies observation weights if specified), then delegates to the underlying cokurtosis estimator.

Arguments

  • ke: Windowed cokurtosis estimator.

  • X: Data matrix of asset returns (observations × assets).

  • dims: Dimension along which to perform the computation.

  • iv: Optional implied volatility matrix. Used if any internal covariance estimator is an instance of ImpliedVolatility.

  • kwargs...: Additional keyword arguments passed to the underlying estimator.

Returns

  • ckurt::Matrix{<:Number}: Cokurtosis tensor (assets² × assets²).

Related

source