Low-Latency Execution
Optimized routing pipeline: alert in, order out — with clear status updates and detailed error codes.
Trade | IF connects TradingView strategies with TopstepX and executes orders automatically — with risk controls, detailed logs, and full transparency. More brokers coming soon.
Disclaimer: Trading involves significant risk. This website is a product presentation and does not constitute financial advice.
Everything you need to turn signals cleanly into trades — no chaos, no guesswork.
Optimized routing pipeline: alert in, order out — with clear status updates and detailed error codes.
Guards for max loss, position limits, daily limits, slippage/spread rules, and session windows.
Every step is logged: alert payload, validation, broker request, response, and errors.
Built-in filter against duplicate alerts and repeated signals — prevents accidental double orders.
Webhook signatures, IP allowlist, token rotation, least-privilege API keys, and a kill switch.
Map TradingView alerts to order types, TIF, OCO/bracket logic, and broker-specific fields.
3 clear steps from TradingView alert to broker order — with full control and transparency.
After registration, connect your first broker to Trade | IF.
Use webhooks to send a structured payload (symbol, side, quantity, rules).
The order is placed via the broker API. You get real-time status, logs, and error details.
Start with TradingView and expand based on your broker and account setup.
{
"symbol": "{{ticker}}",
"date": "{{timenow}}",
"data": "buy",
"quantity": "1",
"price": "{{close}}",
"tp_ticks": 16,
"sl_ticks": 8,
"token": "YOUR_TOKEN",
"close_open_orders": false
}
"order_type": "limit" — the price field will then be used as the limit price.
Tell us which broker you need — we prioritize integrations based on demand.
Select Broker
Or enter a custom broker
Simple entry, clear limits.
Quick answers to the most important questions.
Each connection receives a unique webhook URL. The token in the alert payload is compared server-side as an HMAC hash — the plain-text token is never stored or logged. In addition, the email address must be verified and the subscription must be active. Individual connections can be disabled at any time.
TopstepX is fully supported. More brokers (Tradovate, Rithmic, and others) are coming.
Market orders are executed by default — for limit orders simply add order_type: "limit" and a
specific price to the payload. Take-profit and stop-loss can be attached directly to the
entry as bracket orders via tp_ticks / sl_ticks.
On API failures the error is immediately logged and you receive a clear error code — there are intentionally no automatic retries, since duplicate market orders in futures trading can be severe. A built-in duplicate filter protects against repeated alerts: identical signals (same broker, symbol, side, and quantity) within 30 seconds are automatically ignored and marked as duplicates in the webhook log.
No. This is purely execution and automation software. You decide on strategy, risk, and position sizing.