Futuros NASDAQ 100 E-mini
Educacional

Automated Execution: TradingView Alerts → Tradovate using AWS La

297
I’ve built a fully automated pipeline that takes live TradingView alerts and turns them into real orders in Tradovate. Here’s how it works, step by step (I will provide a video on it):

PineScript Alerts
  • My indicator/strategy in TradingView fires alert() with a JSON payload (symbol, side, qty, price, ATR, ENV).

    Webhook to AWS
    • Alerts hit an API Gateway endpoint in AWS, invoking a Lambda function.
    Lambda Processing
    • Parse the JSON from TradingView.
    • Calculate Stop‐Loss & Take‐Profit using ATR.
    • Authenticate to the Tradovate API (demo & live environments).
    • Place an OCO order (placeOSO) with proper bracket legs.
    • Send a confirmation message to my Telegram channel.
    Tradovate REST API
    • Auth: POST /auth/accesstokenrequest → accessToken
    • List accounts: GET /account/list → find accountId
    • Place OCO: POST /order/placeOSO with entry, SL, TP
    Testing & Monitoring
    • Local smoke tests of Telegram bot.
    • Lambda console test events for sample payloads.
    • CloudWatch logs for debugging & alerts on errors.
    Why it matters:
    • Zero manual steps from signal to fill.
    • Consistent risk management via ATR‐based SL/TP.
    • Clear audit trail: logs in AWS + Telegram notifications.
    • Educational resource for anyone building similar setups


    Feel free to ask questions or suggest improvements! Please leave comments.

Aviso legal

As informações e publicações não devem ser e não constituem conselhos ou recomendações financeiras, de investimento, de negociação ou de qualquer outro tipo, fornecidas ou endossadas pela TradingView. Leia mais em Termos de uso.