算法根据单个板块或单只股票的历史数据判断板块指数或个股次日收盘价信息,得到相应的调仓对策。可回归(预测具体价格)可分类(预测涨跌)。 长短期记忆模型(LSTM)是循环神经网络(RNN)的一种,每个输入样本都是一个序列(如某板块20天的四价一量)用这个序列预测结果。它认为某些指标长期的趋势对预测值有影响,有些无影响,让神经元控制短期记忆和长期记忆,克服了实践中时间越长影响参数越小的问题。
☆64Feb 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
Sorting:
- 利用numpy实现rnn时间序列预测股票☆20Jul 12, 2019Updated 6 years ago
- 使用LSTM对股票价格进行回归预测,对股价涨跌进行分类预测。We use LSTM to forecast the stock price and classify the rise and fall of the stock price.☆18Jun 18, 2020Updated 5 years ago
- 股票相关知识学习,用Python来研究一下股票投资,大致会包括股票数据的爬取、技术指标分析、量化交易到神经网络(深度学习)☆16Aug 3, 2019Updated 6 years ago
- 使用LSTM及股票因子数据预测未来收益,使用LRP(layer-wise relevance propagation)增强网络可解释性☆31Sep 24, 2019Updated 6 years ago
- 基于adaboost的SVM预测股票价格☆11Mar 4, 2018Updated 8 years ago
- 基于一个马尔可夫链的股票预测模型☆13Sep 29, 2020Updated 5 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
- 这是一个基于LSTM-RNN算法的线上金融股票价格走势预测的小项目,使用tensorflow框架实现。☆46Sep 12, 2018Updated 7 years ago
- 获取股票历史数据,并实现快速绘图。计算买入和卖出过程中的收益,并标记出涨跌转折点。最后,使用机器学习方法对数据进行建模,并给出股票未来走势的预测结果。☆15Oct 10, 2019Updated 6 years ago
- RC-NFQ: Regularized Convolutional Neural Fitted Q Iteration. A batch algorithm for deep reinforcement learning. Incorporates dropout regu…☆12Mar 17, 2021Updated 4 years ago
- 使用AR自回归模型与长短时记忆网络进行时间序列数据预测☆19Mar 20, 2020Updated 5 years ago
- 基于LSTM的股票价格预测☆67Nov 22, 2018Updated 7 years ago
- 全球AI挑战赛之虚拟股票预测☆14Feb 23, 2018Updated 8 years ago
- 一个股票盯盘小工具☆15Oct 31, 2023Updated 2 years ago
- 一个利用中国股票市场日线级别数据分析的模型,历史数据来源tushare,sina,目前采用的模型算法是SVM,后续还会采用其他的算法来对比☆39Sep 24, 2018Updated 7 years ago
- LSTM长短期记忆模型预测股票涨跌☆14Jul 24, 2020Updated 5 years ago
- 一个用于爬股票历史数据,并根据历史数据分析挖掘并对未来数据进行预测的项目☆16Oct 8, 2017Updated 8 years ago
- 将其中的多因子模型(multiple-factor model)作为股票的额外特征引入到股票价格预测中, 建立了一个基于多变量的长短期记忆网络(multi-variable LSTM)股票价格预测模型, 用以提升只基于单一价格序列, 也即单变量长短期记忆网络(univari…☆23Mar 5, 2024Updated 2 years ago
- 基于掘金量化的量化交易架框☆27Sep 23, 2024Updated last year
- Use BPNN and LSTM to forecast stock price. 使用BP神经网络和LSTM预测股票价格,注释拉满。☆208Jun 6, 2022Updated 3 years ago
- 建立SARIMA-LSTM混合模型预测时间序列问题。以PM2.5值为例,使用UCI公开的自2013年1月17日至2015年12月31日五大城市PM2.5小时检测数据,将数据按时间段划分,使用SARIMA过滤其线性趋势,再对过滤后的残差使用LSTM进行预测,最后对预测结果进行…☆84Jan 7, 2019Updated 7 years ago
- LSTM进行时间序列预测☆18Jul 17, 2018Updated 7 years ago
- 从巨潮资讯网爬取公司的基本面信息,包括股票基本信息、十大流通股东、历史分红、主要指标、财务报表☆17May 25, 2020Updated 5 years ago
- 尝试使用Deep Learning去预测股票后续的价格☆16Sep 7, 2017Updated 8 years ago
- 基于Scrapy-redis的分布式股票爬虫系统实现及HTM网络股票预测☆51Aug 19, 2018Updated 7 years ago
- 一个简单的股票预测算法,利用过去5天的涨幅,以及十余项市值因子和财务因子进行训练学习。训练数据被放在本地的mysql数据库中。☆26Jan 22, 2018Updated 8 years ago
- tensorflow stock python 使用python股票预测 (慢慢更新)☆23Jun 24, 2020Updated 5 years ago
- Use Deep Learning try to predict stock price. 使用深度学习的股票预测☆28Jan 27, 2021Updated 5 years ago
- 基于LSTM的股票数据分析,数据来源于Tushare☆228Jan 28, 2019Updated 7 years ago
- DBN股票预测的,改的程序,加了训练方法和tensorboard可视化等☆24Aug 22, 2024Updated last year
- KNN形态识别 股票形态识别(如W双底)用图像识别的方法准确率高但速度慢(因要画图),用K-近邻方法以数值型数据计算快准确率基本符合要求(查准率70%左右),可用于对决策时间有要求的交易。 工作完成情况: 1、W双底识别模型查准确率约70% 2、模型文件上载到聚宽后可在回测…☆26Feb 8, 2020Updated 6 years ago
- 用深度学习对含噪时间序列数据进行预测☆29Mar 8, 2025Updated last year
- (Python/Java)爬虫 + Redis + MySQL实现股票的历史数据查询, 降价通知, 下跌预警, 可视化等功能☆24Dec 2, 2020Updated 5 years ago
- Crop yield prediction on remote sensing data using CNN☆27May 4, 2019Updated 6 years ago
- 对于一个板块内的股票使用Kmeans聚类剔除垃圾股,利用遗传算法分析上市公司的财务指标,从基本面的角度得出合理的股票选择模型,帮助投资者在某个板块内确定出选择高收益股票的标准,策略样本外回测计效见backtest.png文件。☆75May 31, 2021Updated 4 years ago
- MAC端看盘工具,自选股 ,股票,盯盘☆30Apr 4, 2021Updated 4 years ago
- 让数据分析师可以有比Excel更好的使用体验 a spreadsheet component to make data analysis easier☆10Jan 3, 2020Updated 6 years ago
- A repository for a Deep Q-Learning approach to intrusion detection for networks cyber-attacks.☆10Sep 3, 2021Updated 4 years ago
- pytorch实现用LSTM做股票价格预测☆307Jun 17, 2020Updated 5 years ago