Portfolio Composition maps

Source code Author Update time

using Plots
gaston()

see: https://stackoverflow.com/a/37732384

using Random
Random.seed!(111)
tickers = ["IBM", "Google", "Apple", "Intel"]
(N, D) = (10, length(tickers))
weights = rand(N, D)
weights ./= sum(weights, dims = 2)
returns = sort!((1:N) + D * randn(N))
portfoliocomposition(weights, returns, labels = permutedims(tickers))
Gnuplot Produced by GNUPLOT 5.4 patchlevel 2 0.0 2.5 5.0 7.5 10.0 12.5 0.00 0.25 0.50 0.75 1.00 IBM Google Apple Intel IBM IBM Google Google Apple Apple Intel Intel

This page was generated using DemoCards.jl and Literate.jl.