飞道的博客

机器学习刻画股票市场结构和可视化——以上证50成分股为例

270人阅读  评论(0)

引言

股票市场的波动往往存在一定的共振,尤其是同一个行业或主题概念的公司股票,当面临行业基本面的冲击时,其波动存在一定的相似性,即表现出同涨同跌。如果能通过交易行情数据对股票市场的波动结构进行刻画,对于我们深入理解板块轮动和网络关联性具有重要的启示作用。那么如何借助可视化的手段对股票市场结构进行分析呢?机器学习中的无监督学习算法或许可以帮助我们解决这一问题。本文以上证50指数成分股为例,使用稀疏逆协方差(GraphicalLassoCV)计算股票之间的条件相关性,然后使用聚类分析将行为相似的股票分组在一起并进行可视化。

数据获取

使用tushare pro获取上证50指数成分股收盘价和开盘价数据,以收盘价减去开盘价作为日波动的替代变量。以下代码使用Jupyter notebook运行。


   
  1. import pandas  as pd
  2. import numpy  as np
  3. import matplotlib.pyplot  as plt
  4. from matplotlib.collections import LineCollection
  5. from sklearn import cluster, covariance, manifold
  6. %matplotlib inline  #Jupyter Notebook显示图形专用
  7. plt.rcParams[ 'font.sans-serif']=[ 'SimHei']
  8. plt.rcParams[ 'axes.unicode_minus']= False

   
  1. import tushare  as ts
  2. token= '到tushare pro官网获取你的token'
  3. pro=ts.pro_api(token)
  4. #获取上证50成分股票代码和名称
  5. def get_50_code():
  6.      #获取上证50成分股代码
  7.     dd=pro.index_weight(index_code= '000016.SH')
  8.     dd=dd[dd.trade_date== '20201130']
  9.     codes50=dd.con_code.values
  10.      #获取全市场股票基本信息
  11.     df = pro.stock_basic(exchange= '', list_status= 'L')
  12.     df=df[df.ts_code.isin(codes50)]
  13.     codes=df.ts_code.values
  14.     names=df.name.values
  15.     stocks=dict(zip(codes,names))
  16.      return stocks
  17. def get_data(code,start= '20191210',end= '20201210'):
  18.     df=ts.pro_bar(ts_code=code,adj= 'qfq'
  19.                   start_date=start, end_date=end)
  20.     df.index=pd.to_datetime(df.trade_date)
  21.     df=df.sort_index()
  22.      return df
  23. codes, names = np. array(sorted(get_50_code().items())).T
  24. data=pd.DataFrame({name:(get_data(code).close-get_data(code).open) 
  25.                     for code,name in zip(codes,names)})
  26. variation=data.dropna().values
  27. data.head()

上证50成分股股价日变动情况:

聚类分析

