Skip to content

High-performance market risk measures for your portfolio.

License

Notifications You must be signed in to change notification settings

mpkuperman/MarketRisk.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MarketRisk.jl is a Julia library wich provides high-performance market risk measures for your portfolio. It currently supports:

Examples

VaR:

using MarketRisk

μ = 0.1
Σ = 0.2
h = 10 / 250
α = 0.1

N = Normal()

var = ValueAtRisk(μ, Σ, h, α, N)

compute(var)

ETL:

using MarketRisk

μ = 0.0
Σ = 0.3

ν = 4.13

h = 10 / 250
α = 0.01

T = TDist(ν)

t_etl = ExpectedTailLoss(μ, Σ, h, α, T)

compute(t_etl)

Installation

Authors

License

MarketRisk.jl is licensed by GNU General Public License v3.0. For more details please see the LICENSE file.

About

High-performance market risk measures for your portfolio.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages