首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何求解投资组合优化的方程组和约束?

如何求解投资组合优化的方程组和约束?
EN

Stack Overflow用户
提问于 2020-01-17 15:25:39
回答 1查看 423关注 0票数 1

我有一个DataFrame如下所示:

代码语言:javascript
复制
Name  Volatility    Return
a      0.0243        0.212
b      0.0321        0.431
c      0.0323        0.443
d      0.0391        0.2123
e      0.0433        0.3123

我想要一个Volatility of 0.035和最大化的Return来应对这种波动。

也就是说,我希望在一个新的Df中,Name和这个资产在我的portfolio中的百分比,给出Volatility的最大Return等于0.035

因此,我需要求解多个条件的方程组,以获得固定结果(Volatility == 0.035)的最佳解(最高的Volatility == 0.035)。

这些条件是:

  • 每个资产的权重在0到1之间。
  • 权重之和为1。
  • 每项资产的权数乘以波动率之和为“期望波动率”。
  • 每项资产收益的权重之和为“总收益”。这应该得到最大限度的利用。
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2020-01-17 15:49:13

下面是一种使用Z3Py的方法,这是一个开源的SAT/SMT解决程序。在SAT/SMT求解器中,您可以将代码编写为条件列表,程序会找到最优解决方案(或者,当使用Z3作为求解程序时,仅能满足所有条件的解决方案)。

最初,SAT求解器只使用纯布尔表达式,但现代SAT/SMT求解器也允许固定位和无限整数、分数、reals甚至函数作为中心变量。

要将给定的方程写入Z3,就可以将它们逐字逐句地转换为Z3表达式。下面的代码对每个步骤进行注释。

代码语言:javascript
复制
import pandas as pd
from z3 import *

DesiredVolatility = 0.035
df = pd.DataFrame(columns=['Name', 'Volatility', 'Return'],
                  data=[['a', 0.0243, 0.212],
                        ['b', 0.0321, 0.431],
                        ['c', 0.0323, 0.443],
                        ['d', 0.0391, 0.2123],
                        ['e', 0.0433, 0.3123]])

# create a Z3 instance to optimize something
s = Optimize()
# the weight of each asset, as a Z3 variable
W = [Real(row.Name) for row in df.itertuples()]
# the total volatility
TotVol = Real('TotVol')
# the total return, to be maximized
TotReturn = Real('TotReturn')

# weights between 0 and 1, and sum to 1
s.add(And([And(w >= 0, w <= 1) for w in W]))
s.add(Sum([w for w in W]) == 1)
# the total return is calculated as the weighted sum of the asset returns
s.add(TotReturn == Sum([w * row.Return for w, row in zip(W, df.itertuples())]))
# the volatility is calculated as the weighted sum of the asset volatility
s.add(TotVol == Sum([w * row.Volatility for w, row in zip(W, df.itertuples())]))
# the volatility should be equal to the desired volatility
s.add(TotVol == DesiredVolatility)
# we're maximizing the total return
h1 = s.maximize(TotReturn)
# we ask Z3 to do its magick
res = s.check()
# we check the result, hoping for 'sat': all conditions satisfied, a maximum is found
if res == sat:
    s.upper(h1)
    m = s.model()
    #for w in W:
    #    print(f'asset {w}): {m[w]} = {m[w].numerator_as_long() / m[w] .denominator_as_long() : .6f}')
    # output the total return
    print(f'Total Return: {m[TotReturn]} = {m[TotReturn].numerator_as_long() / m[TotReturn] .denominator_as_long() :.6f}')
    # get the proportions out of the Z3 model
    proportions = [m[w].numerator_as_long() / m[w] .denominator_as_long() for w in W]
    # create a dataframe with the result
    df_result = pd.DataFrame({'Name': df.Name, 'Proportion': proportions})
    print(df_result)
else:
    print("No satisfiable solution found")

结果:

代码语言:javascript
复制
Total Return: 452011/1100000 = 0.410919
  Name  Proportion
0    a    0.000000
1    b    0.000000
2    c    0.754545
3    d    0.000000
4    e    0.245455

您可以很容易地添加额外的约束,例如“任何资产都不能拥有总额的30%以上”:

代码语言:javascript
复制
# change 
s.add(And([And(w >= 0, w <= 1) for w in W]))`
# to
s.add(And([And(w >= 0, w <= 0.3) for w in W]))`

这将导致:

代码语言:javascript
复制
Total Return: 558101/1480000 = 0.377095
  Name  Proportion
0    a    0.082432
1    b    0.300000
2    c    0.300000
3    d    0.017568
4    e    0.300000
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/59790285

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档