I already trade in ThinkorSwim with a custom indicator (see the VPN script here: https://stackoverflow.com/questions/69996141/vpn-indicator-thinkscript-to-python). Now I want the same logic running in Python so I can trigger Option Alpha automations through their inbound webhook. Here’s the workflow I need: 1. The script fetches live market data—prices, volumes, whatever is required—to replicate the VPN indicator exactly as it appears in ThinkorSwim. 2. Once the indicator produces a signal that matches the original Thinkscript rules, the script should fire an HTTP POST to the webhook URL I’ll provide. That call will include any JSON payload Option Alpha expects so my pre-built bot can place the trade. 3. Settings such as symbol list, time-frame, position sizing, and the webhook address must be editable in a simple config section or file so I can tweak them without touching the code. 4. The solution should run on either my local machine or a small cloud instance; if you prefer, wrap it in a lightweight Flask or FastAPI service so I can schedule or ping it easily. Deliverables • A clean, well-commented Python 3 script (plus any helper modules) that recreates the VPN indicator logic and posts to Option Alpha. • A requirements.txt and brief README with setup and execution instructions. • Quick demo—screen share or short video—showing one end-to-end signal firing and the webhook received. If you’ve converted Thinkscript indicators before or have experience with Option Alpha webhooks, let’s talk so I can put this into production quickly.