前言

因为一些琐事,今天没有太多时间学习新的知识内容,故对已有资源进行了整理

LSTM 模型在量化交易中的应用汇总

Stock Clusters

Identifying stock clusters helps discover similar companies which can be useful for comparable analysis or pairs trading strategy. We can find similar clusters by estimating the inverse covariance (precision) matrix which can be used to construct a graph network of dependencies. The difference between opening and closing daily price was used to compute empirical covariance used to fit graph lasso algorithm to estimate sparse precision matrix. Affinity propagation was used to compute the stock clusters and a linear embedding was used to display high dimensional data in 2D.

链接 https://github.com/vsmolyakov/experiments_with_python

效果图如下

lstm模型实现量化分析资源汇总

Plain Stock Close price Prediction via LSTM

 

This is a practice of using LSTM to do the one day ahead prediction of the stock close price. The dataset I used here is the New York Stock Exchange from Kaggle, which consists of following files:

  • prices.csv: raw, as-is daily prices. Most of data spans from 2010 to the end 2016, for companies new on stock market date range is shorter. There have been approx. 140 stock splits in that time, this set doesn’t account for that.
  • prices-split-adjusted.csv: same as prices, but there have been added adjustments for splits.
  • securities.csv: general description of each company with division on sectors
  • fundamentals.csv: metrics extracted from annual SEC 10K fillings (2012-2016), should be enough to derive most of popular fundamental indicators.

链接 https://link.zhihu.com/?target=https%3A//isaacchanghau.github.io/2017/07/26/Plain-Stock-Close-Price-Prediction-via-LSTM-Initial-Exploration/

效果图如下

lstm模型实现量化分析资源汇总

相关图书资料:《量化投资技术分析实战》

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2022-01-02
  • 2022-01-22
  • 2022-01-10
  • 2021-06-08
  • 2021-10-14
猜你喜欢
  • 2022-02-08
  • 2021-10-11
  • 2022-12-23
  • 2021-08-17
  • 2021-07-31
  • 2021-04-17
  • 2021-07-28
相关资源
相似解决方案