Skip to content

About

We are new, and we build exactly one thing: order replication.

QuantGrid is built and operated by Tristack Technologies LLP, registered in Delhi. It mirrors an order from your master account into every linked account in under 50 milliseconds, with your own multiplier on each one. There is no company history worth telling yet, so this page is the next most useful thing: what we decided to build, why we decided it that way, and what we will not do.

3 brokers liveSub-50ms medianStatic IP per accountEquity and F&O on NSE, BSE, NFO and BFO

The problem

The gap between master filled and child filled is where the money goes.

Anyone running the same strategy across more than one account has done this by hand. The master order fills, you switch logins, retype the symbol, adjust the quantity, place it again, and repeat. It works, right up until the day it does not.

Slow

Hands cost you the price

By the time the third account is placed, the tape has moved. On a fast open the spread between your first account and your last one is not a rounding error, and it is charged to you every single time.

Error prone

Hands make expensive mistakes

A quantity typed with an extra zero. A leg missed entirely because a phone rang. An order placed twice after a page reload. Each one is a real position that now has to be unwound at whatever the market is doing.

Tooling

The tools were the other problem

What exists is either built for people who enjoy configuration screens, or priced as though replication were a luxury. It is neither. It is plumbing, and plumbing should be boring, dependable and inexpensive.

So we built the plumbing. One master order in, every linked account out, each with its own multiplier and its own lot rounding, and a log afterwards that tells you exactly what happened and when.

Engineering positions

What we chose to build, and why we chose it that way.

These are decisions rather than features. Each one costs us something to hold, and each one is the reason a particular category of failure does not reach your account.

Replicate from the order event, not from a screen

QuantGrid subscribes to your broker's order-update stream and reads the same event the broker publishes: order id, status, filled quantity, product, symbol, exchange. Nothing is scraped from a rendered page, nothing is inferred from a screenshot, and nothing depends on a browser tab staying open on your laptop. If your machine goes to sleep at 10:14, replication does not.

Cost: one adapter per broker, written and maintained by hand

Normalise every broker down to one internal event

Zerodha, Angel One and FYERS describe the same order in three different vocabularies. Side is a string in one and an integer in another. Symbols and product codes do not match. We convert all of it into a single internal shape before anything is replicated, which is what makes a Zerodha master driving a FYERS child an ordinary case rather than a special one.

NSE:RELIANCE becomes NSE:RELIANCE-EQ · MIS becomes INTRADAY · NRML becomes MARGIN

Duplicate prevention is a correctness problem, not a retry setting

A reconnect, a retried HTTP call and a repeated event all look identical from the outside, and any of them can place a second child order into a live market. QuantGrid runs three independent checks before an order reaches a broker: a marker key on the event, a lock held per account and symbol, and a uniqueness constraint in the database. Any one of them alone would usually be enough. Three is what makes the word usually unnecessary.

Independent layers: 3

Round quantities down, never up

Child quantity is the master quantity multiplied by your copy factor, floored to a whole lot, then capped by the maximum you set. When the multiplier lands between two lots we take the lower one. An exchange rejects a partial lot outright, so rounding up would either fail the order or trade size your multiplier never asked for. A slightly smaller position is the cheaper mistake, and we take the cheaper mistake every time.

child_qty = floor_to_lot(master_qty × copy_factor)

Rounding: down, always

A dropped socket is not an outage

The WebSocket is the primary path because it is the fastest one. It is not the only one. If a socket drops, REST order-book polling takes over automatically and replication carries on while the connection is rebuilt, then hands back when it returns. Both paths run through the same duplicate checks, so the handover cannot double-place an order and you are not asked to do anything about it.

Fallback: REST order book, automatic, no operator action

Run through the trading day, not around the clock

QuantGrid runs from 8:00 AM to 5:00 PM IST on NSE and BSE trading days. Outside those hours, and at weekends and exchange holidays, the platform is taken offline for maintenance and to keep running costs down. There is nothing to replicate while the exchanges are shut, a cloud server bills by the hour whether or not anything is running on it, and not paying for those hours is part of how the price stays where it is. The decision has a consequence, and we would rather print it here than have you find it out the hard way. Place your orders while the platform is up. An order placed on the master account outside the hours above, including an after-market (AMO) order, is not replicated at all: it is already on the order book by the time the engine starts, so it is treated as history rather than as a new order, and a later fill on it does not replicate either.

Uptime: 99.9% during NSE and BSE market hours · Live status at quantgrid.in/status

Every account gets its own static IP, never a shared pool

Broker APIs care where a request comes from. On a shared pool your API traffic sits behind the same address as strangers, and their behaviour becomes your problem. Every QuantGrid account gets a static IP reserved to it alone. It is the headline piece of infrastructure here, and it is also the only thing that separates our two price tiers.

