├── .env.sample ├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── botapi.py ├── botcandlestick.py ├── botchart.py ├── botindicators.py ├── botlog.py ├── botstrategy.py ├── bottrade.py ├── output ├── index.html └── index.js ├── shared.py └── utils.py /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/bot.py -------------------------------------------------------------------------------- /botapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/botapi.py -------------------------------------------------------------------------------- /botcandlestick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/botcandlestick.py -------------------------------------------------------------------------------- /botchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/botchart.py -------------------------------------------------------------------------------- /botindicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/botindicators.py -------------------------------------------------------------------------------- /botlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/botlog.py -------------------------------------------------------------------------------- /botstrategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/botstrategy.py -------------------------------------------------------------------------------- /bottrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/bottrade.py -------------------------------------------------------------------------------- /output/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/output/index.html -------------------------------------------------------------------------------- /output/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/output/index.js -------------------------------------------------------------------------------- /shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/shared.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Viandoks/python-crypto-bot/HEAD/utils.py --------------------------------------------------------------------------------