算法根据单个板块或单只股票的历史数据判断板块指数或个股次日收盘价信息,得到相应的调仓对策。可回归(预测具体价格)可分类(预测涨跌)。 长短期记忆模型(LSTM)是循环神经网络(RNN)的一种,每个输入样本都是一个序列(如某板块20天的四价一量)用这个序列预测结果。它认为某些指标长期的趋势对预测值有影响,有些无影响,让神经元控制短期记忆和长期记忆,克服了实践中时间越长影响参数越小的问题。
☆65Feb 8, 2020Updated 6 years ago
Alternatives and similar repositories for LSTM-for-price-prediction
Users that are interested in LSTM-for-price-prediction are comparing it to the libraries listed below. We may earn a commission when you buy through links labeled 'Ad' on this page.
Sorting:
- 股票相关知识学习,用Python来研究一下股票投资,大致会包括股票数据的爬取、技术指标分析、量化交易到神经网络(深度学习)☆16Aug 3, 2019Updated 6 years ago
- 使用LSTM对股票价格进行回归预测,对股价涨跌进行分类预测。We use LSTM to forecast the stock price and classify the rise and fall of the stock price.☆17Jun 18, 2020Updated 5 years ago
- 利用numpy实现rnn时间序列预测股票☆20Jul 12, 2019Updated 6 years ago
- 使用LSTM及股票因子数据预测未来收益,使用LRP(layer-wise relevance propagation)增强网络可解释性☆31Sep 24, 2019Updated 6 years ago
- 将其中的多因子模型(multiple-factor model)作为股票的额外特征引入到股票价格预测中, 建立了一个基于多变量的长短期记忆网络(multi-variable LSTM)股票价格预测模型, 用以提升只基于单一价格序列, 也即单变量长短期记忆网络(univari…☆24Mar 5, 2024Updated 2 years ago
- 1-Click AI Models by DigitalOcean Gradient • AdDeploy popular AI models on DigitalOcean Gradient GPU virtual machines with just a single click. Zero configuration with optimized deployments.
- Use BPNN and LSTM to forecast stock price. 使用BP神经网络和LSTM预测股票价格,注释拉满。☆210Jun 6, 2022Updated 3 years ago
- 基于adaboost的SVM预测股票价格☆11Mar 4, 2018Updated 8 years ago
- Stock trading using timing strategy (股票的择时交易): mainly use short & long moving average of stock price and also analyze the performance of …☆12Feb 26, 2020Updated 6 years ago
- 用SVM构建高频交易策略☆13Oct 21, 2019Updated 6 years ago
- 基于LSTM的股票数据分析,数据来源于Tushare☆231Jan 28, 2019Updated 7 years ago
- dynamic copula dcc garch estimate bank systematic risk☆20Dec 29, 2021Updated 4 years ago
- This repository houses my implementation of a Self-Attention layer in Keras to be used for multivariate time series machine learning prob…☆10Sep 18, 2020Updated 5 years ago
- 这是一个基于LSTM-RNN算法的线上金融股票价格走势预测的小项目,使用tensorflow框架实现。☆45Sep 12, 2018Updated 7 years ago
- 基于LSTM的股票价格预测☆69Nov 22, 2018Updated 7 years ago
- Virtual machines for every use case on DigitalOcean • AdGet dependable uptime with 99.99% SLA, simple security tools, and predictable monthly pricing with DigitalOcean's virtual machines, called Droplets.
- 建立SARIMA-LSTM混合模型预测时间序列问题。以PM2.5值为例,使用UCI公开的自2013年1月17日至2015年12月31日五大城市PM2.5小时检测数据,将数据按时间段划分,使用SARIMA过滤其线性趋势,再对过滤后的残差使用LSTM进行预测,最后对预测结果进行…☆85Jan 7, 2019Updated 7 years ago
- The code implements a novel method for converting random forest into a single decision tree☆11Jan 24, 2020Updated 6 years ago
- Alpha mining with DEAP-based genetic programming.☆11Jul 7, 2023Updated 2 years ago
- ☆13Apr 21, 2021Updated 5 years ago
- RC-NFQ: Regularized Convolutional Neural Fitted Q Iteration. A batch algorithm for deep reinforcement learning. Incorporates dropout regu…☆12Mar 17, 2021Updated 5 years ago
- 使用lstm模型,训练股票数据,预测未来一天的开盘/收盘/最高/最低价格。☆19Aug 4, 2024Updated last year
- 对于一个板块内的股票使用Kmeans聚类剔除垃圾股,利用遗传算法分析上市公司的财务指标,从基本面的角度得出合理的股票选择模型,帮助投资者在某个板块内确定出选择高收益股票的标准,策略样本外回测计效见backtest.png文件。☆75May 31, 2021Updated 4 years ago
- 对截止至2017年7月17日的债券违约事件进行梳理归因,并寻找宏观流动性影响因素,组成数据集。运用Lasso回归进行特征提取后,输入带L2惩罚项LR、SVM、NN、GBDT、RF等机器学习模型进行违约预测,得出GBDT预测效果最好以 及特征工程对线性模型预测效果具有重要性的结…☆58Mar 7, 2019Updated 7 years ago
- The repository contains source code and data from the paper titled "Recurrence and Self-Attention vs the Transformer for Time-Series Clas…☆19Apr 14, 2022Updated 4 years ago
- 1-Click AI Models by DigitalOcean Gradient • AdDeploy popular AI models on DigitalOcean Gradient GPU virtual machines with just a single click. Zero configuration with optimized deployments.
- LSTM进行时间序列预测☆18Jul 17, 2018Updated 7 years ago
- 使用AR自回归模型与长短时记忆网络进行时间序列数据预测☆19Mar 20, 2020Updated 6 years ago
- 使用2018年度部分大众点评的用户评价作为数据集,未筛选前共440万条评论数据,经过数据集的标签化处理以及中文文本的预处理、特征提取以及特征权重后,使用了SVM,朴素贝叶斯,Adabosst等经典机器学习方法进行分类,之后又使用了Bi-LSTM的深度神经网络进行训练分类。☆13Nov 11, 2021Updated 4 years ago
- 通过爬虫获取双色球数据,然后再通过LSTM算法对彩票进行预测☆29Sep 5, 2023Updated 2 years ago
- Uses an LSTM to predict the next days stock movement based on sequence of previous days☆13Mar 9, 2021Updated 5 years ago
- 基于一个马尔可夫链的股票预测模型☆13Sep 29, 2020Updated 5 years ago
- A dynamic factor model to forecasts inflation, i.e. CPI, PPI. WindAPI is required to extract vintages.☆16Jan 1, 2021Updated 5 years ago
- 全球AI挑战赛之虚拟股票预测☆15Feb 23, 2018Updated 8 years ago
- Panorama and HDR photography on the Android Mobile platform using OpenCV libraries.☆17Aug 20, 2014Updated 11 years ago
- Managed hosting for WordPress and PHP on Cloudways • AdManaged hosting for WordPress, Magento, Laravel, or PHP apps, on multiple cloud providers. Deploy in minutes on Cloudways by DigitalOcean.
- 使用决策树实现预测人才招聘市场的最低薪酬预测 | C4.5分类 | CART回归 | 剪枝 | 随机森林☆19Feb 20, 2019Updated 7 years ago
- 一个股票盯盘小工具☆15Oct 31, 2023Updated 2 years ago
- Dynamic Nelson Siegel Model☆14Mar 6, 2019Updated 7 years ago
- 🤖 基于多智能体的A股交易分析系统 | AI-Powered Trading Analysis with Multi-Agent Architecture | 支持技术分析、基本面分析、风险评估☆29Jul 13, 2025Updated 10 months ago
- LSTM RNN for sentiment-based stock prediction☆66Dec 8, 2017Updated 8 years ago
- 科赛 携程出行产品未来14个月销量预测 第2名☆62Jun 1, 2017Updated 8 years ago
- 机器学习数据预处理:包括画数据分布图、特征筛选、调参 技巧☆12Mar 14, 2024Updated 2 years ago