5.4 KiB
CONV: Convolution Moving Average
If you want a moving average that behaves exactly how you want it to, build it yourself. CONV is the 'Bring Your Own Kernel' of indicators.
| Property | Value |
|---|---|
| Category | Trend (FIR MA) |
| Inputs | Source (close) |
| Parameters | double[] kernel |
| Outputs | Single series (Conv) |
| Output range | Tracks input |
| Warmup | period bars |
| PineScript | conv.pine |
- CONV (Convolution Moving Average) is the ultimate tool for the signal processing purist.
- Similar: SMA, ALMA | Trading note: Convolution operator; applies custom kernel to price. Foundation of all FIR moving averages.
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
CONV (Convolution Moving Average) is the ultimate tool for the signal processing purist. It doesn't presume to know what kind of smoothing you need; it simply asks for a kernel (a set of weights) and applies it to the data. Want a Gaussian filter? A Sinc filter? A custom edge-detection filter? CONV runs them all.
Historical Context
Convolution is the fundamental operation of digital signal processing (DSP). While traders were busy inventing "new" moving averages by tweaking alpha values, engineers were using convolution to process audio, images, and radar signals for decades. CONV brings this raw power to financial time series, allowing for arbitrary FIR (Finite Impulse Response) filtering.
Architecture & Physics
CONV applies a sliding dot product between the data window and your custom kernel. The "physics" are entirely defined by the kernel you provide.
- Symmetric Kernel: Zero phase shift (if centered correctly).
- Asymmetric Kernel: Introduces lag or lead.
- Positive Weights: Smoothing.
- Mixed Weights: Differentiation or band-pass filtering.
Mathematical Foundation
The value at time t is the sum of the element-wise product of the kernel K and the price vector P:
\text{CONV}_t = \sum_{i=0}^{N-1} P_{t-i} \cdot K_i
Where:
Nis the length of the kernel.K_0multiplies the most recent price (or oldest, depending on convention; the QuanTAlib implementation alignsK_0with the oldest data in the window andK_{N-1}with the newest).
Performance Profile
Performance depends linearly on the kernel length (N).
Operation Count (Streaming Mode, Scalar)
Per-bar cost for kernel length N:
| Operation | Count | Cost (cycles) | Subtotal |
|---|---|---|---|
| MUL | N | 3 | 3N |
| ADD | N | 1 | N |
| Total | 2N | — | ~4N cycles |
For a typical kernel length of 14:
- Total: ~56 cycles per bar
Complexity: O(N) — linear with kernel length. No recursion, pure FIR convolution.
Batch Mode (SIMD/FMA Analysis)
CONV's dot product structure is ideal for SIMD vectorization:
| Operation | Scalar Ops | SIMD Ops (AVX2) | Speedup |
|---|---|---|---|
| MUL+ADD (FMA) | 2N | N/4 (FMA256) | 8× |
| Horizontal sum | — | 1 | — |
Batch efficiency (512 bars, N=14):
| Mode | Cycles/bar | Total (512 bars) | Improvement |
|---|---|---|---|
| Scalar streaming | 56 | 28,672 | — |
| SIMD batch (FMA) | ~10 | ~5,120 | ~82% |
SIMD achieves excellent speedup because the dot product is embarrassingly parallel.
Quality Metrics
| Metric | Score | Notes |
|---|---|---|
| Accuracy | 10/10 | Exact convolution to double precision |
| Timeliness | Variable | Depends on kernel (symmetric = lag N/2) |
| Overshoot | Variable | Depends on kernel design |
| Smoothness | Variable | Kernel-dependent |
Quality characteristics are entirely determined by the user-provided kernel.
Zero-Allocation Design
CONV stores the kernel in a pre-allocated array. The Update method performs a dot product using a circular buffer for the price history, requiring no new allocations.
Validation
Validation is performed by reproducing standard moving averages (SMA, WMA, TRIMA) using their equivalent kernels and comparing against external libraries.
| Library | Status | Notes |
|---|---|---|
| QuanTAlib | ✅ | Validated against internal SMA, WMA, TRIMA. |
| Skender | ✅ | Validated against WMA (using WMA kernel). |
| TA-Lib | ✅ | Validated against WMA (using WMA kernel). |
| Tulip | ✅ | Validated against WMA (using WMA kernel). |
| Ooples | ✅ | Validated against WMA (using WMA kernel). |
Common Pitfalls
- Kernel Direction: Our implementation applies the kernel such that the last element of the kernel multiplies the most recent data point. If you import kernels from other DSP libraries, you might need to reverse them.
- Normalization: Kernel weights are not automatically normalized. If the sum of the weights is not 1.0, the output scale will be different from the input scale. This is a feature, not a bug (allows for differential filters).
- Performance: A kernel size of 1000 will be 100x slower than a kernel size of 10. Use FFT-based convolution for massive kernels (not implemented here; this is for trading, not searching for extraterrestrial life).