├── agent.py ├── ai.py ├── ai2.py ├── coderator.py ├── combined_code.txt ├── config.py ├── conftest.py ├── data_provider.py ├── env └── environment.py ├── networks.py ├── replay_buffer.py ├── reward.py ├── tests └── test_agent.py └── train.py /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/agent.py -------------------------------------------------------------------------------- /ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/ai.py -------------------------------------------------------------------------------- /ai2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/ai2.py -------------------------------------------------------------------------------- /coderator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/coderator.py -------------------------------------------------------------------------------- /combined_code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/combined_code.txt -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/config.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/conftest.py -------------------------------------------------------------------------------- /data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/data_provider.py -------------------------------------------------------------------------------- /env/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/env/environment.py -------------------------------------------------------------------------------- /networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/networks.py -------------------------------------------------------------------------------- /replay_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/replay_buffer.py -------------------------------------------------------------------------------- /reward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/reward.py -------------------------------------------------------------------------------- /tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/tests/test_agent.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DylanSiegel/sheeplz-crypto-bot/HEAD/train.py --------------------------------------------------------------------------------