Anybody can please tell me how I can use Quadratic Risk Programming in netlogo? I wish to use following portfolio choice rule -
Max:U = E - φσ
Where, U = utility, E = expected returns from assets, φ = risk aversion parameter, σ = variances
In R i got following codes to execute such model -
Create the portfolio specification
port_spec <- portfolio.spec(assets = colnames(index_returns))
Add a full investment constraint such that the weights sum to 1
port_spec <- add.constraint(portfolio = port_spec, type = "full_investment")
Add a long only constraint such that the weight of an asset is between 0 and 1
port_spec <- add.constraint(portfolio = port_spec, type = "long_only")
Add an objective to maximize portfolio mean return
port_spec <- add.objective(portfolio = port_spec, type = "return", name = "mean")
Add an objective to minimize portfolio variance
port_spec <- add.objective(portfolio = port_spec, type = "risk", name = "var", risk_aversion = 10)
Solve the optimization problem
opt <- optimize.portfolio(R = index_returns, portfolio = port_spec, optimize_method = "ROI")
But, is there any similar codes in netlogo? I tried all the possible sources but failed to get a similar code or model in netlogo. The major parts of my model is executed in netlogo. So, I need a netogo-based similar model.