├── .gitignore ├── LICENSE ├── README.md ├── config └── .gitignore ├── core ├── exchange.py ├── telegrambot.py └── tradeexcutor.py ├── main.py ├── model ├── __init__.py ├── longtrade.py ├── shorttrade.py └── trade.py └── util └── formatter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/README.md -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /core/exchange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/core/exchange.py -------------------------------------------------------------------------------- /core/telegrambot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/core/telegrambot.py -------------------------------------------------------------------------------- /core/tradeexcutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/core/tradeexcutor.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/main.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/longtrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/model/longtrade.py -------------------------------------------------------------------------------- /model/shorttrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/model/shorttrade.py -------------------------------------------------------------------------------- /model/trade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/model/trade.py -------------------------------------------------------------------------------- /util/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev4Fun/Auto-Trade-Crypto-Bot/HEAD/util/formatter.py --------------------------------------------------------------------------------