verida.trade CT Lab · verida.trade

Pipeline

Compose indicators, arithmetic, comparison, transformation and Rhai custom steps into a declarative DAG that persists as a derived series.

The fluxo visual is a declarative DAG of steps. Each step applies an operation (indicator, arithmetic, comparison, transformation) over a source or over the output of a previous step. The final output is persisted as a derived series.

Available operations

Indicators

All 40 classic + 15 microstructure indicators usable as steps.

Cross-series arithmetic

add, subtract, multiply, divide between series or with a scalar.

Comparison

greater, less, greater_equal, less_equal, crosses_above, crosses_below — generates signals.

Conditional

if condition then series_A else series_B — logical branching.

Transformation

abs, neg, log, sqrt, clamp, sign — unary operations per column.

Quantile classification

Discretizes a series into N bins by rolling quantiles (adaptive ruler).

Rolling statistics

rma, smm, std_dev, linear_regression — rolling windows.

Compose

Inner-join of columns from multiple steps into a synthetic series.

Custom (Rhai)

Inline Rhai script with named inputs — total freedom.

Ready-made recipes

cruzamento_medias
Signal from crossing between two MAs (e.g.: fast EMA vs. slow EMA). Output: signal column 1.
flag_limiar_oscilador
Boolean flag when an oscillator crosses a threshold (e.g.: RSI < 30).
filtro_regime_adx
Filters signals by trend regime using ADX (e.g.: only trade if ADX > 25).
divergencia_momentum
Detects divergence between price and momentum (e.g.: price makes a high, RSI doesn’t).