├── .gitignore ├── .travis.yml ├── Procfile ├── README.md ├── auth.py ├── bots ├── lowhighbot.py ├── poolbot.py └── releasebot.py ├── exchange_utils.py ├── requirements.txt └── tests.py /.gitignore: -------------------------------------------------------------------------------- 1 | api_keys.json 2 | venv 3 | .travis.yml 4 | .tags 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/README.md -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/auth.py -------------------------------------------------------------------------------- /bots/lowhighbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/bots/lowhighbot.py -------------------------------------------------------------------------------- /bots/poolbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/bots/poolbot.py -------------------------------------------------------------------------------- /bots/releasebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/bots/releasebot.py -------------------------------------------------------------------------------- /exchange_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/exchange_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zane-/cryptobot/HEAD/tests.py --------------------------------------------------------------------------------