├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── bot.py ├── config.json.sample └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/bot.py -------------------------------------------------------------------------------- /config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/config.json.sample -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-bormotov/tg-trader/HEAD/requirements.txt --------------------------------------------------------------------------------