├── .gitattributes ├── Bot.py ├── Config.example ├── ExchgData.py ├── README.md ├── __init__.py ├── indicators.py ├── mexorders.py ├── notifications.py └── utilities.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/Bot.py -------------------------------------------------------------------------------- /Config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/Config.example -------------------------------------------------------------------------------- /ExchgData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/ExchgData.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BTC_TradingBot 2 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indicators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/indicators.py -------------------------------------------------------------------------------- /mexorders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/mexorders.py -------------------------------------------------------------------------------- /notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/notifications.py -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Taqhee/BTC_TradingBot/HEAD/utilities.py --------------------------------------------------------------------------------