Navigation Menu

Skip to content

deep_learning_and_reinforcement_learning

firmai edited this page Dec 13, 2021 · 7 revisions
repo comment created_at last_commit star_count repo_status rating
Stock-Prediction-Models very good curated list of notebooks showing deep learning + reinforcement learning models. Also contain topics on outlier detections/overbought oversold study/monte carlo simulartions/sentiment analysis from text (text storage/parsing is not detailed but it mentioned using BERT) 2017-12-18 10:49:59 2021-01-05 10:31:50 4635.0 ✔️ ⭐x5
AI Trading AI to predict stock market movements. 2019-01-09 08:02:47 2019-02-11 16:32:47 3200.0 ✖️ ⭐x5
FinRL-Library started by Columbia university engineering students and designed as an end to end deep reinforcement learning library for automated trading platform. Implementation of DQN DDQN DDPG etc using PyTorch and gym use pyfolio for showing backtesting stats. Big contributions on Proximal Policy Optimization (PPO) advantage actor critic (A2C) and Deep Deterministic Policy Gradient (DDPG) agents for trading 2020-07-26 13:18:16 2021-12-11 08:01:50 2982.0 ✔️ ⭐x5
Deep Learning IV Bulbea: Deep Learning based Python Library. 2017-03-09 06:11:06 2017-03-19 07:42:49 1582.0 ✖️ ⭐x5
RLTrader predecessor to tensortrade uses open api gym and neat way to render matplotlib plots in real time. Also explains LSTM/data stationarity/Bayesian optimization using Optuna etc. 2019-04-27 18:35:15 2019-10-17 16:25:49 1463.0 ✖️ ⭐x5
Deep Learning III Algorithmic trading with deep learning experiments. 2016-06-18 18:23:06 2018-08-07 15:24:45 1307.0 ✖️ ⭐x5
Personae implementation of deep reinforcement learning and supervised learnings covering areas: deep deterministic policy gradient (DDPG) and DDQN etc. Data are being pulled from rqalpha which is a python backtest engine and have a nice docker image to run training/testing 2018-03-10 11:22:00 2018-09-02 17:21:38 1179.0 ✖️ ⭐x5
RL Trading A collection of 25+ Reinforcement Learning Trading Strategies -Google Colab. nan nan nan ✔️ ⭐x4
Deep-Reinforcement-Learning-for-Automated-Stock-Trading-Ensemble-Strategy-ICAIF-2020 Part of FinRL and provided code for paper deep reinformacement learning for automated stock trading focuses on ensemble. 2020-07-26 13:12:53 2021-01-21 18:11:59 928.0 ✔️ ⭐x4
awesome-deep-trading curated list of papers/repos on topics like CNN/LSTM/GAN/Reinforcement Learning etc. Categorized as deep learning for now but there are other topics here. Manually maintained by cbailes 2018-11-26 03:23:04 2021-01-01 09:41:21 781.0 ✔️ ⭐x4
Neural Network Neural networks to predict stock prices. 2018-09-10 06:34:53 2018-11-21 07:39:31 562.0 ✖️ ⭐x4
Deep Learning Technical experimentations to beat the stock market using deep learning. 2016-12-12 02:15:12 2017-03-04 08:37:29 439.0 ✖️ ⭐x4
LTSM Recurrent OHLC Average Prediction of Apple Inc. Using LSTM Recurrent Neural Network. 2018-10-07 03:58:26 2019-08-03 09:00:44 1336.0 ✖️ ⭐x4
RL III Github -Deep Reinforcement Learning based Trading Agent for Bitcoin. 2017-09-21 17:05:19 2018-04-13 16:33:21 627.0 ✖️ ⭐x3
crypto-rl Retrieve limit order book level data from coinbase pro and bitfinex -> record in arctic timeseries database then implemented trend following strategies (market orders) and market making (limit orders). Uses reinforcement learning (DQN) keras-rl to create agents and uses openai gym to implement POMDP (partially observable markov decision process) 2018-06-21 01:06:01 2021-11-30 13:52:18 475.0 ✔️ ⭐x3
Deep-Learning-Machine-Learning-Stock curated list of notebooks for machine learning models. Start with very simple linear models to more advanced reinforcement learning type of models. Problem with this repo is that the library version numbers may be changing over time and there's no specific way to track and upgrade 2018-09-29 23:38:06 2021-10-23 01:15:15 448.0 ✔️ ⭐x3
trading-bot Implementation of deep reinforcement learning using Deep Q Network (DQN). Only supports single security at the moment. Idea is roughly based here and uses tensorflow/keras. Interesting helper python libraries used here are tqdm for console based progress bar and altair for declarative visualization in python 2018-08-13 10:44:08 2020-01-23 04:41:20 416.0 ✔️ ⭐x3
Advanced-Deep-Trading notebooks containing experiments based on Lopez de Prado book "Advances in financial machine learning". Mostly not deep learning related but rather sklearn regression models. Interesting libraries include mlfinlab for calculating return stats and shap for explaining models. Examlpe of shap can be which features are pushing the value up and and which features are pushing the value down. Also contain functions for calculating geometric brownian motion and jump diffusion functions. 2019-02-16 21:18:00 2020-11-29 20:12:59 369.0 ✔️ ⭐x3
BitcoinForecast RNN model to predict short term price movement (in this case BTC for the next 9 minutes) deepchart is used to visualize the model 2017-03-10 10:52:02 2018-06-11 08:07:02 304.0 ✖️ ⭐x3
deep-RL-trading trading game comparing RNN vs CNN vs MLP based on paper 2018-02-25 17:41:42 2020-12-01 22:06:39 275.0 ✔️ ⭐x3
DeepLearningInFinance Based on a talk Sonam Srivastava gave and there are two studies: 1. single timeseries return prediction using ARIMA/VAR/SVR/Deep Regression/CNN/LSTM 2. indexed portfolio construction using autoencoders i.e. replicate a index using handful of stocks. 2017-08-21 16:00:42 2017-08-21 17:23:48 267.0 ✖️ ⭐x3
Pair Trading RL Using deep actor-critic model to learn best strategies in pair trading. 2017-05-18 16:47:11 2017-05-18 16:56:38 257.0 ✖️ ⭐x3
ARIMA-LTSM Hybrid Hybrid model to predict future price correlation coefficients of two assets. 2018-08-05 02:13:21 2018-10-01 11:25:53 246.0 ✖️ ⭐x3
Deep-Reinforcement-Stock-Trading inspired by Q-trader a deep reinforcement learning repo for trading. Only 3 actions allowed (buy/hold/sell) and no transaction cost is implemented yet. Uses empyrical for portfolio stats 2019-05-19 22:20:05 2020-09-27 19:22:28 211.0 ✔️ ⭐x3
trading-rl Deep reinforcement learning for financial trading using gym and keras-rl on FX dataset (EURUSD) not actively maintained 2019-04-22 10:03:21 2020-09-28 09:07:18 191.0 ✔️ ⭐x3
Deep Learning II Tensorflow Regression. 2016-07-12 12:56:10 2018-02-16 02:43:36 184.0 ✖️ ⭐x3
DQN-DDPG_Stock_Trading merged into FinRL library and uses gym and implementation of DQN 2018-09-19 03:17:06 2020-11-26 16:58:00 177.0 ✔️ ⭐x3
AutomatedStockTrading-DeepQ-Learning cornerstone project repo for Udacity nanodegree program Become a machine learning engineer and focus on trading using deep q learning. Good explanation on design choices in the report 2019-02-23 12:01:21 2021-08-31 15:34:07 159.0 ✔️ ⭐x3
Deep-Reinforcement-Learning-in-Trading Deep reinforcement learning for trading leveraging openai gym framework. Keras implementation of DQN DDQN (double deep Q network) and DDDQN (dueling double dqn) trained/tested on s&p 500 daily data from 2013 to 2018. approach is described in an article here 2018-05-11 00:52:14 2019-10-26 14:22:44 157.0 ✖️ ⭐x3
LTSM GRU Stock Market Forecasting using LSTM\GRU. 2018-05-13 02:39:32 2019-02-25 00:26:42 14.0 ✖️ ⭐x3
RL II reinforcement learning on stock market and agent tries to learn trading. 2016-06-11 07:27:10 2018-01-22 14:35:50 1377.0 ✖️ ⭐x3
RL OpenGym with Deep Q-learning and Policy Gradient. 2016-10-04 14:42:19 2016-12-23 07:34:08 750.0 ✖️ ⭐x2
RL V Building an Agent to Trade with Reinforcement Learning. 2019-01-16 00:43:36 2020-03-19 20:28:08 35.0 ✔️ ⭐x2
TradingGym NEW 2017-05-01 13:53:32 2018-02-14 13:58:18 960.0 ✖️
gym-trading NEW 2016-12-09 20:46:19 2017-12-24 15:34:37 613.0 ✖️
maro NEW 2019-12-27 06:48:27 2021-12-06 03:21:39 537.0 ✔️
Trading-Gym NEW 2017-06-13 13:14:48 2017-07-10 08:09:30 520.0 ✖️
QLearning_Trading NEW 2016-08-10 06:02:23 2016-10-15 02:36:09 457.0 ✖️
tensortrade NEW 2019-07-30 21:28:32 2021-12-07 23:03:39 3635.0 ✔️
a3c_trading NEW 2018-06-04 15:30:16 2021-10-26 07:35:02 346.0 ✔️
FinRL NEW 2020-07-26 13:18:16 2021-12-11 08:01:50 2982.0 ✔️
RLQuant NEW 2018-04-05 05:42:44 2018-08-13 04:18:29 284.0 ✖️
rl_trading NEW 2017-05-29 22:19:00 2017-08-29 14:54:50 221.0 ✖️
Machine-Learning-and-Reinforcement-Learning-in-Finance NEW 2018-06-26 04:30:08 2018-09-23 16:50:33 191.0 ✖️
Pair-Trading-Reinforcement-Learning NEW 2019-06-09 22:50:37 2020-01-03 15:36:22 159.0 ✔️
RL-Bitcoin-trading-bot NEW 2020-12-02 06:07:14 2021-02-25 18:56:56 151.0 ✔️
RL IV Reinforcement Learning for finance. 2016-10-21 02:47:17 2017-04-07 08:11:57 148.0 ✖️
TradingGym NEW 2017-11-06 00:50:01 2021-11-14 05:37:30 142.0 ✔️
pairstrade-fyp-2019 NEW 2018-09-07 07:51:06 2020-05-13 05:06:51 139.0 ✔️
freqtrade-gym NEW 2020-09-23 12:57:20 2021-10-11 07:36:32 132.0 ✔️
stock-prediction-deep-neural-learning NEW 2020-07-01 17:31:42 2021-11-06 16:09:54 111.0 ✔️