|
| 1 | +================================ |
| 2 | +|Crypto Trading Environment| |
| 3 | +================================ |
| 4 | + |
| 5 | +.. |Crypto Trading Environment| raw:: html |
| 6 | + |
| 7 | + <h1 align='center'> |
| 8 | + <img src = 'https://github.com/ClementPerroud/Gym-Trading-Env/raw/main/docs/source/images/logo_light-bg.png' width='500'> |
| 9 | + </h1> |
| 10 | + |
| 11 | + |
| 12 | +.. raw:: html |
| 13 | + |
| 14 | + <section class="shields" align="center"> |
| 15 | + <a href="https://www.python.org/"> |
| 16 | + <img src="https://img.shields.io/badge/python-v3-brightgreen.svg" |
| 17 | + alt="python"> |
| 18 | + </a> |
| 19 | + <a href="https://pypi.org/project/gym-trading-env/"> |
| 20 | + <img src="https://img.shields.io/badge/pypi-v1.1.3-brightgreen.svg" |
| 21 | + alt="PyPI"> |
| 22 | + </a> |
| 23 | + <a href="https://github.com/ClementPerroud/Gym-Trading-Env/blob/main/LICENSE.txt"> |
| 24 | + <img src="https://img.shields.io/badge/license-MIT%202.0%20Clause-green" |
| 25 | + alt="Apache 2.0 with Commons Clause"> |
| 26 | + </a> |
| 27 | + <a href='https://gym-trading-env.readthedocs.io/en/latest/?badge=latest'> |
| 28 | + <img src='https://readthedocs.org/projects/gym-trading-env/badge/?version=latest' alt='Documentation Status' /> |
| 29 | + </a> |
| 30 | + |
| 31 | + <br> |
| 32 | + <a href="https://github.com/ClementPerroud/Gym-Trading-Env"> |
| 33 | + <img src="https://img.shields.io/github/stars/ClementPerroud/gym-trading-env?style=social" alt="Github stars"> |
| 34 | + </a> |
| 35 | + </section> |
| 36 | + |
| 37 | +Cryto Trading Env is an OpenAI Gym environment for simulating stocks and train Reinforcement Learning (RL) trading agents. |
| 38 | +It was designed to be fast and customizable for easy RL trading algorythms implementation. |
| 39 | + |
| 40 | ++---------------------------------------------------------------------------------+ |
| 41 | +| `Documentation <https://gym-trading-env.readthedocs.io/en/latest/index.html>`_ | |
| 42 | ++---------------------------------------------------------------------------------+ |
| 43 | + |
| 44 | +Key features |
| 45 | +--------------- |
| 46 | + |
| 47 | +This package aims to greatly simplify the research phase by offering : |
| 48 | + |
| 49 | +* Easy and quick download technical data on several exchanges |
| 50 | +* A simple and fast environment for the user and the AI, but which allows complex operations (Short, Margin trading). |
| 51 | +* A high performance rendering (can display several hundred thousand candles simultaneously), customizable to visualize the actions of its agent and its results. |
| 52 | +* (Coming soon) An easy way to backtest any RL-Agents or any king |
| 53 | + |
| 54 | +.. image:: docs/source/images/render.gif |
| 55 | + |
| 56 | +Installation |
| 57 | +--------------- |
| 58 | + |
| 59 | +Crypto Trading Env supports Python 3.9+ on Windows, Mac, and Linux. You can install it using pip: |
| 60 | + |
| 61 | +.. code-block:: console |
| 62 | +
|
| 63 | + pip install gym-trading-env |
| 64 | +
|
| 65 | +Or using git : |
| 66 | + |
| 67 | +.. code-block:: console |
| 68 | + |
| 69 | + git clone https://github.com/ClementPerroud/Gym-Trading-Env |
| 70 | +
|
| 71 | +
|
| 72 | +`Documentation available here <https://gym-trading-env.readthedocs.io/en/latest/index.html>`_ |
| 73 | +----------------------------------------------------------------------------------------------- |
0 commit comments