├── FTX ├── __init__.py ├── client.py ├── constants.py └── helpers.py ├── LICENSE ├── Procfile ├── README.md ├── app.py ├── config.py ├── requirements.txt └── test.py /FTX/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | An unofficial Python wrapper for the FTX exchange API 3 | """ -------------------------------------------------------------------------------- /FTX/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/FTX/client.py -------------------------------------------------------------------------------- /FTX/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/FTX/constants.py -------------------------------------------------------------------------------- /FTX/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/FTX/helpers.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask 2 | gunicorn 3 | requests -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeeChunHao2000/Cypto-TradingView-Webhook/HEAD/test.py --------------------------------------------------------------------------------