Can TradingView trade automatically by itself?
TradingView strategies can simulate and backtest orders. TradingView’s own help center currently distinguishes that from automated strategy trading with a brokerage account. TradingView can, however, send webhook alerts to an external HTTPS endpoint. That makes it possible to connect a strategy event to an external execution system.
The practical automation chain
A typical workflow is: your Pine Script strategy or indicator creates the condition, TradingView triggers an alert, the alert sends a webhook, a connector validates and routes the message, and the execution component submits the instruction to the trading platform. With NRUNO, that route is TradingView → NRUNO Cloud → NRUNO cBot → cTrader.
What the alert should contain
The message should identify the intended action clearly. Depending on the setup this can include buy, sell, close, symbol, volume or risk, plus optional stop-loss and take-profit values. Broker passwords or other sensitive credentials should never be placed in the webhook body.
What happens after the entry
You can keep sending your own TradingView exits. Alternatively, the NRUNO cBot can apply local SL/TP, break-even, Fixed Distance trailing, 3-Step Pip trailing, FVG Structure or Hybrid Pip + FVG according to your settings.
How to test automation safely
Start in Paper Mode. Verify the alert event, exact message, symbol mapping, volume, spread filters, timing and exit behaviour. Only switch to Live when the same case behaves predictably. Automation can route instructions, but it cannot guarantee fills, liquidity or broker acceptance.