├── .gitignore ├── LICENSE ├── README.md ├── gym_cryptotrading ├── __init__.py ├── envs │ ├── __init__.py │ ├── basicenv.py │ ├── cryptoenv.py │ ├── realizedPnL.py │ ├── unrealizedPnL.py │ └── weightedPnL.py ├── errors.py ├── generator.py ├── spaces │ ├── __init__.py │ ├── action.py │ └── observation.py └── strings.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/README.md -------------------------------------------------------------------------------- /gym_cryptotrading/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/__init__.py -------------------------------------------------------------------------------- /gym_cryptotrading/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/envs/__init__.py -------------------------------------------------------------------------------- /gym_cryptotrading/envs/basicenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/envs/basicenv.py -------------------------------------------------------------------------------- /gym_cryptotrading/envs/cryptoenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/envs/cryptoenv.py -------------------------------------------------------------------------------- /gym_cryptotrading/envs/realizedPnL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/envs/realizedPnL.py -------------------------------------------------------------------------------- /gym_cryptotrading/envs/unrealizedPnL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/envs/unrealizedPnL.py -------------------------------------------------------------------------------- /gym_cryptotrading/envs/weightedPnL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/envs/weightedPnL.py -------------------------------------------------------------------------------- /gym_cryptotrading/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/errors.py -------------------------------------------------------------------------------- /gym_cryptotrading/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/generator.py -------------------------------------------------------------------------------- /gym_cryptotrading/spaces/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/spaces/__init__.py -------------------------------------------------------------------------------- /gym_cryptotrading/spaces/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/spaces/action.py -------------------------------------------------------------------------------- /gym_cryptotrading/spaces/observation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/spaces/observation.py -------------------------------------------------------------------------------- /gym_cryptotrading/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/gym_cryptotrading/strings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samre12/gym-cryptotrading/HEAD/setup.py --------------------------------------------------------------------------------