├── .gitignore ├── Procfile ├── README.md ├── app.py ├── bollinger_band_strategy.pinescript ├── config.py ├── requirements.txt ├── templates └── dashboard.html └── tradingview-test-payloads ├── webhook_message_filled.txt └── webhook_message_format.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/app.py -------------------------------------------------------------------------------- /bollinger_band_strategy.pinescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/bollinger_band_strategy.pinescript -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | gunicorn 3 | alpaca-trade-api 4 | requests -------------------------------------------------------------------------------- /templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/templates/dashboard.html -------------------------------------------------------------------------------- /tradingview-test-payloads/webhook_message_filled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/tradingview-test-payloads/webhook_message_filled.txt -------------------------------------------------------------------------------- /tradingview-test-payloads/webhook_message_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hackingthemarkets/tradingview-alpaca-strategy-alert-webhook-heroku/HEAD/tradingview-test-payloads/webhook_message_format.txt --------------------------------------------------------------------------------