riskparity 0.1.0

Optimization of risk parity portfolios
Documentation
  • Coverage
  • 25%
    1 out of 4 items documented0 out of 1 items with examples
  • Size
  • Source code size: 7.5 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.16 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 27s Average build duration of successful builds.
  • all releases: 27s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • convexfi/riskparity.rs
    4 3 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • mirca

riskparity.rs

Implementations of risk parity portfolios in Rust

Example

use riskparity::vanilla::compute_riskparity_ccd_choi;

fn main() {
    let cov = ndarray::arr2(&[
        [1.0, 0.0015, -0.0119],
        [0.0015, 1.0, -0.0308],
        [-0.0119, -0.0308, 1.0],
    ]);
    let budget = ndarray::arr1(&[0.1594, 0.0126, 0.8280]);
    let maxiter = 100;
    let tol = 1e-6;
    println!(
        "{}",
        compute_riskparity_ccd_choi(&cov, &budget, maxiter, tol)
    );
    // [0.279862, 0.087749, 0.632388]
}

References