Appearance

Personalize your experience

Mode
Accent Color
Layout
Direction
Four builders · one strategy document

Build strategieshowever you think

Click it together with forms, wire it as a node graph, write it as JSON, or structure option legs — all four edit the same strategy and deploy to the same engine.

Ways to build
4
Indicators
150+
Backtest depth
10y
Brokers to deploy
12+
BTC/USDT84,231.00+1.25%
ETH/USDT2,018.45+0.87%
SOL/USDT131.50+2.10%
BNB/USDT598.70+0.62%
XRP/USDT2.4820-0.45%
ADA/USDT0.72140+1.33%
DOGE/USDT0.17832+0.91%
AVAX/USDT19.840-0.68%
DOT/USDT4.1230+0.54%
LINK/USDT13.450+1.72%
LTC/USDT89.320-0.32%
UNI/USDT6.3120+0.44%
ATOM/USDT4.6540-0.20%
NEAR/USDT2.3170+1.05%
MATIC/USDT0.23060+0.78%
BTC/USDT84,231.00+1.25%
ETH/USDT2,018.45+0.87%
SOL/USDT131.50+2.10%
BNB/USDT598.70+0.62%
XRP/USDT2.4820-0.45%
ADA/USDT0.72140+1.33%
DOGE/USDT0.17832+0.91%
AVAX/USDT19.840-0.68%
DOT/USDT4.1230+0.54%
LINK/USDT13.450+1.72%
LTC/USDT89.320-0.32%
UNI/USDT6.3120+0.44%
ATOM/USDT4.6540-0.20%
NEAR/USDT2.3170+1.05%
MATIC/USDT0.23060+0.78%
BTC/USDT84,231.00+1.25%
ETH/USDT2,018.45+0.87%
SOL/USDT131.50+2.10%
BNB/USDT598.70+0.62%
XRP/USDT2.4820-0.45%
ADA/USDT0.72140+1.33%
DOGE/USDT0.17832+0.91%
AVAX/USDT19.840-0.68%
DOT/USDT4.1230+0.54%
LINK/USDT13.450+1.72%
LTC/USDT89.320-0.32%
UNI/USDT6.3120+0.44%
ATOM/USDT4.6540-0.20%
NEAR/USDT2.3170+1.05%
MATIC/USDT0.23060+0.78%
01 / 04Codeless form builder

Click the logic together, ship it the same day

Pick an indicator, an operator and a value. Group conditions with AND or OR, branch with if/else, and read the plain-English summary the builder writes back to you. Nothing is accepted until every field validates.

What you get

  • Signal cards with indicator, operator and value pickers
  • AND / OR groups with live plain-English summaries
  • Optional if / else flow control per signal
  • Validation on every field before you can continue
Strategy Builder · Entry configuration · FormInteractive preview
Rendered live in your browser — simulated market dataOpen codeless builder
02 / 04Drag & drop node builder

Wire the graph, watch it evaluate

Drop entry, signal, condition, group, gap and exit nodes onto the canvas and connect them. Packets travel the edges so you can see which branch fires, and the graph validates itself as you wire.

What you get

  • Drag entry, signal, group, condition, gap and exit nodes
  • Wire boolean joins between comparator blocks
  • Live packet flow shows which branch evaluates
  • Minimap, zoom and graph validation built in
Strategy Builder · Entry configuration · NodesInteractive preview
Rendered live in your browser — simulated market dataOpen node builder
03 / 04Coded builder

Drop to JSON when forms run out

Every strategy is a document. Edit it directly with schema validation, an outline that mirrors the tree, and errors pinned to their line and JSON path — then switch back to forms or nodes without losing a thing.

What you get

  • The same strategy as schema-checked JSON
  • Outline tree that mirrors the document
  • Inline errors with line and JSON path
  • Round-trips with the form and node builders
Strategy Builder · strategy.jsonInteractive preview
Rendered live in your browser — simulated market dataRead the schema docs
Or bring the TypeScript SDKstrategy.ts
SDK reference
// QuaTick Strategy — EMA crossover
import { Strategy, Indicator } from '@quatick/sdk';

export default new Strategy({
  name: 'EMA Crossover',
  symbol: 'NIFTY 50',
  timeframe: '15m',

  indicators: {
    fast: Indicator.EMA({ period: 9 }),
    slow: Indicator.EMA({ period: 21 }),
  },

  onBar({ fast, slow, position, order }) {
    if (fast.crossesAbove(slow) && !position.isOpen) {
      order.buy({ quantity: 50, stopLoss: '1%', takeProfit: '2%' });
    }
    if (fast.crossesBelow(slow) && position.isOpen) {
      order.close();
    }
  },
});
04 / 04F&O option builder

Structure the legs, see the payoff

The same builder shell, specialised for derivatives. Assemble multi-leg structures from templates or scratch and watch payoff, breakevens, probability of profit and net greeks recompute as you change a leg.

What you get

  • Multi-leg option structures with per-leg limits
  • Expiry payoff plus a live T+0 value curve
  • Breakeven, max profit, max loss, probability of profit
  • Net greeks and margin before you send the order
F&O Strategy Builder · Bull Call SpreadInteractive preview
Rendered live in your browser — simulated market dataOpen option builder
Strategy lifecycle

Build, prove, deploy, watch

The same four stages whichever builder you started in.

  1. 01

    Build

    Pick codeless, node, coded or the option builder. All four write the same strategy document.

  2. 02

    Backtest

    Run against years of history. Sharpe, max drawdown, win rate and per-trade attribution.

  3. 03

    Optimise

    Walk-forward parameter sweeps and Monte Carlo runs to check the edge survives.

  4. 04

    Deploy

    Paper first, then live across connected brokers with sizing and kill-switch rules.

One strategy documentCodelessNode builderCodedOption builder· switch any time, nothing is lost
Builder playbook

The order that keeps strategies honest

Seven steps we see separate strategies that survive contact with the market from the ones that do not.

  1. 1

    Set the particulars

    Name, tags and a written objective before a single condition.

  2. 2

    Pick symbol & timeframe

    Fix broker, instrument and timeframe first; keep it constant while testing.

  3. 3

    Size the position

    Fixed quantity or capital percentage, then cap max open positions.

  4. 4

    Build the entry

    One trigger indicator, then confirmations. SMA(50) crossesAbove SMA(200).

  5. 5

    Always define the exit

    Signal exits plus stop loss and take profit so nothing gets stuck.

  6. 6

    Backtest, then forward test

    Multiple ranges, then compare train and test to catch overfitting.

  7. 7

    Deploy safely

    Paper mode, watch the bot summary, switch to live once stable.

Execution engine

From saved strategy to live orders

Whatever built it, the engine runs it the same way — with risk rules, monitoring and metrics attached.

Rule-based automation

Define entry, exit and risk once — the engine executes it.

Risk management

Stops, targets, trailing exits, max daily loss and position caps.

Multi-broker execution

One strategy across Zerodha, Fyers, Angel One, Upstox and Binance.

Live monitoring

Fills, open positions and per-strategy P&L as it happens.

30+ metrics

Sharpe, Sortino, CAGR, drawdown, win rate, profit factor.

Strategy marketplace

Browse community strategies or publish your own.

Pick a builder and start

Codeless, nodes, JSON or option legs — backtest it, paper trade it, then go live on your own broker.

No credit card required · Paper trading included