Quantor
📈 4 production strategies + 2 experimental profiles · Pine Script v1 import

Strategies — simple, transparent, verifiable

All Quantor strategies are open implementations: four production strategies (EMA, Breakout V1, TS Momentum V1, Adaptive Pro) plus two experimental profiles (Smart Bot, Custom) and Pine Script v1 import. Parameters are visible. Logic is documented. The per-execution-mode whitelist is strict — LIVE_SAFE only permits the conservative ones.

Strategies with safety rails. Pick a strategy profile to get started: EMA Cross (trend-following with adaptive EMA signals), Breakout (momentum-based breakout strategy), TS Momentum (time-series momentum with regime detection), Adaptive Pro (regime-aware strategy that routes between momentum and breakout as market conditions change), Custom (build your own strategy with full flexibility). Built-in risk guardrails, operational control, transparent by design.

EMA — Exponential Moving Average crossover

LIVE_SAFE compatible All plans

A classic EMA strategy with fast/slow moving-average crossover. The most stable of the four — it tries to catch trends and exits the position when the crossover reverses. Works well in trending markets, forgives some noise.

When to pick it: for a first PAPER trading experience; when you want simple, understandable, debuggable logic; when you need a strategy that's permitted in LIVE_SAFE mode.

Under the hood Compute EMA(fast=N), EMA(slow=M). Long entry when EMA-fast crosses EMA-slow upward. Exit on reverse crossover or stop-loss.
Default params
fast9
slow21
stop-lossplan ladder
interval1m / 5m / 1h
sidelong-only

Breakout v1 — price-level breakout

LIVE_ADVANCED only Pro / Teams

Breaks out of local high/low ranges over N candles. When price breaks the high — go long. When it breaks the low — exit. Stays out of the market until a range has formed.

When to pick it: after a consolidation period, on fresh breakouts; in volatile markets that aren't yet DANGEROUS; for more upside than EMA.

Under the hood Find max(high, last N candles). If current close > max → long. Exit at min(low, last N) or stop-loss.
Default params
lookback20
buffer0.1%
stop-lossplan ladder
interval5m / 15m / 1h
sidelong-only

TS Momentum V1 — Time-series momentum

LIVE_ADVANCED only Pro / Teams

Time-series momentum: go long when window returns are positive above a threshold. Exit when reversed. Performs well on strong directional moves, rests in chop.

When to pick it: for diversification from EMA on the same symbol; on strong trending setups; for a bigger "right tail" than EMA crossover.

Under the hood Compute log-return over window W. If cumulative return > threshold → long. Exit on cumulative return < -threshold or stop-loss.
Default params
window60
threshold1.5%
stop-lossplan ladder
interval1h / 4h
sidelong-only

Adaptive Pro — regime-aware hybrid

LIVE_ADVANCED only Pro / Teams

Quantor's flagship strategy. Uses our own Market Regime Detector: in CALM regime it behaves like TS Momentum V1, in VOLATILE it shrinks positions and switches to conservative thresholds, in DANGEROUS it doesn't trade at all (LIVE is blocked at the riskscope service regardless of what the strategy says).

When to pick it: when you want automated adaptation to changing market conditions without manually retuning parameters.

Under the hood Recomputes MarketRegime every N candles. Calibrates parameters (window/threshold/stop) for the regime. Passes orders to the pipeline, which goes through the regime gate separately.
Default params
regime checkevery 30 bars
calm threshold1.0%
volatile threshold2.5%
stop-lossplan ladder × regime mult
interval1h / 4h

Pine Script import

If you already have a TradingView Pine Script strategy, you can import it into Quantor. The parser converts the Pine AST into our StrategyDescriptor and runs it on the worker side. It still passes through the same 14-step risk-gate chain as the built-in strategies — a custom strategy cannot bypass the safety policy.

Pine v1 import shipped

Core built-ins: ta.sma, ta.ema, ta.rsi, ta.crossover, plot, strategy.entry/close. Most simple strategies import as-is.

Pine v2 import in progress

Extended functions: ta.atr, ta.macd, lookahead-safe ta.barssince, type system. ETA Q3 2026.

Picked a strategy?

Any of the four can be launched in PAPER mode immediately — no exchange keys required, no Telegram verification. Just to see how it behaves on your symbols.