No code to write
A strategy is a URL that accepts a POST. TradingView's default alert placeholders are enough — no SDK, no client library, no OAuth flow to implement.
Any HTTP client worksTradovate API
Most people searching for the Tradovate API want one of two things: to place orders from their own code, or to stop placing them by hand. The API answers the first. It is a lot of work to answer the second, and this page is honest about which one you are.
Tradovate exposes a REST API for account and order operations and a WebSocket feed for real-time events. You authenticate, hold a session, place and manage orders, and receive execution reports as they happen.
It is a competent, documented API and there is nothing wrong with building on it. If you want to write your own execution layer, want full control over order types and lifecycle, or are building something Quanify does not do, go and build it — this page is not going to pretend that is a mistake.
What is worth knowing before you start is which parts take an afternoon and which parts take a month.
Placing an order is genuinely simple. Everything around it is where the time goes, and none of it is visible from the documentation's first page.
Quanify authenticates over OAuth and holds one WebSocket session per connection, server-side. Every funded sub-account under a login is addressed individually, contract resolution is cached with the expiry understood, and copies are triggered by the execution report rather than by polling a position summary.
The failure cases above are handled as named states rather than as retries. A revoked token re-authenticates instead of looping. Dead HTTP/2 connections are evicted rather than reused. Executions are de-duplicated inside a 60-second window per account, keyed on the execution — never on the order, so a partial is never mistaken for a duplicate.
If what you want is orders placed from a TradingView alert, or one account mirrored to several, this is the same work you were about to do, already done and already running somewhere that does not sleep.
A strategy is a URL that accepts a POST. TradingView's default alert placeholders are enough — no SDK, no client library, no OAuth flow to implement.
Any HTTP client worksThe connection is held server-side and re-established when it drops. There is nothing on your machine whose crash you find out about from a position you did not expect.
Nothing to keep awakeYou keep the strategy. Quanify is the execution layer, not the decision layer — it never decides what to trade.
Bring your own ruleGenuinely, sometimes. Build against the API directly if you need order types or lifecycle control beyond entry, exit and size. Build it if your logic has to react to the order book rather than to your own fills. Build it if the thing you are making is a product rather than a workflow.
Do not build it because the first example in the docs looked easy. The example is easy. The session that has to survive a Tuesday is not, and that is the part you will still be working on in six weeks.
Yes — a REST API for accounts and orders, plus a WebSocket feed for real-time events including execution reports. It is documented and open to Tradovate account holders.
No. Quanify connects to Tradovate over its API on your behalf, so a TradingView alert with a webhook URL is enough to place live orders. Writing against the API yourself is an option, not a requirement.
Not placing orders — that part is straightforward. The time goes into session lifecycle (tokens expire and get revoked), contract resolution across front-month rolls, handling multiple execution reports per order, and keeping the process alive somewhere that is not your laptop.
A prop-firm Tradovate login usually holds several funded sub-accounts, and each is addressable individually through the API. Treating the sub-account rather than the login as the unit is what makes per-account sizing possible.
Yes, directly and over OAuth — no third-party bridge sits in between. Fills arrive as broker execution events rather than as screen-scraped state.
Yes. Anything that can send an HTTP POST can drive a Quanify strategy, so your own script can be the signal source while Quanify handles the broker session, sizing and risk checks.
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.