├── AutomationForexTrading.ipynb ├── CITATION.cff ├── README.md ├── __init__.py ├── config ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── config.cpython-37.pyc └── config.py ├── data ├── __init__.py ├── forex-data.csv └── test-data.csv ├── env ├── EnvMultipleForex_trade.py ├── EnvMultipleForex_train.py ├── EnvMultipleForex_validation.py ├── __init__.py └── __pycache__ │ ├── EnvMultipleStock_trade.cpython-37.pyc │ ├── EnvMultipleStock_train.cpython-37.pyc │ ├── EnvMultipleStock_validation.cpython-37.pyc │ └── __init__.cpython-37.pyc ├── model ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── models.cpython-37.pyc └── models.py ├── preprocessing ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── preprocessors.cpython-37.pyc └── preprocessors.py ├── requirements.txt ├── results ├── .DS_Store ├── ACKTR │ └── Hello.txt ├── DDPG │ └── Hello.txt ├── PPO │ └── Hello.txt ├── TD3 │ └── Hello.txt └── ensemble │ └── Hello.txt └── run_DRL.py /AutomationForexTrading.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/AutomationForexTrading.ipynb -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/CITATION.cff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/config/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /config/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/config/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/config/config.py -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/forex-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/data/forex-data.csv -------------------------------------------------------------------------------- /data/test-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/data/test-data.csv -------------------------------------------------------------------------------- /env/EnvMultipleForex_trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/EnvMultipleForex_trade.py -------------------------------------------------------------------------------- /env/EnvMultipleForex_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/EnvMultipleForex_train.py -------------------------------------------------------------------------------- /env/EnvMultipleForex_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/EnvMultipleForex_validation.py -------------------------------------------------------------------------------- /env/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /env/__pycache__/EnvMultipleStock_trade.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/__pycache__/EnvMultipleStock_trade.cpython-37.pyc -------------------------------------------------------------------------------- /env/__pycache__/EnvMultipleStock_train.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/__pycache__/EnvMultipleStock_train.cpython-37.pyc -------------------------------------------------------------------------------- /env/__pycache__/EnvMultipleStock_validation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/__pycache__/EnvMultipleStock_validation.cpython-37.pyc -------------------------------------------------------------------------------- /env/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/env/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/model/.DS_Store -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/model/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /model/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/model/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/model/models.py -------------------------------------------------------------------------------- /preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /preprocessing/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/preprocessing/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /preprocessing/__pycache__/preprocessors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/preprocessing/__pycache__/preprocessors.cpython-37.pyc -------------------------------------------------------------------------------- /preprocessing/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/preprocessing/preprocessors.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/results/.DS_Store -------------------------------------------------------------------------------- /results/ACKTR/Hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/DDPG/Hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/PPO/Hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/TD3/Hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/ensemble/Hello.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_DRL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomatoFT/Forex-Trading-Automation-with-Deep-Reinforcement-Learning/HEAD/run_DRL.py --------------------------------------------------------------------------------