├── .gitignore ├── .idea └── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── app.py ├── binanceFutures.py ├── config.json ├── requirements.txt └── runtime.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/app.py -------------------------------------------------------------------------------- /binanceFutures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/binanceFutures.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/config.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CryptoGnome/Tradingview-Webhook-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.11.2 2 | --------------------------------------------------------------------------------