├── README.md ├── agent └── tensorforce_agent.py ├── conda_setup.yaml ├── environment ├── base_env.py ├── env_continuous.py ├── env_discrete.py └── env_feature.py ├── main.py ├── network └── network.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/README.md -------------------------------------------------------------------------------- /agent/tensorforce_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/agent/tensorforce_agent.py -------------------------------------------------------------------------------- /conda_setup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/conda_setup.yaml -------------------------------------------------------------------------------- /environment/base_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/environment/base_env.py -------------------------------------------------------------------------------- /environment/env_continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/environment/env_continuous.py -------------------------------------------------------------------------------- /environment/env_discrete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/environment/env_discrete.py -------------------------------------------------------------------------------- /environment/env_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/environment/env_feature.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/main.py -------------------------------------------------------------------------------- /network/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/network/network.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imTurkey/Market-Making-with-Deep-Reinforcement-Learning-from-Limit-Order-Books/HEAD/utils.py --------------------------------------------------------------------------------