Дан*_*шко 5 python minimization scipy
我正在尝试解决一个优化问题,我需要创建一个投资组合,该投资组合具有来自基准投资组合的最小跟踪误差,并且受到一些限制:
import scipy.optimize as opt
import numpy as np
def random_portfolio(n):
a = np.random.random(n)
a /= a.sum()
return a
portfolio_weights = [1 for i in range(20)]
portfolio_weights = [i/len(portfolio_weights) for i in portfolio_weights]
def tracking_error_function(W, port_weights):
weight_diff = list(np.array(port_weights)-np.array(W))
weight_diff = sum([i**2 for i in weight_diff])
return weight_diff
def total_max_weight_constraint(weights):
max_weights_share = sum([i for i in weights if i > 0.045])
max_ineq = 0.36 - max_weights_share
return max_ineq
def gen_initial_weights(n):
max_weights = [0.089 for i in range(4)]
rest_of_n = n - 4
rest_of_weight = 1 - sum(max_weights)
other_weights = [rest_of_weight/rest_of_n for i in range(rest_of_n)]
all_weights = max_weights + other_weights
return all_weights
initial_weights = np.asarray(gen_initial_weights(len(portfolio_weights)))
tr_err = tracking_error_function(initial_weights, portfolio_weights)
b_ = [(0.0, 0.09) for i in range(len(initial_weights))]
c_ = ({'type': 'eq', 'fun': lambda W: sum(W) - 1},
{'type': 'ineq', 'fun': total_max_weight_constraint})
optimized = opt.minimize(tracking_error_function, initial_weights, args=(portfolio_weights), method='SLSQP', constraints=c_, bounds=b_, options={'maxiter': 100000 })
Run Code Online (Sandbox Code Playgroud)
所以我最初的猜测符合约束条件,并且基准是同等权重的。当我运行它时,结果是完全相同权重的投资组合,尽管它显然违反了第二个约束。而且,状态是成功。任何想法我做错了什么?
更新: 这是一个似乎适用于我的情况的解决方案
import scipy.optimize as opt
import numpy as np
import random
import matplotlib.pyplot as plt
def random_portfolio(n):
#random.seed(123)
a = np.random.random(n)
a /= a.sum()
return a
def continous_step_function(x, cutoff):
return x / (1 + safe_exp(-(x - cutoff) * 200000))
def safe_exp(x):
try:
ans = np.math.exp(x)
except OverflowError:
ans = float('inf')
return ans
def gen_initial_weights(n):
max_weights = [0.0899999 for i in range(4)]
rest_of_n = n - 4
rest_of_weight = 1 - sum(max_weights)
other_weights = [rest_of_weight/rest_of_n for i in range(rest_of_n)]
all_weights = max_weights + other_weights
return all_weights
def tracking_error_function(W, port_weights):
weight_diff = port_weights - W
weight_diff = np.sum(weight_diff ** 2)
excessive_weight = max(0,(sum([continous_step_function(i,0.045) for i in W]) - 0.36))
return weight_diff + excessive_weight
def total_max_weight_constraint(weights):
max_weights_share = sum([continous_step_function(i,0.045) for i in weights])
max_ineq = 0.36 - max_weights_share
return max_ineq
def run():
portfolio_weights = sorted(random_portfolio(20))
initial_weights = np.asarray(gen_initial_weights(len(portfolio_weights)))
initial_weights = sorted(initial_weights)
b_ = [(0.0, 0.09) for i in range(len(initial_weights))]
c_ = ({'type': 'eq', 'fun': lambda W: sum(W) - 1},
{'type': 'ineq', 'fun': total_max_weight_constraint}
)
optimized = opt.minimize(tracking_error_function, initial_weights, args=(portfolio_weights), constraints=c_,
bounds=b_, options={'eps': 0.00000001, 'ftol' : 0.00000001, 'iprint': 0, 'disp': 0, 'maxiter': 10000})
result = optimized.x
if tracking_error_function(result, portfolio_weights) > 0.05:
print('Excessive tracking error: ')
print('Residual error: {}'.format(tracking_error_function(result, portfolio_weights)))
print('Target: {} {}'.format(sum(portfolio_weights), portfolio_weights))
print('Result: {} {}'.format(sum(result), result))
if sum([i for i in result if i > 0.045]) > 0.36:
print('Excessive weight > .045: ')
print('Percentage > .045: {}'.format(sum([x for x in result if x > 0.045])))
print('Target: {} {}'.format(sum(portfolio_weights), portfolio_weights))
print('Result: {} {}'.format(sum(result), result))
if not all(b >= (a - 0.001) for a, b in zip(result, result[1:])):
print('Result not continously rising: ')
print('Target: {} {}'.format(sum(portfolio_weights), portfolio_weights))
print('Result: {} {}'.format(sum(result), result))
def plot_output(result, target):
plt.bar(range(len(result)), result, color='b', width = 0.3)
plt.plot(range(len(target)), target, color='r')
plt.show()
Run Code Online (Sandbox Code Playgroud)
在这种特殊情况下,最小化似乎只是忽略了不等式约束。我不知道为什么会发生这种情况 - 当测试一个更简单的示例时,等式和不等式约束可以正确地协同工作。
等式约束通常会导致数值优化出现问题,因为浮点数可能无法完全匹配它们。摆脱平等约束似乎可以作为解决当前问题的方法。
该约束{'type': 'eq', 'fun': lambda W: sum(W) - 1}强制所有权N重之和精确为 1。还有另一种方法可以强制执行此操作:我们可以仅优化N-1权重并将其总和限制为 < 1。然后,剩余权重由 隐式给出1 - sum(other_weights)。这需要对代码进行一些更改:
def expand_weights(weights):
"""This function takes N-1 weights and adds the implicit Nth weight
so that together their sum is 1."""
return np.append(weights, 1 - np.sum(weights))
def tracking_error_function(W, port_weights):
weight_diff = port_weights - expand_weights(W)
weight_diff = np.sum(weight_diff ** 2)
return weight_diff
def total_max_weight_constraint(weights):
weights = expand_weights(weights)
max_weights_share = sum([i for i in weights if i > 0.045])
max_ineq = 0.36 - max_weights_share
return max_ineq
Run Code Online (Sandbox Code Playgroud)
我们只需采用原始初始权重并删除最后一个:
initial_weights = np.asarray(gen_initial_weights(len(portfolio_weights)))
initial_weights = initial_weights[:-1]
Run Code Online (Sandbox Code Playgroud)
最终,约束条件变为:
c_ = ({'type': 'ineq', 'fun': lambda W: 1 - sum(W)},
{'type': 'ineq', 'fun': total_max_weight_constraint})
Run Code Online (Sandbox Code Playgroud)
运行优化并查看是否满足约束:
optimized = opt.minimize(tracking_error_function, initial_weights,
args=(portfolio_weights), method='SLSQP',
constraints=c_, bounds=b_,
options={'maxiter': 100000, 'disp': 5})
assert np.allclose(1, np.sum(expand_weights(optimized.x))) # check equality constraint
assert total_max_weight_constraint(optimized.x) > 0 # check second constraint
Run Code Online (Sandbox Code Playgroud)