Direct broker integration vs automated execution
A direct broker integration may let you place supported orders from TradingView’s interface. That does not automatically mean a Pine strategy can send simulated orders to the live account. For automation, you need a defined path from the strategy event to the broker-side execution platform.
The webhook route
TradingView can send an HTTP POST when an alert triggers. A connector can receive the message, validate it and pass an instruction to the execution platform. NRUNO uses this model for cTrader: TradingView → webhook → NRUNO Cloud → cBot → cTrader.
The broker is reached through the execution platform
NRUNO does not independently integrate every broker API. Its current route is based on cTrader. Compatibility therefore depends on whether the account you want to trade is available in a compatible cTrader environment.
Symbol and volume differences matter
A TradingView symbol may not match the broker’s cTrader symbol exactly. Brokers can also impose different volume steps, minimum sizes, stop distances and market hours. These rules must be tested with the actual account.
Keep credentials out of webhooks
Webhook messages should contain trading instructions, not account passwords. TradingView’s guidance warns against including sensitive information in webhook bodies.