├── .gitattributes ├── README.md ├── TraderEnv.py ├── data └── empty ├── deep_dqn_rl_trader.py ├── load_test.py ├── model └── empty ├── png └── ohlc.jpg ├── process_data.py ├── requirements.txt ├── rl ├── agents │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── cem.cpython-36.pyc │ │ ├── cem.cpython-37.pyc │ │ ├── ddpg.cpython-36.pyc │ │ ├── ddpg.cpython-37.pyc │ │ ├── dqn.cpython-36.pyc │ │ ├── dqn.cpython-37.pyc │ │ ├── sarsa.cpython-36.pyc │ │ └── sarsa.cpython-37.pyc │ ├── cem.py │ ├── ddpg.py │ ├── dqn.py │ └── sarsa.py ├── callbacks.py ├── core.py ├── memory.py ├── policy.py ├── processors.py ├── random.py └── util.py ├── ta.py ├── talib.py ├── temp.py ├── util.py ├── visualize.ipynb └── visualize_trade.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/README.md -------------------------------------------------------------------------------- /TraderEnv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/TraderEnv.py -------------------------------------------------------------------------------- /data/empty: -------------------------------------------------------------------------------- 1 | gitignore 2 | -------------------------------------------------------------------------------- /deep_dqn_rl_trader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/deep_dqn_rl_trader.py -------------------------------------------------------------------------------- /load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/load_test.py -------------------------------------------------------------------------------- /model/empty: -------------------------------------------------------------------------------- 1 | gitignore 2 | -------------------------------------------------------------------------------- /png/ohlc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/png/ohlc.jpg -------------------------------------------------------------------------------- /process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/process_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/requirements.txt -------------------------------------------------------------------------------- /rl/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__init__.py -------------------------------------------------------------------------------- /rl/agents/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/cem.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/cem.cpython-36.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/cem.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/cem.cpython-37.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/ddpg.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/ddpg.cpython-36.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/ddpg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/ddpg.cpython-37.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/dqn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/dqn.cpython-36.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/dqn.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/dqn.cpython-37.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/sarsa.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/sarsa.cpython-36.pyc -------------------------------------------------------------------------------- /rl/agents/__pycache__/sarsa.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/__pycache__/sarsa.cpython-37.pyc -------------------------------------------------------------------------------- /rl/agents/cem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/cem.py -------------------------------------------------------------------------------- /rl/agents/ddpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/ddpg.py -------------------------------------------------------------------------------- /rl/agents/dqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/dqn.py -------------------------------------------------------------------------------- /rl/agents/sarsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/agents/sarsa.py -------------------------------------------------------------------------------- /rl/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/callbacks.py -------------------------------------------------------------------------------- /rl/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/core.py -------------------------------------------------------------------------------- /rl/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/memory.py -------------------------------------------------------------------------------- /rl/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/policy.py -------------------------------------------------------------------------------- /rl/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/processors.py -------------------------------------------------------------------------------- /rl/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/random.py -------------------------------------------------------------------------------- /rl/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/rl/util.py -------------------------------------------------------------------------------- /ta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/ta.py -------------------------------------------------------------------------------- /talib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/talib.py -------------------------------------------------------------------------------- /temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/temp.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/util.py -------------------------------------------------------------------------------- /visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/visualize.ipynb -------------------------------------------------------------------------------- /visualize_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeLogist/RL-Forex-trader-LSTM/HEAD/visualize_trade.py --------------------------------------------------------------------------------