Learn R Programming

INFOSET (version 4.1)

LR_cp: Function to compute Left risk measure.

Description

Function to compute Left risk measure.

Usage

LR_cp(data, FT, ov)

Value

A (N x T) data.frame containing the LR_cp measure for the N time series over time windows

Arguments

data

A (T x N) matrix or data.frame containing the N time series over period T

FT

Window size.

ov

umber of different days for two consecutive time windows.

Examples

Run this code

# \donttest{
LR <- LR_cp(sample.data, FT= 1290, ov = 125)
df <- as.data.frame(matrix(unlist(LR), nrow = length(LR), ncol = ncol(sample.data)))
colnames(df) <- c(paste("tw", rep(1:16)))
plot(df[,1], pch=19, col=asset.label$label, ylab="LR_cp", xlab="ETFs")
# }

Run the code above in your browser using DataLab