由于相互关联的股票会在交易中产生共波动,所以我们可以使用无监督学习算法从历史报价中提取股票市场结构的变化,如使用(收盘价-开盘价)来刻画股价每日价格变动,然后使用稀疏逆协方差估计找出哪些股票存在条件相关性。换句话说,稀疏逆协方差可以得到一个方差关联性列表,对于每只股票来说,与之相关的股票有助于解释其波动。然后再使用聚类分析将行为相似的股票分组在一起。scikit-learn提供了十种不同的聚类算法,本文用“Affinity_propagation”(AP算法),主要基于该算法可以从数据中自动选择聚类的数量。AP算法的基本思想是将全部样本看作网络的节点,然后通过网络中各条边的消息传递计算出各样本的聚类中心,关于该算法的详细原理可参考scikit-learn官网或相关书籍。


   
  1. # 相关系数
  2. edge_model = covariance.GraphicalLassoCV()
  3. X = variation. copy()
  4. X /= X.std(axis= 0)
  5. edge_model.fit(X)
  6. _, labels = cluster.affinity_propagation(edge_model.covariance_)
  7. n_labels = labels.max()
  8. for i in  range(n_labels +  1):
  9.      print( 'Cluster %i: %s' % ((i +  1),  ', '.join(names[labels == i])))

   
  1. #输出结果:
  2. Cluster 1: 万华化学
  3. Cluster 2: 恒瑞医药, 贵州茅台, 伊利股份
  4. Cluster 3: 山东黄金
  5. Cluster 4: 三安光电, 闻泰科技, 汇顶科技
  6. Cluster 5: 浦发银行, 民生银行, 中国石化, 招商银行, 兴业银行, 农业银行, 中国平安, 交通银行, 工商银行, 邮储银行, 光大银行, 中国石油, 中国银行
  7. Cluster 6: 三一重工, 保利地产, 海螺水泥, 中国神华, 中国铁建, 中国建筑
  8. Cluster 7: 上海机场, 中信证券, 中国联通, 上汽集团, 海尔智家, 海通证券, 中信建投, 工业富联, 国泰君安, 红塔证券, 中国人保, 新华保险, 中国太保, 中国人寿, 华泰证券, 中国中免, 中国重工, 洛阳钼业
  9. Cluster 8: 京沪高铁
  10. Cluster 9: 复星医药, 用友网络, 隆基股份, 药明康德

   
  1. 数据可视化
  2. 为了将上述聚类分析进行可视化,需要在一个 2D画布上布置不同的股票。为此,需要使用“流形”技术来检索二维嵌入。模型的输出组合成一个二维图,其中节点代表股票名称,边表示:
  3. 集群标签用于定义节点的颜色使用稀疏协方差模型来显示边缘的强度二维嵌入用于在平面中定位节点
  4. node_position_model = manifold.LocallyLinearEmbedding(
  5.     n_components= 2, eigen_solver= 'dense', n_neighbors= 6)
  6. embedding = node_position_model.fit_transform(X.T).T

   
  1. # 可视化
  2. plt.figure( 1, facecolor= 'w', figsize=( 108))
  3. plt.clf()
  4. ax = plt.axes([ 0.0.1.1.])
  5. plt.axis( 'off')
  6. # 计算偏相关系数
  7. partial_correlations = edge_model.precision_.copy()
  8. d =  1 / np.sqrt(np.diag(partial_correlations))
  9. partial_correlations *= d
  10. partial_correlations *= d[:, np.newaxis]
  11. non_zero = (np.abs(np.triu(partial_correlations, k= 1)) >  0.02)
  12. # 使用嵌入的坐标绘制节点
  13. plt.scatter(embedding[ 0], embedding[ 1], s= 100 * d **  2, c=labels,
  14.             cmap=plt.cm.nipy_spectral)
  15. # 画相互关联的边
  16. start_idx, end_idx = np.where(non_zero)
  17. segments = [[embedding[:, start], embedding[:, stop]]
  18.              for start, stop in zip(start_idx, end_idx)]
  19. values = np.abs(partial_correlations[non_zero])
  20. lc = LineCollection(segments,
  21.                     zorder= 0, cmap=plt.cm.hot_r,
  22.                     norm=plt.Normalize( 0.7 * values.max()))
  23. lc.set_array(values)
  24. lc.set_linewidths( 15 * values)
  25. ax.add_collection(lc)
  26. #向每个节点添加一个标签,难点在于定位标签,以避免与其他标签重叠
  27. for index, (name, label, (x, y)) in enumerate(
  28.         zip(names, labels, embedding.T)):
  29.     dx = x - embedding[ 0]
  30.     dx[index] =  1
  31.     dy = y - embedding[ 1]
  32.     dy[index] =  1
  33.     this_dx = dx[np.argmin(np.abs(dy))]
  34.     this_dy = dy[np.argmin(np.abs(dx))]
  35.      if this_dx >  0:
  36.         horizontalalignment =  'left'
  37.         x = x +  .002
  38.      else:
  39.         horizontalalignment =  'right'
  40.         x = x -  .002
  41.      if this_dy >  0:
  42.         verticalalignment =  'bottom'
  43.         y = y +  .002
  44.      else:
  45.         verticalalignment =  'top'
  46.         y = y -  .002
  47.     plt.text(x, y, name, size= 10,
  48.              horizontalalignment=horizontalalignment,
  49.              verticalalignment=verticalalignment,
  50.              bbox=dict(facecolor= 'w',
  51.                        edgecolor=plt.cm.nipy_spectral(label /  float(n_labels)),
  52.                        alpha= .6))
  53. plt.xlim(embedding[ 0].min() -  .15 * embedding[ 0].ptp(),
  54.          embedding[ 0].max() +  .10 * embedding[ 0].ptp(),)
  55. plt.ylim(embedding[ 1].min() -  .03 * embedding[ 1].ptp(),
  56.          embedding[ 1].max() +  .03 * embedding[ 1].ptp())
  57. plt.show()

图表反映了变量之间的条件关系,而聚类反映了边际属性:聚在一起的变量可以被认为在整个股票市场水平上具有类似的影响。从下图中可以看出,无监督学习通过对交易报价信息的提取,可以大致勾勒出上证50指数成分股的一个市场结构,具有相同行业属性或概念属性的个股其波动表现出相似性,如医药、银行、券商、保险、大基建等。

结语

机器学习是量化分析的一个重要工具,掌握机器学习算法的基本原理和应用场景可以为我们分析和研究金融市场提供一个参考框架。无监督机器学习中的聚类分析能够从纷繁复杂的数据中提取有用信息,刻画多维特征的“相似性”和“关联性”,再借助网络分析的视角,可以进一步考察数据变量间的微观结构和运动状态。本文参考scikit-learn官方网站示例,对上证50指数成分股的“共波动”结构进行了可视化分析,为大家深入学习机器学习抛砖引玉。关于网络分析方面,Python有个很好用的第三方库——networkx,可以画出各种精美的网络分析图,感兴趣的读者可以进一步了解。

参考资料:

scikit-learn官方网站案例:

https://scikit-learn.org

/stable/auto_examples/applications/plot_stock_market.html?highlight=plot%20stock%20market

关于Python金融量化

专注于分享Python在金融量化领域的应用。加入知识星球,可以免费获取量化投资视频资料、量化金融相关PDF资料、公众号文章Python完整源码、量化投资前沿分析框架,与博主直接交流、结识圈内朋友等。


转载:https://blog.csdn.net/ndhtou222/article/details/111055813
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场