It has one alert, not five accounts
An alert is a message, not a router. It has no concept of your evaluation account being smaller than your funded one, because it has never seen either.
Sizing happens after the alertTradingView
TradingView is where the decision gets made. It is not where the order gets placed, and it does not know how many accounts you are running. Quanify is the part in between: your alert arrives once and lands on every account, each at its own size.
Both are supported and they are worth separating, because the setup is different.
Alert to accounts. A PineScript strategy fires an alert. That alert becomes real orders across every account you have attached, sized per account. No one is at the desk. This is the automation path.
Chart to accounts. You trade manually from the TradingView chart into your broker, and your other accounts mirror the fill. TradingView is your order ticket; the copier follows what your broker reports. This is the Copy Trader path.
The difference is where the signal comes from — a rule you wrote, or your own hand. Everything downstream of that is identical.
Each strategy in Quanify gets its own webhook URL. You paste it into the TradingView alert's webhook field and put a small JSON body in the message. There is no SDK, no plugin, and nothing to install on the chart.
TradingView's own alert placeholders are enough — the strategy's action, the ticker, and the contract count come straight from the alert. The Webhook Setup panel builds the exact body for you, already matching that strategy's settings, so it is a copy and a paste rather than a format to learn.
{
"action": "{{strategy.order.action}}",
"ticker": "{{ticker}}",
"contracts": "{{strategy.order.contracts}}",
"price": "{{strategy.order.price}}",
"market_position": "{{strategy.market_position}}"
}The token in the URL is the credential, so treat it like a password: not in a public chart, not in a screenshot, not in a shared repository. If you want a second factor, set a webhook password on the strategy and include it in the body.
TradingView fires the alert from its own servers, so the alert itself does not need your machine. The part that usually does is whatever receives it — a desktop bridge, a local script, a bot on a VPS.
Quanify receives the webhook and holds every broker connection itself. Nothing is installed, nothing has to stay awake, and the alert that fires at 3am reaches your accounts whether or not your laptop is open.
That also removes an entire class of failure that is hard to notice: a bridge that silently stops does not tell you, and you find out from a position you did not expect — or from one you expected and do not have.
Quanify never closes a position on your behalf. Turning a strategy off stops new orders; it does not flatten you.
Worth being clear about the division of labour, because it explains why this piece exists at all.
An alert is a message, not a router. It has no concept of your evaluation account being smaller than your funded one, because it has never seen either.
Sizing happens after the alertTradingView knows what the strategy intended. Your broker knows what actually happened, including partials and rejections. The copier works from the second one.
Execution events, not chart stateAttach the strategy to a simulated or evaluation account first and let it run through real sessions. Every part of the configuration — the webhook, the sizing, the caps, the alerts — is identical when you later attach a funded account.
Quanify also has built-in paper accounts that fill from your strategy's own signals, with commission and slippage you set. They are useful for watching how a strategy behaves across a week without spending an evaluation to find out.
Not by itself — a TradingView alert is a message, not a router, and it has no knowledge of your accounts. Quanify receives the alert and places one sized order per account, so a single alert becomes trades on every account you have attached.
Create a strategy in Quanify, copy its webhook URL into the TradingView alert's webhook field, and paste the JSON body the Webhook Setup panel generates. Quanify holds the broker connection, so there is nothing to install and no bridge to keep running.
Anything in TradingView that can fire an alert with a webhook can drive it, which includes strategies and indicators. The body needs to carry the action and the contract count; TradingView's own placeholders supply both.
No. TradingView fires the alert from its servers and Quanify receives it on its own, so there is no machine of yours in the path. Setups that use a desktop bridge do generally need a VPS.
Duplicate protection is applied per execution inside a 60-second window per account, so a repeat lands once. Partial fills are handled separately and are never mistaken for duplicates, because the de-duplication is keyed on the execution rather than the order.
Yes. Trade the leader account however you like — TradingView, the broker's own platform, a phone. The copier works from your broker's execution report, so it does not care which front end placed the order.
Connect a sim or evaluation account and run the whole product against it before you point anything at live money. Nothing about the setup changes when you do.