2026-08-20 16:16:33 +02:00
# manifoldbt vs vectorbt vs raptorbt
2026-08-18 02:49:20 +02:00
2026-08-20 16:16:33 +02:00
An engine-to-engine benchmark you can re-run yourself. It installs every engine
from PyPI, generates its own data, checks that they produced the **same
result**, and only then reports how long each took.
2026-08-18 02:49:20 +02:00
```bash
2026-08-20 16:16:33 +02:00
pip install manifoldbt
2026-08-18 02:49:20 +02:00
pip install -r requirements-lock.txt
python bench.py --bars 10000 100000 1000000 --reps 7 --cold-start-reps 3 --memory-bars 2000000 --out results.json
python report.py results.json
```
No dataset to download, no API key, no configuration. The same command runs in
GitHub Actions on a public runner, so every published number has a run URL
behind it.
2026-08-20 16:16:33 +02:00
**Python 3.12, and not by preference.** raptorbt is built against pyo3 0.20.3,
whose maximum supported CPython is 3.12: no release up to 0.9.0 publishes a
cp313 wheel, and a source build refuses outright. Comparing engines means
running them in one environment, and the environment has to be one all of them
support. Add or drop a challenger with `--engines` ; an engine that is not
installed is skipped with a printed line rather than crashing the run.
**manifoldbt is the reference.** Every parity check and every ratio is a
challenger against it, never two challengers against each other: three engines
make three pairs, and a table of pairs is a matrix, not a benchmark. The
reference gets no advantage from the position, it is simply the one every
timing is divided by.
2026-08-18 02:49:20 +02:00
## The rule this harness is built around
2026-08-20 16:16:33 +02:00
A speed comparison between backtesters is worthless unless they did the same
work. So parity comes first:
2026-08-18 02:49:20 +02:00
1. each workload runs once per engine;
2026-08-20 16:16:33 +02:00
2. total return, round-trip count and fees are compared against the reference;
3. **a workload an engine disagrees on gets no published timing for it.**
2026-08-18 02:49:20 +02:00
Three verdicts come out of that gate:
| Verdict | Meaning | What gets published |
|---|---|---|
| `exact` | agreement down to float-reordering noise (relative tolerance 1e-9) | the timing, in the headline table |
2026-08-20 16:16:33 +02:00
| `documented` | that engine disagrees, the workload declared it in advance *for that engine* , and the cause is written down | the timing, in an annex, with the cause and its measured size |
| `failed` | it disagrees and nobody predicted it | nothing. The run exits non-zero |
A fourth outcome sits beside the gate rather than inside it. `unsupported`
means an engine cannot express the workload at all: it is not run, and the
report prints the reason instead of an empty cell. A blank in a speed table
reads as a defeat, and "this engine has no fixed-quantity sizing" is not a
defeat, it is a different fact.
2026-08-18 02:49:20 +02:00
The `failed` path is not decoration. It is the reason the other numbers can be
trusted, and it makes the benchmark fail loudly if a future release of either
engine changes a fill rule.
## Method
**Interleaved repetitions.** The engines alternate inside each repetition
(A, B, A, B, ...) rather than running in two blocks. On a shared cloud runner
that slows down halfway through, two blocks would hand the penalty to whichever
engine ran second; alternating splits it evenly.
**The ratio is the headline, milliseconds are context.** Each ratio comes from
two measurements taken seconds apart on the same machine. Absolute timings from
a shared runner are worth much less than the ratio between them.
**Dispersion is published, and noise is flagged.** Every point carries min,
median, max and interquartile range. If the IQR exceeds 15% of the median the
point is marked `noisy` and is not headline material, however good it looks.
**Warmup is discarded, and that favours vectorbt on purpose.** The first call of
each engine is thrown away, which is where vectorbt pays its numba compilation.
Charging a one-off JIT cost to every repetition would inflate the result.
**Data loading is excluded on both sides.** manifoldbt is handed a prepared
store, vectorbt is handed prepared Series. What is timed is indicators plus
simulation plus reading the headline metrics, nothing else.
**Only public APIs.** manifoldbt is driven through `bt.run(strategy, config,
store)` , the documented entry point, not through an internal fast path.
## What is compared
2026-08-20 16:16:33 +02:00
| Workload | What it exercises | vectorbt | raptorbt |
|---|---|---|---|
| `sma_cross` | SMA 10/50 crossover, long-only, no cost | exact | exact |
| `ema_rsi_fees` | EMA 12/26 crossover with an RSI(14) filter and a 5 bps taker fee | exact | unsupported |
| `sma_cross_metrics` | the same simulation, plus max drawdown, Sharpe, Sortino and volatility | exact | exact |
| `bracket_sl_tp` | the same entry with a 15 bps stop and a 30 bps target | documented | documented |
2026-08-18 02:49:20 +02:00
Each of those runs across a range of series lengths. Two further axes, cold
start and memory, are measured in their own processes because they cannot be
measured honestly inside the main one.
**Scope, stated twice on purpose.** `sma_cross` and `sma_cross_metrics` run the
identical simulation; only the second one also produces a performance summary.
2026-08-20 16:16:33 +02:00
manifoldbt and raptorbt both compute that summary inside the run whether or not
you read it, while vectorbt defers the equity curve until a risk metric asks for
it and then pays to materialise it. Reporting both scopes is the only honest way
to present the result: a reader who only wants a total return should look at the
first number, and a reader who wants a Sharpe should look at the second. Parity
on the summary workload is gated on total return, round-trip count and max
drawdown, which match exactly across all three; the vectorbt ratios agree to
about 3e-4, because manifoldbt buckets its daily returns slightly differently,
and that residual is reported rather than smoothed over.
raptorbt annualises its ratios on its own basis and moves that basis between
releases (the same run reads Sharpe 0.21 on 0.4.1 and 3.43 on 0.9.0, against
manifoldbt's 8.14), so its Sharpe and Sortino are recorded but not compared:
subtracting them from the reference would publish a units mismatch as a
disagreement. It reports no volatility at all, and the harness leaves that cell
empty rather than recomputing it from the equity curve, which would credit
raptorbt with the harness's own arithmetic. None of this touches the gate, which
runs on money, round-trips and drawdown, all three basis-free. Its drawdown
matches the reference to 4e-15.
2026-08-18 02:49:20 +02:00
The vectorbt side of the summary is written out in pandas rather than through
`pf.sharpe_ratio()` for two reasons, both in vectorbt's favour or neutral.
manifoldbt computes its ratios on daily returns annualised by sqrt(365) and its
drawdown at full bar resolution, so the native accessors would return different
numbers and the comparison would be timing two different computations; and the
hand-written version is measurably faster than a single native accessor on the
same data, so vectorbt is credited with the quicker of its two paths.
**Cold start.** The steady-state table discards a warmup call, which is where
vectorbt compiles its numba kernels. A user pays that cost in every new
notebook, script or CI job, so it is measured rather than waved away: a fresh
process, an engine it has never imported, one backtest. The Python, numpy and
pandas baseline is measured the same way and reported alongside, so the engine's
own share can be read off instead of argued about.
**Memory added by the run.** Resident memory sampled while the backtest
executes, after a warmup. vectorbt materialises the simulation as arrays and its
footprint grows with the series; manifoldbt streams bars out of its store. What
is compared is what running a backtest costs *on top of* already holding the
data: building each engine's data representation is a different question and is
excluded on both sides, in manifoldbt's case a deliberately unflattering choice
since its one-off ingest is the memory-hungry part.
2026-08-20 16:16:33 +02:00
### Why raptorbt sits out the fee workload
Two blockers, either one sufficient, both measured rather than assumed.
*Sizing.* raptorbt has no fixed-quantity mode. `position_sizes` is a fraction of
equity (a constant 0.5 buys exactly half the equity of the bar before the entry),
`lot_size` rounds a computed size down to a multiple of itself, and
`alloted_capital` fixes the notional rather than the quantity. Reproducing
`units=5` would mean feeding a fraction derived from an equity curve that does
not exist until the run is over.
*Indicator.* `raptorbt.ema` seeds on a simple mean of the first `period` bars and
emits from bar `period-1` ; manifoldbt seeds on the first observation and emits
from bar 0. Same recursion, different warmup, so the signal differs early and the
round-trip count with it. Its `sma` matches the reference to 3.3e-13 and its
`rsi` matches to the last bit, which is why the other three workloads run.
Running it anyway with a different size and a different indicator would produce
a number, and the number would not mean anything.
2026-08-18 02:49:20 +02:00
### Why the fee workload sizes in units
With `FractionOfEquity` sizing and a non-zero fee the engines size differently:
manifoldbt charges the fee on top of a full-equity notional, vectorbt reserves
it out of cash first. Both are legitimate product decisions, and comparing them
would compare policy rather than speed or correctness. Sizing in fixed units
isolates the fee arithmetic, which is the thing both engines must agree on.
### The documented divergence, in full
When a bracket fires intrabar and the entry condition still holds at that bar's
2026-08-20 16:16:33 +02:00
close, the three engines take three different roads:
2026-08-18 02:49:20 +02:00
2026-08-20 16:16:33 +02:00
- **manifoldbt** books two orders on that bar: the stop or target exit, then a
fresh entry at the close.
- **vectorbt** processes one order per bar and re-enters on the next bar.
- **raptorbt** does not re-arm at all. The level still being true is not enough;
it waits for the level to go false and true again.
None of them is wrong. On controlled bars the bracket fills themselves match
exactly, which the cross-engine parity suite shipped with the library pins test
by test; the divergence is purely about *when* a re-entry is allowed.
The harness counts the affected round-trips rather than hand-waving at them, and
it is one population, not three: at 10,000 bars manifoldbt books 214 round-trips
of which 82 re-enter on the exit bar, and raptorbt books exactly 214 - 82 = 132.
The report states the count and the share, so the size of the difference is
measured instead of asserted.
2026-08-18 02:49:20 +02:00
## Alignment choices, and why each one exists
2026-08-20 16:16:33 +02:00
Engines only produce identical numbers if they are told to do the same thing.
These are the conventions the harness sets, all of them visible in
[engine_mbt.py ](engine_mbt.py ), [engine_vbt.py ](engine_vbt.py ) and
[engine_rbt.py ](engine_rbt.py ):
2026-08-18 02:49:20 +02:00
- `signal_delay=0` with `execution_price="AtClose"` , matching what
`Portfolio.from_signals` does by default: a signal fills at the close of the
bar that produced it.
- `warmup_bars=0` , so the indicator's own NaN warmup is what suppresses early
signals, identically on both sides.
- Signals are fed to vectorbt as a *level* (`entries` = the condition holds,
`exits` = it no longer holds) rather than as transitions, which reproduces
manifoldbt's target-position semantics.
- Indicators are mirrored on manifoldbt's exact definitions. The EMA seeds on
the first observation with `alpha = 2/(span+1)` , which `ewm(span=n,
adjust=False)` reproduces exactly. The RSI is Wilder's, seeded with the
*simple* average of the first `period` deltas and emitted from bar `period` :
a plain `ewm(alpha=1/period)` over the whole delta series is a different
indicator, and using it would have made the engines disagree for a reason that
has nothing to do with either engine.
- The generated bars have no opening gap (`open == previous close` ). A bar that
gaps through a stop is the one case where two engines can legitimately book
different fill prices while both being correct, so that class of false
failures is removed from the data rather than argued about in the report.
2026-08-20 16:16:33 +02:00
On the raptorbt side specifically:
- `upon_bar_close=True` , which fills at the close of the signal bar. Turning it
off does not add a one-bar delay, it moves the fill to that same bar's *open* ,
so there is no setting on that side matching a delayed execution.
- Sizing is left at its default, which takes the whole equity of the bar before
the entry. Since the account is flat at that point, that is the same number as
the equity at the fill, and the three engines size identically: `sma_cross`
comes back with manifoldbt's final equity to the last bit.
- The bracket is set on the config, in fractions rather than percent: 0.15 means
a 15% stop, so the workload's 0.15% is `0.0015` . Passing the percent number is
not an error, it is a stop so wide it never triggers.
- Indicators come from raptorbt's own Rust `sma` and `rsi` , not from numpy: that
is what a user would write, and it is what deserves to be timed.
2026-08-18 02:49:20 +02:00
## Reading the numbers honestly
- On a shared runner with 4 vCPUs, an engine that parallelises is understated.
These are floors, not peaks.
- The published wheels are CPU-only, and GitHub-hosted runners have no GPU, so
nothing here says anything about GPU performance.
- vectorbt is the open-source package (`pip install vectorbt` ), not vectorbtpro.
2026-08-20 16:16:33 +02:00
- raptorbt has no fan-out API for a parameter grid on one instrument, so its
sweep column is a Python loop over `run_single_backtest` . That is not a
handicap the harness imposed, it is the only spelling available, and the
moving averages are hoisted out of the loop so it gets the same courtesy
vectorbt gets on its own grid path.
2026-08-18 02:49:20 +02:00
## Files
- `data.py` - deterministic OHLCV generator and its content digest
- `probe_child.py` - the cold-start and memory probes, each in a fresh process
2026-08-20 16:16:33 +02:00
- `workloads.py` - the parameters every engine reads, and the per-engine notes
- `engines.py` - the registry: who is in the comparison, and who is the reference
- `engine_mbt.py` / `engine_vbt.py` / `engine_rbt.py` - one adapter per engine
2026-08-18 02:49:20 +02:00
- `parity.py` - the gate
- `bench.py` - the runner
2026-08-20 16:16:33 +02:00
- `sweep_child.py` - one parameter-grid point, in its own process
2026-08-18 02:49:20 +02:00
- `report.py` - JSON to Markdown, and to the GitHub job summary
2026-08-20 16:16:33 +02:00
- `ci/bench-vs-vectorbt.yml` - the workflow, deployed to the public repository
The directory is still named `vs_vectorbt` and the workflow file still
`bench-vs-vectorbt.yml` : renaming either would break the path the public
repository runs and start a fresh, empty run history.