Update portfolio.py
This commit is contained in:
parent
4e5a954174
commit
eadc4042a6
20
portfolio.py
20
portfolio.py
@ -8,11 +8,12 @@ warnings.filterwarnings("ignore")
|
|||||||
|
|
||||||
|
|
||||||
class Portfolio:
|
class Portfolio:
|
||||||
def __init__(self, data_symbol, sample_num = 10000):
|
def __init__(self, data_symbol, line=True,sample_num = 10000):
|
||||||
self.data_symbol = data_symbol
|
self.data_symbol = data_symbol
|
||||||
self.data = self.create_stock_data(self.data_symbol)
|
self.data = self.create_stock_data(self.data_symbol)
|
||||||
self.length = len(self.data.columns)
|
self.length = len(self.data.columns)
|
||||||
self.sample_num = sample_num
|
self.sample_num = sample_num
|
||||||
|
self.calculate(line=line)
|
||||||
|
|
||||||
# 用雅虎财经API创建Data
|
# 用雅虎财经API创建Data
|
||||||
def create_stock_data(self, data_symbol):
|
def create_stock_data(self, data_symbol):
|
||||||
@ -26,7 +27,7 @@ class Portfolio:
|
|||||||
data.columns = data_symbol
|
data.columns = data_symbol
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def calculate(self, line=True):
|
def calculate(self, line):
|
||||||
# 初始化参数
|
# 初始化参数
|
||||||
self.all_weights = np.zeros((self.sample_num, len(self.data.columns)))
|
self.all_weights = np.zeros((self.sample_num, len(self.data.columns)))
|
||||||
self.ret_arr = np.zeros(self.sample_num)
|
self.ret_arr = np.zeros(self.sample_num)
|
||||||
@ -50,7 +51,7 @@ class Portfolio:
|
|||||||
self.sharpe_arr[x] = self.ret_arr[x]/ self.vol_arr[x]
|
self.sharpe_arr[x] = self.ret_arr[x]/ self.vol_arr[x]
|
||||||
|
|
||||||
self.frontier_x = []
|
self.frontier_x = []
|
||||||
self.frontier_y = np.linspace(0, 0.3, 200)
|
self.frontier_y = np.linspace(0.15, 0.5, 200)
|
||||||
|
|
||||||
for possible_return in self.frontier_y:
|
for possible_return in self.frontier_y:
|
||||||
cons = ({'type':'eq','fun': self.check_sum}, {'type':'eq','fun':lambda w : self.get_ret_vol_sr(w)[0]-possible_return})
|
cons = ({'type':'eq','fun': self.check_sum}, {'type':'eq','fun':lambda w : self.get_ret_vol_sr(w)[0]-possible_return})
|
||||||
@ -60,9 +61,8 @@ class Portfolio:
|
|||||||
self.frontier_x.append(self.result['fun'])
|
self.frontier_x.append(self.result['fun'])
|
||||||
|
|
||||||
def draw(self, line=True):
|
def draw(self, line=True):
|
||||||
self.calculate(line)
|
|
||||||
plt.figure(figsize=(20,8))
|
plt.figure(figsize=(20,8))
|
||||||
plt.scatter(self.vol_arr, self.ret_arr, c=self.sharpe_arr, cmap='viridis', s=25)
|
plt.scatter(self.vol_arr, self.ret_arr, c=self.sharpe_arr, cmap='viridis', s=10)
|
||||||
plt.colorbar(label='Sharpe Ratio')
|
plt.colorbar(label='Sharpe Ratio')
|
||||||
plt.xlabel('Volatility')
|
plt.xlabel('Volatility')
|
||||||
plt.ylabel('Return')
|
plt.ylabel('Return')
|
||||||
@ -74,7 +74,7 @@ class Portfolio:
|
|||||||
def report(self):
|
def report(self):
|
||||||
self.optim_number = self.sharpe_arr.argmax()
|
self.optim_number = self.sharpe_arr.argmax()
|
||||||
self.optim_weights = self.all_weights[self.optim_number]
|
self.optim_weights = self.all_weights[self.optim_number]
|
||||||
print("模拟最佳投资组合: ")
|
print("基于所选风险资产的模拟最佳组合: ")
|
||||||
for i in range(self.length):
|
for i in range(self.length):
|
||||||
print("股票代码:{}, 比例:{:.2f}%".format(self.data.columns[i], self.optim_weights[i]*100))
|
print("股票代码:{}, 比例:{:.2f}%".format(self.data.columns[i], self.optim_weights[i]*100))
|
||||||
self.best_results_arr = self.get_ret_vol_sr( self.optim_weights)
|
self.best_results_arr = self.get_ret_vol_sr( self.optim_weights)
|
||||||
@ -102,11 +102,11 @@ class Portfolio:
|
|||||||
####根据需要调整下面的参数####
|
####根据需要调整下面的参数####
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
# 数据起始日期
|
# 数据起始日期
|
||||||
start_date = "2015-01-01"
|
start_date = "2016-01-01"
|
||||||
end_date = "2021-01-01"
|
end_date = "2021-01-01"
|
||||||
# 选择需要哪些资产的数据
|
# 选择需要哪些资产的数据
|
||||||
data_array = ["600519.SS", "0700.HK", "AAPL", "MSFT","^GSPC","GOLD", "TSLA"]
|
data_array = ["600519.SS", "0700.HK","BABA", "AAPL", "MSFT","^GSPC","GOLD", "TSLA"]
|
||||||
|
|
||||||
portfolio = Portfolio(data_array, sample_num=10000)
|
portfolio = Portfolio(data_array, sample_num=100000)
|
||||||
portfolio.draw()
|
|
||||||
portfolio.report()
|
portfolio.report()
|
||||||
|
portfolio.draw()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user