FAQ automazione con webhook di TradingView
Tutto su come trasformare gli alert di TradingView in ordini reali sul broker — webhook, payload JSON, abbonamenti necessari e configurazione senza codice.
A TradingView webhook is an automated message TradingView sends the instant your alert fires. It is an HTTP POST carrying a small block of JSON that describes the trade. On its own, that message is just data. PickMyTrade is what turns it into action: it receives the webhook, reads the symbol, side, size and risk settings, and places the matching order on your connected broker, in the cloud, with no coding and no VPS.
The moment your strategy or indicator triggers, a real order lands on Tradovate, Rithmic, Interactive Brokers, TradeStation, TradeLocker, ProjectX, Match-Trader or Tradier, without you clicking a thing.
This page explains exactly what a TradingView webhook is, how to create one, what the JSON payload looks like, how PickMyTrade executes it, and how to keep it secure. Start with a 5-day free trial, no credit card required.
What is a TradingView webhook?
A webhook is a way for one app to tell another app that something just happened, in real time. When you attach a webhook to a TradingView alert, TradingView sends an HTTP POST request to a URL you choose the moment the alert condition is met. That request carries a payload, a short block of text formatted as JSON, that spells out what to do: which symbol, buy or sell, how many contracts, and any stop-loss or take-profit levels.
Think of it as TradingView filling out a trade ticket and mailing it instantly to an address you set. The address is your PickMyTrade webhook URL. The ticket is the JSON payload. Unlike an email or a pop-up, a webhook is machine-readable, so software can act on it automatically without a human reading anything. That is the whole basis of automated trading from TradingView: the alert is the trigger, the webhook is the delivery, and PickMyTrade is the part that actually places the order.
Requirements before you start
You need four things to run TradingView webhook automation with PickMyTrade:
- A paid TradingView plan. Webhook alerts are a paid feature. The Essential plan (currently $12.95/month) is the entry tier that includes them. Free TradingView accounts cannot send webhooks.
- Two-factor authentication (2FA) enabled on your TradingView account. TradingView requires 2FA before it will let an alert send to a webhook URL.
- A supported broker account. Live, demo or a prop-firm evaluation on Tradovate, Rithmic, Interactive Brokers, TradeStation, TradeLocker, ProjectX, Match-Trader or Tradier.
- A PickMyTrade account. This is where you connect your broker, generate the webhook URL and the alert payload, and watch your fills. A 5-day free trial with no credit card lets you set the whole thing up before you pay.
How to create a webhook in TradingView (step by step)
Once your broker is connected in PickMyTrade, creating the webhook alert in TradingView takes about a minute:
- Open your chart and click the alert icon (the clock). Set your condition, for example your strategy, an indicator crossover, or a price level.
- Open the Notifications tab inside the alert dialog and tick Webhook URL.
- Paste your PickMyTrade webhook URL into that field. PickMyTrade gives you this URL when you generate an alert (it ends in /v2/add-trade-data-latest).
- Delete the default alert text in the Message box and paste the PickMyTrade-generated JSON payload in its place. PickMyTrade builds this for you, so there is nothing to write.
- Click Create. Your alert is now wired to place a live order every time it fires.
That is the entire setup. No code, no server, no browser extension. Test it on a 1-minute chart first, then move it to your real timeframe once you have seen a fill land in your PickMyTrade alert log.
The TradingView alert JSON payload format
The payload is the message TradingView delivers to PickMyTrade. It is JSON, a simple list of fields and values. A webhook payload for a trade carries the essentials: which symbol to trade, the side (buy or sell), the quantity, and optional stop-loss and take-profit. Here is an illustrative example of the kind of fields a payload contains:
{
"token": "YOUR_PICKMYTRADE_TOKEN",
"symbol": "MNQ",
"side": "buy",
"quantity": 1,
"order_type": "market",
"stop_loss": 20,
"take_profit": 40
} You do not have to write this by hand or memorize the exact field names. PickMyTrade's no-code alert builder generates the precise JSON for your buy and sell signals, including your risk settings, and you simply paste it into the TradingView alert. If you use a Pine Script strategy that already outputs an alert message, PickMyTrade reads the standard fields it needs. The token in the payload is how PickMyTrade knows the alert is yours, so it never carries your broker login.
From webhook to filled order: how PickMyTrade executes
Here is the full path a signal travels. Your alert fires in TradingView. TradingView sends the webhook, the HTTP POST with your JSON payload, to your PickMyTrade URL. PickMyTrade's cloud receives it, checks the token to confirm it is your account, and validates the payload (correct symbol, valid side, size within your rules). It then routes the order to your connected broker and places it, applying any stop-loss, take-profit or position sizing you configured. The result shows up in your PickMyTrade alert log and in your broker platform.
Because all of this runs in PickMyTrade's cloud, there is no VPS to rent and nothing to keep running on your computer. You can close your laptop and the automation still works. That is a real difference from download-and-run tools that need a machine left on around the clock. One connected setup handles your signals 24/7.
Webhook execution latency (honest expectation)
Speed matters, so here is the straight version. When your alert condition is met, TradingView fires the webhook, and delivery to PickMyTrade's cloud is typically near-instant. PickMyTrade then processes your order in under 200ms on our side. That is the part we control and can state honestly.
Your total fill time, though, depends on more than us. It also depends on your broker's own execution speed, network latency between the services, and how quickly TradingView sends the alert in the first place. Those vary by broker, by account and by market conditions, so we do not promise a guaranteed end-to-end number. What you can count on is fast, consistent processing on our side and a clear log of exactly when each order was received and sent, so there is no guesswork.
Supported brokers and prop firms for webhook execution
The same TradingView webhook engine sends orders to eight brokers: Tradovate, Rithmic, Interactive Brokers, TradeStation, TradeLocker, ProjectX, Match-Trader and Tradier. Tradovate automation lives on pickmytrade.trade; the other brokers each have their own setup page on pickmytrade.io. Pick the broker you trade and follow its page to get your webhook URL.
Many traders run these webhooks on prop-firm and funded accounts. PickMyTrade connects to accounts on Tradovate, Rithmic and ProjectX, which many prop firms run on, including firms like Apex, Topstep and E8 Markets. One important note, stated plainly: copy trading and automation rules vary by prop firm and change over time. Routing your own TradingView alerts to your own funded accounts is treated differently by different firms, and policies shift. Always confirm your specific firm's current rules before you automate.
Webhook security best practices
A webhook URL is a live entry point to your account, so treat it with the same care as a password.
- Keep your webhook URL and token private. Do not post them in public forums, Discord screenshots, YouTube videos or shared Pine Script. Anyone with your URL and token could send alerts to your account.
- Never put broker credentials in the payload. Your broker username, password or API secrets should never appear in a TradingView alert message. They do not belong there and are not needed.
- Rely on PickMyTrade token authentication. PickMyTrade authenticates each alert with your account token, so the payload only ever needs trade details (symbol, side, size, risk), not login information.
- Rotate the token if it is ever exposed. If you think your URL or token leaked, regenerate it in PickMyTrade and update your alerts. The old one stops working.
- Test with small size first. Confirm the plumbing on a demo account or a single contract before you scale up.
Webhook vs email/SMS alerts vs manual trading
All three start with the same TradingView alert, but they end very differently:
- Manual trading: the alert tells you to act, then you switch to your broker and place the order yourself. It works, but it is slow, easy to miss when you step away, and prone to fat-finger mistakes.
- Email or SMS alerts: a notification lands in your inbox or phone. It is still just a message a human has to read and act on. It cannot place a trade, and by the time you have opened it, the price may have moved.
- Webhook automation: a structured JSON message goes straight to PickMyTrade the instant the alert fires, and the order is placed automatically. No reading, no clicking, no missed fills while you are asleep or at work.
For actually automating trades, the webhook is the only one of the three that removes the human bottleneck. Email and SMS are fine as a heads-up; they are not an execution method.
Common webhook errors and troubleshooting
When a webhook order does not go through, it is almost always one of a handful of causes. Here is how to spot and fix each:
- Malformed JSON. A stray comma, a missing quote or an extra bracket breaks the payload. Fix: regenerate the alert message in PickMyTrade and paste it fresh, rather than editing it by hand.
- Wrong symbol mapping. The symbol in the alert does not match a contract your broker recognizes. Fix: use the symbol format PickMyTrade shows for your broker, and check continuous vs front-month contracts.
- Plan or 2FA not enabled. A free TradingView plan, or an account without 2FA, cannot send webhooks at all. Fix: upgrade to a paid plan (Essential or higher) and turn on 2FA.
- Wrong or expired token. If the token in the payload is missing or old, PickMyTrade rejects the alert. Fix: copy the current token from PickMyTrade into your alert.
- Broker not connected or logged out. If your broker connection dropped, there is nowhere to send the order. Fix: reconnect the broker in PickMyTrade.
The fastest way to catch all of these is to fire a test alert on a 1-minute chart and read your PickMyTrade alert log, which shows exactly what came in and what happened next.
Webhook e alert di TradingView
A TradingView webhook is an automated HTTP POST message that TradingView sends to a URL you specify the instant an alert fires. The message carries a JSON payload describing the trade: the symbol, the side, the size, and optional stop-loss and take-profit. PickMyTrade receives that payload and places the matching order on your connected broker, so an alert becomes a live order with no manual clicks.
Per automatizzare gli avvisi di TradingView per il trading reale, hai bisogno di tre componenti:
- Account TradingView (piano Essential o superiore — i webhook richiedono un abbonamento a pagamento)
- Account broker (Tradovate, Rithmic, Interactive Brokers, TradeStation o altri)
- Piattaforma di automazione come PickMyTrade che collega i due
Il processo funziona tramite i webhook di TradingView: quando la tua strategia o il tuo indicatore attiva un avviso, TradingView invia un payload JSON all'URL del webhook di PickMyTrade. PickMyTrade elabora il segnale ed esegue l'ordine presso il tuo broker in circa 200 millisecondi. Non è richiesta alcuna programmazione: la piattaforma genera automaticamente il JSON dell'avviso per te.
Hai bisogno almeno del piano Essential di TradingView (12,95 $/mese con fatturazione annuale, o 14,95 $ mensile) per utilizzare i webhook nel trading automatizzato. I webhook non sono disponibili con il piano Basic gratuito.
Ecco cosa offre ogni piano per l'automazione:
- Essential (12,95 $/mese) — 20 avvisi attivi con webhook. Ottimo per 1-3 strategie su pochi simboli.
- Plus (24,95 $/mese) — 100 avvisi attivi. Ottimo per più strategie su molti simboli.
- Premium (49,95 $/mese) — 400 avvisi attivi. Ideale per i trader di prop firm che gestiscono molti account e simboli.
- Ultimate (99,95 $/mese) — 800 avvisi attivi. Per uso professionale/istituzionale.
Ogni avviso che invia un webhook alla tua piattaforma di trading automatizzato conta ai fini del limite di avvisi del tuo piano. Se automatizzi 5 simboli con avvisi di acquisto/vendita, sono 5 avvisi (non 10 — un avviso per simbolo gestisce entrambe le direzioni tramite la configurazione JSON).
No, non puoi utilizzare la funzione webhook di TradingView con il piano gratuito. I webhook — il meccanismo che consente il trading automatizzato — richiedono un abbonamento TradingView a pagamento:
| Piano | Prezzo/mese | Avvisi attivi | Webhook |
|---|---|---|---|
| Free / Basic | $0 | 1 | No |
| Essential | $12.95 | 20 | Sì |
| Plus | $24.95 | 100 | Sì |
| Premium | $49.95 | 400 | Sì |
| Ultimate | $99.95 | 800 | Sì |
Il piano Essential (12,95 $/mese) è sufficiente per la maggior parte dei trader automatizzati. Se esegui più strategie su molti simboli, valuta Plus o Premium per avere più slot per gli avvisi.
Soluzione alternativa per gli utenti gratuiti: Alcuni trader utilizzano servizi di inoltro da e-mail a webhook che convertono gli avvisi via e-mail di TradingView in chiamate webhook. Tuttavia, questo aggiunge una latenza significativa (oltre 30-60 secondi) ed è inaffidabile per il trading sensibile al tempo. Per un trading automatizzato serio, si consiglia vivamente un piano TradingView a pagamento.
PickMyTrade processes your order in under 200ms on our side. Delivery from TradingView to PickMyTrade is typically near-instant, but your total fill time also depends on your broker's execution speed, network latency, and how quickly TradingView sends the alert, so we do not promise a guaranteed end-to-end number.
Tradovate, Rithmic, Interactive Brokers, TradeStation, TradeLocker, ProjectX, Match-Trader and Tradier, eight brokers in total. Tradovate automation lives on pickmytrade.trade; the other seven brokers each have their own setup page on pickmytrade.io.
PickMyTrade connects to accounts on Tradovate, Rithmic and ProjectX, which many prop firms run on, including firms like Apex, Topstep and E8 Markets. Copy trading and automation rules vary by prop firm and change over time, so always confirm your firm's current policy before you automate.
La sicurezza dei webhook è fondamentale per il trading automatico. Ecco le migliori pratiche:
- Utilizza token univoci — PickMyTrade genera un token di autenticazione univoco per ogni account. Questo token è incluso in ogni payload del webhook e verificato lato server. Senza il token corretto, gli ordini vengono rifiutati.
- Non condividere mai pubblicamente l'URL del tuo webhook — La combinazione di URL del webhook + token è come una password per il tuo account di trading. Non pubblicarla su forum, Discord o social media.
- Utilizza solo endpoint HTTPS — Gli URL dei webhook di PickMyTrade utilizzano la crittografia HTTPS (https://api.pickmytrade.trade/v2/add-trade-data), garantendo che i dati siano crittografati durante il transito.
- Rigenera periodicamente i token — Se sospetti che il tuo URL del webhook o il token siano stati compromessi, genera nuove credenziali di alert in PickMyTrade.
- Non includere dati sensibili negli alert — Non inserire mai password del broker, chiavi API o informazioni personali nei messaggi di alert di TradingView.
Fatto chiave sulla sicurezza: Le piattaforme di automazione come PickMyTrade sono non custodial — possono eseguire operazioni per tuo conto ma non possono prelevare fondi dal tuo account del broker. Il tuo denaro rimane al sicuro presso il tuo broker in ogni momento.
No, non hai bisogno di un tuo server per il trading automatico basato su webhook. Le piattaforme cloud come PickMyTrade gestiscono per te tutta l'infrastruttura server:
- PickMyTrade funziona nel cloud 24 ore su 24, 7 giorni su 7 — il tuo computer non deve essere acceso
- TradingView invia gli alert via webhook dai suoi server ai server di PickMyTrade
- PickMyTrade elabora il segnale e invia gli ordini ai server del tuo broker
- L'intera catena (TradingView → PickMyTrade → Broker) opera nel cloud
Eccezione: L'automazione di Interactive Brokers richiede che TWS (Trader Workstation) sia in esecuzione su un computer o VPS. Per IB, avresti bisogno di un VPS come QuantVPS (20-50 $/mese) per mantenere TWS in funzione 24 ore su 24, 7 giorni su 7.
Per tutti gli altri broker (Tradovate, Rithmic, TradeStation, ProjectX, TradeLocker, ecc.), non è richiesto alcun server, nessun VPS e nessun computer sempre acceso.
Gli alert via webhook e gli alert via email sono due metodi di notifica in TradingView, ma servono a scopi molto diversi per il trading automatico:
| Caratteristica | Alert via webhook | Alert via email |
|---|---|---|
| Velocità di consegna | ~50 ms (quasi istantanea) | 10-60+ secondi |
| Formato | JSON (dati strutturati) | Testo semplice |
| Affidabilità | HTTP POST diretto | Soggetto a ritardi del server di posta/filtri antispam |
| Automazione | Connessione diretta alle piattaforme di automazione | Richiede un relay da email a webhook |
| Piano TradingView | Essential (12,95 $/mese) o superiore | Disponibile nel piano gratuito |
| Ideale per | Trading automatico | Solo notifiche personali |
Per il trading automatico, utilizza sempre i webhook. La sola differenza di velocità (50 ms contro 10-60 secondi) può fare la differenza tra una buona esecuzione e uno slippage significativo, soprattutto nei mercati dei futures che si muovono rapidamente.
TradingView ha capacità native di trading automatico limitate. Offre un pannello broker integrato che si collega direttamente ad alcuni broker (come Tradovate e TradeStation), ma questo consente solo l'inserimento manuale degli ordini dai grafici — non esegue automaticamente gli avvisi di strategia.
Per una vera esecuzione automatizzata delle operazioni — in cui gli avvisi della tua strategia di TradingView inseriscono automaticamente gli ordini presso il tuo broker senza intervento manuale — hai bisogno di una piattaforma di automazione di TradingView di terze parti. Queste piattaforme utilizzano la funzione webhook di TradingView per ricevere gli avvisi e instradarli al tuo broker.
Tra i strumenti di automazione di TradingView più diffusi ci sono:
- PickMyTrade — 50 $/mese, 9 broker, configurazione senza codice, esecuzione in meno di 200 ms
- TradersPost — 250 $/mese per strategie illimitate
- Autoview — Basato su un'estensione di Chrome (richiede che il computer sia acceso)
No, TradingView non supporta in modo nativo l'esecuzione completamente automatizzata delle operazioni. Sebbene TradingView disponga di un pannello di integrazione con i broker integrato che ti consente di collegare account di broker selezionati, fornisce solo un'interfaccia di trading all'interno del grafico — devi comunque fare clic manualmente per inserire gli ordini.
TradingView supporta i webhook, che sono il fondamento del trading automatizzato. Quando si attiva un avviso, TradingView può inviare una richiesta HTTP POST a un URL specificato. Piattaforme di terze parti come PickMyTrade ricevono questi webhook ed eseguono automaticamente le operazioni presso il tuo broker. Questo è il metodo standard per automatizzare le strategie di TradingView, utilizzato da migliaia di trader.
La funzione webhook richiede un piano TradingView a pagamento (Essential a 12,95 $/mese o superiore).
Gli avvisi di TradingView sono notifiche che si attivano quando si verifica una condizione di prezzo, un segnale di un indicatore o un evento di strategia. Possono notificarti tramite un pop-up, un'e-mail, una notifica push mobile o un webhook. Di per sé, gli avvisi non inseriscono operazioni — ti informano semplicemente che è accaduto qualcosa.
Il trading automatizzato fa un passo in più: quando si attiva un avviso, un sistema esegue automaticamente un'operazione sul tuo conto broker senza alcuna azione manuale. La differenza fondamentale:
- Solo avvisi = Ricevi una notifica → Accedi manualmente al tuo broker → Inserisci manualmente l'ordine
- Trading automatizzato = L'avviso si attiva → Il webhook invia il segnale alla piattaforma di automazione → L'ordine viene inserito automaticamente presso il tuo broker in pochi millisecondi
Per colmare il divario tra gli avvisi e l'esecuzione automatizzata, hai bisogno di una piattaforma di automazione di TradingView come PickMyTrade che riceve gli avvisi webhook e li converte in ordini reali presso il broker. Questo consente un trading a mani libere 24/7 basato sulle tue strategie di TradingView.
Sebbene sia tecnicamente possibile utilizzando servizi di terze parti di inoltro da e-mail a webhook, l'automazione basata su e-mail non è consigliata per il trading reale. Ecco perché:
- Latenza: La consegna delle e-mail richiede oltre 10-60 secondi rispetto alla consegna tramite webhook in ~50 ms
- Affidabilità: Le e-mail possono essere ritardate da filtri antispam, problemi del server o limitazioni della frequenza
- Operazioni mancate: I server di posta non hanno un tempo di consegna garantito, quindi i segnali sensibili al tempo possono arrivare troppo tardi
- Nessun supporto nativo per JSON: Le e-mail inviano testo semplice, il che richiede un'analisi aggiuntiva che può fallire
Per un trading automatizzato con TradingView affidabile, i webhook sono lo standard del settore. Il piano Essential di TradingView (12,95 $/mese) sblocca i webhook — un piccolo investimento rispetto al costo potenziale di operazioni mancate o ritardate dovute all'automazione basata su e-mail.
Con PickMyTrade, l'automazione basata su webhook offre un'esecuzione end-to-end in circa 200 millisecondi, dall'avviso all'ordine presso il broker.
Sì, puoi inviare lo stesso avviso di TradingView a più account broker simultaneamente. Con la funzione di trading multi-account di PickMyTrade, un singolo webhook di avviso di TradingView può eseguire operazioni su:
- Più account sullo stesso broker (ad esempio, 10 sotto-account Tradovate)
- Più account su broker diversi (configurando avvisi su entrambi gli URL webhook di PickMyTrade)
- Account di prop firm con dimensionamento delle posizioni e impostazioni di rischio individuali per account
L'avviso JSON include un array multiple_accounts in cui specifichi il token di ciascun account, il nome della connessione e il moltiplicatore di quantità. Tutti gli account ricevono ed eseguono l'operazione simultaneamente.
Questo è particolarmente apprezzato dai trader di prop firm che gestiscono da 5 a oltre 20 account finanziati e devono copiare la stessa strategia su tutti da un singolo avviso di TradingView.
Se un webhook fallisce, l'esito dipende dal tipo di guasto verificatosi e da quando è avvenuto:
- Il webhook di ingresso fallisce — Non viene eseguita alcuna operazione. Le tue posizioni esistenti non sono influenzate. Semplicemente perdi il segnale di ingresso.
- Il webhook di uscita fallisce — Questo è più grave. Se hai una posizione aperta e il segnale di uscita non viene consegnato, la tua posizione rimane aperta. Ecco perché è fondamentale configurare ordini di stop loss e take profit al momento dell'ingresso (ordini bracket): questi ordini risiedono sul server del broker e vengono eseguiti indipendentemente dallo stato del webhook.
- Guasto parziale — Se un webhook multi-account fallisce parzialmente, alcuni account potrebbero eseguire mentre altri no, causando disallineamenti nelle posizioni.
Come proteggerti:
- Imposta sempre SL/TP come ordini bracket collegati al tuo ingresso: vengono eseguiti lato broker indipendentemente dai webhook
- Monitora regolarmente il Registro Alert di PickMyTrade e le posizioni su Tradovate
- Imposta limiti di perdita giornaliera come rete di sicurezza
- Utilizza le impostazioni sugli orari di trading di PickMyTrade per chiudere automaticamente tutte le posizioni a fine giornata
Sì — puoi usare simboli continui come ES1! o MNQ1! con l'automazione via webhook di PickMyTrade. Quando usi un simbolo continuo sul tuo grafico di TradingView, PickMyTrade lo mappa automaticamente sul contratto negoziabile del mese anteriore in vigore presso il tuo broker (ad es. ES1! viene mappato sull'ESU2026 o ESZ2026 attivo). PMT gestisce anche il rollover automaticamente, passando al nuovo contratto del mese anteriore circa quattro giorni prima della scadenza.
Come funziona:
- Simboli continui (ES1!, MNQ1!, GC1!): PickMyTrade li mappa automaticamente sul contratto del mese anteriore in vigore — nessun cambio manuale del grafico necessario al rollover.
- Rollover automatico: PMT passa al nuovo contratto del mese anteriore circa 4 giorni prima della scadenza, e ricevi una notifica 6 giorni prima della scadenza così puoi gestire le posizioni aperte.
- Mese di contratto specifico: Se vuoi operare su un contratto particolare (ad es. ESZ2026 invece del mese anteriore), inserisci semplicemente quel simbolo esatto quando generi il tuo alert nella sezione Genera Alert di PickMyTrade: il simbolo che inserisci lì è quello che viene inviato al tuo broker.
Buona pratica: usa i simboli continui sul tuo grafico di TradingView per un'automazione senza interruzioni — PMT gestisce la mappatura e il rollover per te. Se hai bisogno di un contratto specifico diverso dal mese anteriore, selezionalo manualmente durante la generazione dell'alert in PickMyTrade.
Il trading automatico senza codice è ora accessibile a tutti grazie a piattaforme visive che eliminano la necessità di programmare. Ecco la procedura passo dopo passo:
- Scegli una strategia su TradingView — Sfoglia la libreria di Script della Community di TradingView con oltre 100.000 indicatori e strategie gratuiti. Scelte popolari: incrocio di EMA, divergenza RSI, Supertrend, strategie con bande di Bollinger e segnali MACD. Nessuna programmazione in Pine Script necessaria: aggiungi semplicemente l'indicatore/la strategia al tuo grafico.
- Registrati su PickMyTrade — Crea un account gratuito su pickmytrade.com (prova gratuita di 5 giorni, senza carta di credito)
- Collega il tuo broker — Inserisci le credenziali del tuo broker. PickMyTrade supporta Tradovate, Rithmic, Interactive Brokers, TradeStation, ProjectX, TradeLocker e altri.
- Configura le tue impostazioni visivamente — Utilizza menu a tendina e campi di inserimento per impostare: dimensione della posizione, tipo di stop loss (in dollari, percentuale o punti), livelli di take profit, trailing stop loss e tipo di ordine.
- Clicca su «Genera Alert» — PickMyTrade crea automaticamente il codice JSON del webhook.
- Incolla in TradingView — Due operazioni di incollaggio: il codice JSON nel messaggio dell'alert, l'URL del webhook nelle impostazioni di notifica. Clicca su «Crea Alert».
Tutto qui — zero programmazione, zero configurazione di API, zero gestione di server. La tua strategia di TradingView ora esegue automaticamente le operazioni sul tuo broker 24 ore su 24, 7 giorni su 7.
Creare un bot di trading automatizzato di TradingView senza programmazione è semplice con le moderne piattaforme senza codice:
- Scegli la tua strategia su TradingView — Usa qualsiasi indicatore o strategia dalla libreria di TradingView di oltre 100.000 script della community, oppure applica indicatori integrati come l'incrocio di medie mobili, RSI, MACD, bande di Bollinger, ecc.
- Registrati a una piattaforma di automazione — PickMyTrade offre una prova gratuita di 5 giorni senza carta di credito
- Collega il tuo broker — Collega il tuo account Tradovate, Rithmic, Interactive Brokers o un altro broker supportato
- Configura le impostazioni del tuo bot — Imposta la dimensione della posizione, lo stop loss, il take profit e il trailing stop tramite il pannello visivo (senza codice)
- Genera l'avviso — Fai clic su "Generate Alert" e PickMyTrade crea automaticamente il codice JSON
- Incolla in TradingView — Copia il JSON nel messaggio del tuo avviso e l'URL del webhook nelle impostazioni di notifica di TradingView
Il tuo bot di trading senza codice è ora attivo. Ogni volta che la tua strategia di TradingView segnala un acquisto o una vendita, l'operazione viene eseguita automaticamente presso il tuo broker. Nessun Python, nessuna chiave API, nessuna gestione del server richiesta.
Le migliori piattaforme di trading automatico senza codice nel 2026 per gli utenti di TradingView:
| Piattaforma | Prezzo | Broker | Ideale per |
|---|---|---|---|
| PickMyTrade | 50 $/mese | 8 broker (Tradovate, Rithmic, IB, TradeStation, ProjectX, TradeLocker, Match Trader, Tradier) | Trader di futures, prop firm, multi-account |
| TradersPost | 49-250 $/mese | Tradovate, IB, Alpaca, TradeStation | Automazione di azioni e futures |
| Autoview | 10-30 $/mese | Exchange crypto | Automazione solo crypto |
| WunderTrading | 10-90 $/mese | Exchange crypto | Trading con bot crypto |
PickMyTrade si distingue perché supporta la più ampia gamma di broker al prezzo illimitato più basso (50 $/mese per tutto illimitato), ha una velocità di esecuzione inferiore a 200 ms e include funzionalità come la copia delle operazioni multi-account e il supporto per le prop firm che i concorrenti fanno pagare a parte.
La transizione più fluida dal trading manuale a quello automatico segue queste fasi:
Fase 1: Documenta la tua strategia (1 settimana)
- Annota le tue regole esatte di ingresso, uscita e gestione del rischio
- Trova (o crea) un indicatore/una strategia di TradingView che corrisponda alle tue regole
- Verifica che i segnali dell'indicatore corrispondano ai momenti in cui entreresti/usciresti manualmente
Fase 2: Backtesting (1 settimana)
- Esegui lo Strategy Tester di TradingView con la tua strategia
- Controlla le metriche: percentuale di successo, drawdown massimo, profit factor su oltre 2 anni di dati
- Regola le impostazioni se necessario (timeframe, parametri dell'indicatore)
Fase 3: Paper trading automatico (2-4 settimane)
- Configura PickMyTrade con un account demo/di paper trading
- Lascia che l'automazione funzioni per 2-4 settimane
- Confronta i risultati automatici con ciò che avresti fatto manualmente
- Verifica l'esecuzione degli ordini, il posizionamento di SL/TP e il timing
Fase 4: Passa al reale con una dimensione ridotta (2-4 settimane)
- Inizia con 1 microcontratto (MNQ o MES)
- Monitora quotidianamente, ma non interferire con l'automazione
- Traccia le prestazioni rispetto alle aspettative del backtest
Fase 5: Scala
- Aumenta gradualmente la dimensione della posizione man mano che acquisisci fiducia
- Aggiungi altri simboli, strategie o account
Il backtesting è essenziale prima di automatizzare qualsiasi strategia di trading. TradingView dispone di uno Strategy Tester integrato che semplifica questa operazione:
- Aggiungi una strategia al tuo grafico (non un indicatore — solo le strategie dispongono di backtesting integrato)
- Apri la scheda Strategy Tester nella parte inferiore del tuo grafico
- Esamina le metriche chiave: profitto netto, drawdown massimo, tasso di successo, profit factor, rapporto di Sharpe
- Testa su diversi intervalli temporali e periodi di date per verificare la robustezza
- Considera le commissioni: nelle impostazioni della strategia, imposta valori di commissione realistici (ad esempio, 0,35 $/contratto per i micro futures su Tradovate)
Considerazioni importanti sul backtesting:
- I risultati del backtesting non sono garanzie delle prestazioni reali
- Considera sempre lo slippage — aggiungi 1-2 tick a ogni operazione nelle tue impostazioni di backtesting
- Testa con almeno 2 anni di dati per catturare diverse condizioni di mercato
- Attenzione all'overfitting — se la tua strategia ha troppi parametri, potrebbe essere sovra-adattata ai dati storici
- Dopo il backtesting, fai paper trading per 2-4 settimane utilizzando un account demo prima di passare al reale
Con PickMyTrade, puoi fare paper trading della tua strategia automatizzata su un account demo Tradovate prima di rischiare capitale reale. Questo verifica che i tuoi avvisi, la configurazione JSON e la connessione webhook funzionino tutti correttamente.
Keep exploring
Esplora altri argomenti delle FAQ
Start free: turn your TradingView alerts into real orders
You can set up TradingView webhook automation and see it place a real order before you pay anything. PickMyTrade includes a 5-day free trial with no credit card required. After the trial it is $50 per month or $500 per year, which includes unlimited tickers and works with demo, live and prop-firm accounts.
No credit card required. 10,000+ traders, 5M+ trades placed.