├── LICENSE ├── Project ├── Procfile ├── __pycache__ │ ├── auth.cpython-38.pyc │ ├── config.cpython-38.pyc │ └── webhookTest.cpython-38.pyc ├── app.py ├── auth.py ├── config.py ├── requirements.txt ├── script.py ├── static │ └── tenor.gif └── templates │ └── index.html ├── README.md └── tradingview_message.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/LICENSE -------------------------------------------------------------------------------- /Project/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /Project/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /Project/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /Project/__pycache__/webhookTest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/__pycache__/webhookTest.cpython-38.pyc -------------------------------------------------------------------------------- /Project/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/app.py -------------------------------------------------------------------------------- /Project/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/auth.py -------------------------------------------------------------------------------- /Project/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/config.py -------------------------------------------------------------------------------- /Project/requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | python-binance 3 | gunicorn 4 | twisted 5 | -------------------------------------------------------------------------------- /Project/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/script.py -------------------------------------------------------------------------------- /Project/static/tenor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/static/tenor.gif -------------------------------------------------------------------------------- /Project/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/Project/templates/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/README.md -------------------------------------------------------------------------------- /tradingview_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyupbarlas/Crypto-Trading-Bot-with-Tradingview-Binance-Heroku-and-Telegram/HEAD/tradingview_message.txt --------------------------------------------------------------------------------