An open API service indexing awesome lists of open source software.

https://github.com/reckziegel/ffp

Fully Flexible Probabilities for Stress-Testing and Portfolio Construction
https://github.com/reckziegel/ffp

bayesian-inference entropy-pooling flexible-probabilities portolio-optimization risk-management scenarios views

Last synced: 5 months ago
JSON representation

Fully Flexible Probabilities for Stress-Testing and Portfolio Construction

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# Fully Flexible Probabilities

[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![R-CMD-check](https://github.com/Reckziegel/FFP/workflows/R-CMD-check/badge.svg)](https://github.com/Reckziegel/FFP/actions)
[![Codecov test coverage](https://codecov.io/gh/Reckziegel/FFP/branch/main/graph/badge.svg)](https://app.codecov.io/gh/Reckziegel/FFP?branch=main)
[![CRAN status](https://www.r-pkg.org/badges/version/ffp)](https://CRAN.R-project.org/package=ffp)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/last-month/ffp?color=blue)](https://r-pkg.org/pkg/ffp)
[![CRAN RStudio mirror downloads](https://cranlogs.r-pkg.org/badges/grand-total/ffp?color=blue)](https://r-pkg.org/pkg/ffp)

> Functions for Scenario Analysis and Risk Management

Oftentimes, the econometrician needs to stress-test the potential outcomes for a given set of risk-drivers. This process can be computationally costly when the entire set of scenarios needs to be repriced.

To overcome this difficulty, the Fully Flexible Probabilities (FFP) approach offers an inexpensive way for scenario generation: it reprices the _probabilities_ associated to each scenario, instead of the scenarios themselves. Once the new probabilities have been defined, the computations can be performed very quickly because the burden of scenario generation has been left aside.

## Installation

Install the official version from CRAN with:

```{r eval = FALSE}
install.packages("ffp")
```

Install the development version from github with:

```{r eval = FALSE}
# install.packages("devtools")
devtools::install_github("Reckziegel/ffp")
```

## Probability Estimation

The package `ffp` comes with five functions to extract probabilities from the historical scenarios:

- `exp_decay()`: accounts for the time-changing nature of volatility by giving more weight to recent observations;
- `crisp()`: selects scenarios where a logical statement is satisfied;
- `kernel_normal()`: generalizes the `crisp` condition by wrapping scenarios over
a normal kernel;
- `kernel_entropy()`: uses entropy-polling to satisfy a conditioning statement;
- `double_decay()`: uses entropy-polling and a double-decay factor to constrain the first two moments of a distribution.

```{r, echo=FALSE, message=FALSE, warning=FALSE, fig.align='center', out.width="70%", out.height="70%"}
library(dplyr)
library(ffp)

data("db_tbl")
inflation <- db_tbl %>%
dplyr::select(`10YR Inflation Swap Rate`) %>%
dplyr::slice(1:(nrow(db_tbl) - 1))

invariants <- db_tbl %>%
dplyr::select(VIX, SWAP10YR, `S&P 500`) %>%
purrr::map_df(~diff(log(.)))

#### Full Information ####
# exponential-smoothing
fp_es1 <- exp_decay(invariants, 0.0166)
fp_es2 <- exp_decay(invariants, 0.0055)
# crisp-conditioning on inflation
fp_cc <- crisp(inflation, lgl = as.logical(inflation >= 2.8))
# normal kernel on inflation
fp_kd <- kernel_normal(inflation, mean = 3, sigma = var(diff(inflation[[1]])))
#### Partial Information ####
# entropy-pooling by kernel-dumping on inflation
fp_ekd <- kernel_entropy(inflation, mean = 3, sigma = var(diff(inflation[[1]])))
# entropy-pooling by moment-matching
fp_emc <- double_decay(invariants, slow = 0.0055, fast = 0.0166)

bind_probs(fp_es1, fp_es2, fp_cc, fp_kd, fp_ekd, fp_emc) %>%
dplyr::mutate(names = c(rep("Exp. Smoothing (high decay)", 1082), rep("Exp. Smoothing (slow decay)", 1082),
rep("Market-Conditioning", 1082), rep("Normal Kernel", 1082),
rep("FFP Kernel", 1082), rep("FFP Double-Decay", 1082))) %>%
ggplot2::ggplot(ggplot2::aes(x = rowid, y = probs, color = names)) +
ggplot2::geom_line(show.legend = FALSE) +
ggplot2::facet_wrap(~names) +
# labeller = ggplot2::labeller(
# fn = c("Exp. Smoothing", "Exp. Smoothing",
# "Market-Conditioning", "Normal Kernel",
# "FFP Kernel", "FFP Double-Decay"))) +
ggplot2::scale_y_continuous(labels = scales::percent_format()) +
ggplot2::scale_x_continuous(labels = NULL, breaks = NULL) +
ggplot2::scale_color_brewer(palette = "Paired") +
ggdist::theme_ggdist() +
ggplot2::labs(title = NULL, subtitle = NULL, x = NULL, y = NULL)
```

## Stress-Testing and Portfolio Construction

The package also offers eight different constructors to make it easier to input views
on the market for portfolio optimization (mean-variance, risk-parity, etc.):

- `view_on_mean()`
- `view_on_covariance()`
- `view_on_correlation()`
- `view_on_volatility()`
- `view_on_rank()`
- `view_on_copula()`
- `view_on_marginal_distribution()`
- `view_on_joint_distribution()`

The output is a list that `entropy_pooling()` can handle easily. To combine multiple
views in a single object use `bind_views()`.

## Scenario Analysis

Once the new probabilities have been estimated, `bootstrap_scenarios()` can be used to sample data, while keeping the structure of the empirical copulas intact.

The main statistics of arbitrary scenarios can be computed with `empirical_stats()`.

## References

- Attilio Meucci (2021). Historical Scenarios with Fully Flexible Probabilities (https://www.mathworks.com/matlabcentral/fileexchange/31360-historical-scenarios-with-fully-flexible-probabilities), MATLAB Central File Exchange. Retrieved June 11, 2021.

- De Santis, G., R. Litterman, A. Vesval, and K. Winkelmann, 2003, Covariance
matrix estimation, Modern investment management: an equilibrium
approach, Wiley.

- Meucci, Attilio, Fully Flexible Views: Theory and Practice (August 8, 2008). Fully Flexible Views: Theory and Practice, Risk, Vol. 21, No. 10, pp. 97-102, October 2008, Available at SSRN: https://www.ssrn.com/abstract=1213325

- Meucci, Attilio, Historical Scenarios with Fully Flexible Probabilities (October 23, 2010). GARP Risk Professional, pp. 47-51, December 2010, Available at SSRN: https://www.ssrn.com/abstract=1696802 or http://dx.doi.org/10.2139/ssrn.1696802