Shared with: nobody

The full mechanics, event by event, are written up in how it works, and the operational side of it in security.

Boundaries

QuantGrid is a technology platform, not an investment adviser.

That is a boundary we designed around, not a line of fine print at the bottom of a page. Here is what it rules out, plainly.

  • No advice, tips, calls, or buy and sell recommendations. We hold no opinion on any security and publish none.
  • No signals to follow. You choose the master account yourself, and you set every multiplier and limit that acts on it.
  • No managed accounts. The software executes the replication rules you configured and nothing else, never at our own discretion.
  • No profit sharing, and no assured, indicative or projected returns of any kind.
  • We never hold, receive or handle your funds or securities. They stay with your SEBI-registered broker throughout.

Registration status

QuantGrid is not registered with the Securities and Exchange Board of India (SEBI) in any capacity: not as an Investment Adviser, not as a Research Analyst, and not as a Portfolio Manager.

We say it here rather than burying it, because if any of the five points above matter to what you were hoping to buy, you should find that out on this page and not after paying us.

Pricing

One charge: the dedicated IP each broker account needs.

There is no platform fee and no tier: every feature, on every live broker, comes with the dedicated static IP. The IP is priced per broker account because that is how the cost lands on us: every account you connect needs its own whitelisted address, and IPv4 costs more than IPv6 because IPv4 addresses are the scarcer resource. We would rather print that plainly than bury it inside a tier table.

Dedicated static IPv6

₹499per 30 days

+ 18% GST


per broker account

The lower price, where your broker's API accepts IPv6.

Dedicated static IPv4

₹799per 30 days

+ 18% GST


per broker account

The safe default, accepted by every broker API today.

  • No per-child software surcharge. There is no software fee to move with the number of accounts you run. Adding a broker account adds only its own dedicated IP.
  • Not feature gated. All 10 items on the feature list come with the IP. There is no higher tier holding something back.
  • Prepaid, no lock-in. Each IP renews every 30 days from a wallet balance you top up, and releasing an address stops its renewals. That balance is non-refundable and non-transferable, as the refund policy sets out.

Roadmap

Where we are going, stated as roadmap and not as product.

None of the following is live today. Read it as a plan you can hold us to, not as something you are paying for. If you need one of these to be real before you commit, tell us and we will give you an honest date or tell you we do not have one.

In development

More brokers

Groww, Upstox, Dhan adapters are being built against their published APIs. When one reaches production it appears on the brokers page marked live, and not a day before.

Designed, not built

Reconciliation and rebalance

Drift detection between a master and its children, a preview of the correcting orders, and a manual confirm step before anything is sent. Automatic rebalancing is not on the list: an unattended engine resizing live positions is not something we want to ship.

Partially shipped

Richer reporting

The audit trail exists today and is complete. What is still missing is the comfortable version of it: scheduled Excel exports, per-relationship summaries, and a longer retention window you can query without asking us.

Live today, and only these three: Zerodha (Kite Connect v3), Angel One (SmartAPI), FYERS (API v3). The brokers page is the single place we mark something live, and it changes on the day the adapter ships. None of this widens what we replicate: Commodities (MCX) and currency (CDS and BCD) are not supported.

Contact

How to reach us

Email reaches a person who works on the product. There is no ticket maze in front of that, and inside support hours someone is watching the desk.

Registered entity

Tristack Technologies LLP

B-35, Vinoba Kunj ApartmentsSector 9, RohiniDelhi 110085India
LLPIN
ACP-3743
GSTIN
07AAYFT2516N1ZF

Tristack Technologies LLP was founded in 2025 and is the legal entity behind the QuantGrid brand: the party you contract with, the party that raises your GST invoice, and the party named in the Terms of Service.

Support
support@quantgrid.in

Setup, broker connections, demos and billing

Grievance
grievance@quantgrid.in

Formal complaints, under the IT Rules, 2021

Phone
Call us

Answered Monday to Friday, 8:00 AM to 5:00 PM IST

Monday to Friday, 8:00 AM to 5:00 PM IST

QuantGrid runs from 8:00 AM to 5:00 PM IST on NSE and BSE trading days. Outside those hours, and at weekends and exchange holidays, the platform is taken offline for maintenance and to keep running costs down. Live status is published separately, so you can check the platform before you check your inbox.

Get started

Set it up on your own accounts

Top up your wallet, connect one master, link one child, set a multiplier and watch the log fill in. There is no lock-in. If you would rather see the engine before you pay for it, a demo takes about twenty minutes.

Prepaid wallet · No lock-in, stop any time