8228be7069
Makes the Python binding truly dependency-free (Task 5b). `pip install wickra` now pulls **zero** third-party packages, and `import wickra` never imports NumPy (verified: `"numpy" not in sys.modules` after a batch call).
## What changed
- **Inputs** accept any sequence or buffer of numbers — `array.array`, `memoryview`, a NumPy `ndarray`, or a plain `list` — via `Vec` extraction (newtypes `Buf1`/`BufI64`). `PyBuffer` is unavailable under `abi3-py39`, and `unsafe_code = forbid` rules out a zero-copy slice, so inputs are copied once (negligible vs. compute).
- **Single-output `batch(...)`** returns a stdlib `array.array('d')` (native buffer protocol → `numpy.asarray` zero-copy).
- **Multi-output `batch(...)`** returns a buffer-protocol `Matrix` preserving `.shape`, integer-row and `[i, j]` access, and `.tolist()`.
- **NumPy** moves to an optional extra (`pip install wickra[numpy]`); it is never required.
- Streaming `update(...)` is unchanged; results are numerically identical.
## Implementation
- Trait `IntoPyData` + a `matrix()`/`f64_array()` helper collapse the ~400 batch call sites; `array.array` is built via `bytemuck` (Zlib/MIT/Apache — `cargo deny check licenses` ok).
- Tests migrated to `array.array`/`Matrix` (1-D `.shape`→`len()`, `.dtype`→`.typecode`; numeric comparisons normalize through a `_to_np` helper). The non-contiguous-input test now asserts acceptance instead of rejection.
## Verification (local)
- `pytest bindings/python/tests` — **1991 passed**.
- `cargo fmt --all`, `cargo clippy --workspace --all-targets --all-features -- -D warnings`, `cargo test --workspace --all-features`, `cargo deny check licenses` — all green.
**BREAKING for Python**: batch return types change from NumPy arrays to `array.array`/`Matrix`. Documented in CHANGELOG; ships with the data-layer release bundle (no separate tag).
266 lines
8.7 KiB
Python
266 lines
8.7 KiB
Python
"""For every indicator, batch(prices) must equal repeated update(price).
|
|
|
|
This is the central correctness contract of Wickra: the two APIs share one
|
|
implementation, so they cannot disagree. These tests verify it from Python
|
|
across the entire warmup → steady-state transition.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import math
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
import wickra as ta
|
|
|
|
|
|
def _to_np(x) -> np.ndarray:
|
|
"""Normalize a Wickra batch result to a float64 ndarray.
|
|
|
|
Scalar batches return a stdlib ``array.array``; multi-output batches return a
|
|
``Matrix`` exposing ``.shape``/``.tolist()``.
|
|
"""
|
|
if isinstance(x, np.ndarray):
|
|
return x.astype(np.float64)
|
|
if hasattr(x, "tolist") and hasattr(x, "shape"):
|
|
return np.asarray(x.tolist(), dtype=np.float64)
|
|
return np.asarray(x, dtype=np.float64)
|
|
|
|
|
|
def _equal_with_nan(a, b, tol: float = 1e-9) -> bool:
|
|
"""NumPy ``==`` treats NaN as not-equal; emulate ``equal_nan`` for floats."""
|
|
a = _to_np(a)
|
|
b = _to_np(b)
|
|
if a.shape != b.shape:
|
|
return False
|
|
both_nan = np.isnan(a) & np.isnan(b)
|
|
diff_ok = np.where(both_nan, 0.0, np.abs(a - b))
|
|
return bool(np.all(diff_ok <= tol))
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cls, args",
|
|
[
|
|
(ta.SMA, (14,)),
|
|
(ta.EMA, (14,)),
|
|
(ta.WMA, (14,)),
|
|
(ta.RSI, (14,)),
|
|
],
|
|
)
|
|
def test_scalar_streaming_matches_batch(cls, args, sine_prices):
|
|
batch = cls(*args).batch(sine_prices)
|
|
|
|
streamer = cls(*args)
|
|
streamed = np.array(
|
|
[streamer.update(float(p)) if streamer is not None else None for p in sine_prices],
|
|
dtype=object,
|
|
)
|
|
# Map None -> NaN to compare against batch.
|
|
streamed = np.array(
|
|
[math.nan if v is None else float(v) for v in streamed], dtype=np.float64
|
|
)
|
|
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_macd_streaming_matches_batch(sine_prices):
|
|
batch = ta.MACD().batch(sine_prices)
|
|
|
|
streamer = ta.MACD()
|
|
rows = []
|
|
for p in sine_prices:
|
|
v = streamer.update(float(p))
|
|
if v is None:
|
|
rows.append([math.nan, math.nan, math.nan])
|
|
else:
|
|
rows.append(list(v))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_bollinger_streaming_matches_batch(sine_prices):
|
|
batch = ta.BollingerBands().batch(sine_prices)
|
|
|
|
streamer = ta.BollingerBands()
|
|
rows = []
|
|
for p in sine_prices:
|
|
v = streamer.update(float(p))
|
|
if v is None:
|
|
rows.append([math.nan, math.nan, math.nan, math.nan])
|
|
else:
|
|
rows.append(list(v))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_atr_streaming_matches_batch(ohlc_series):
|
|
high, low, close = ohlc_series
|
|
batch = ta.ATR(14).batch(high, low, close)
|
|
|
|
streamer = ta.ATR(14)
|
|
rows = []
|
|
for h, l, c in zip(high, low, close):
|
|
rows.append(streamer.update((float(c), float(h), float(l), float(c), 0.0, 0)))
|
|
streamed = np.array([math.nan if v is None else v for v in rows], dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_stochastic_streaming_matches_batch(ohlc_series):
|
|
high, low, close = ohlc_series
|
|
batch = ta.Stochastic(14, 3).batch(high, low, close)
|
|
|
|
streamer = ta.Stochastic(14, 3)
|
|
rows = []
|
|
for h, l, c in zip(high, low, close):
|
|
v = streamer.update((float(c), float(h), float(l), float(c), 0.0, 0))
|
|
rows.append([math.nan, math.nan] if v is None else list(v))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_obv_streaming_matches_batch(ohlc_series):
|
|
_, _, close = ohlc_series
|
|
volume = np.ones_like(close)
|
|
batch = ta.OBV().batch(close, volume)
|
|
|
|
streamer = ta.OBV()
|
|
rows = []
|
|
for c, v in zip(close, volume):
|
|
rows.append(streamer.update((float(c), float(c), float(c), float(c), float(v), 0)))
|
|
streamed = np.array([math.nan if x is None else x for x in rows], dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_mama_streaming_matches_batch(sine_prices):
|
|
batch = ta.MAMA().batch(sine_prices)
|
|
streamer = ta.MAMA()
|
|
rows = []
|
|
for p in sine_prices:
|
|
v = streamer.update(float(p))
|
|
if v is None:
|
|
rows.append([math.nan, math.nan])
|
|
else:
|
|
rows.append(list(v))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_super_smoother_streaming_matches_batch(sine_prices):
|
|
batch = ta.SuperSmoother(10).batch(sine_prices)
|
|
streamer = ta.SuperSmoother(10)
|
|
streamed = np.array(
|
|
[math.nan if (v := streamer.update(float(p))) is None else float(v) for p in sine_prices],
|
|
dtype=np.float64,
|
|
)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_rolling_vwap_streaming_matches_batch(ohlc_series):
|
|
# RollingVWAP(20) on the shared OHLC series. Provides finite-memory VWAP
|
|
# parity coverage now that the indicator is exposed across all bindings.
|
|
high, low, close = ohlc_series
|
|
volume = np.linspace(100.0, 200.0, num=close.size, dtype=np.float64)
|
|
batch = ta.RollingVWAP(20).batch(high, low, close, volume)
|
|
|
|
streamer = ta.RollingVWAP(20)
|
|
rows = []
|
|
for h, l, c, v in zip(high, low, close, volume):
|
|
rows.append(streamer.update((float(c), float(h), float(l), float(c), float(v), 0)))
|
|
streamed = np.array([math.nan if x is None else x for x in rows], dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
assert streamer.period == 20
|
|
assert streamer.warmup_period() == 20
|
|
assert streamer.is_ready()
|
|
streamer.reset()
|
|
assert not streamer.is_ready()
|
|
|
|
|
|
def test_value_area_streaming_matches_batch(ohlc_series):
|
|
high, low, close = ohlc_series
|
|
volume = np.linspace(100.0, 200.0, num=close.size, dtype=np.float64)
|
|
batch = ta.ValueArea(20, 50, 0.70).batch(high, low, volume)
|
|
|
|
streamer = ta.ValueArea(20, 50, 0.70)
|
|
rows = []
|
|
for h, l, v in zip(high, low, volume):
|
|
mid = float((h + l) / 2.0)
|
|
out = streamer.update((mid, float(h), float(l), mid, float(v), 0))
|
|
rows.append([math.nan, math.nan, math.nan] if out is None else list(out))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_initial_balance_streaming_matches_batch(ohlc_series):
|
|
high, low, _close = ohlc_series
|
|
batch = ta.InitialBalance(12).batch(high, low)
|
|
|
|
streamer = ta.InitialBalance(12)
|
|
rows = []
|
|
for h, l in zip(high, low):
|
|
mid = float((h + l) / 2.0)
|
|
out = streamer.update((mid, float(h), float(l), mid, 0.0, 0))
|
|
rows.append([math.nan, math.nan] if out is None else list(out))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_opening_range_streaming_matches_batch(ohlc_series):
|
|
high, low, close = ohlc_series
|
|
batch = ta.OpeningRange(6).batch(high, low, close)
|
|
|
|
streamer = ta.OpeningRange(6)
|
|
rows = []
|
|
for h, l, c in zip(high, low, close):
|
|
out = streamer.update((float(c), float(h), float(l), float(c), 0.0, 0))
|
|
rows.append([math.nan, math.nan, math.nan] if out is None else list(out))
|
|
streamed = np.array(rows, dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_orderbook_streaming_matches_batch():
|
|
snaps = [
|
|
(
|
|
[100.0, 99.0],
|
|
[1.0 + (i % 5), 1.0],
|
|
[101.0, 102.0],
|
|
[1.0 + ((i + 1) % 3), 1.0],
|
|
)
|
|
for i in range(30)
|
|
]
|
|
batch = ta.Microprice().batch(snaps)
|
|
streamer = ta.Microprice()
|
|
streamed = np.array([streamer.update(*snap) for snap in snaps], dtype=np.float64)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_tradeflow_streaming_matches_batch():
|
|
n = 30
|
|
price = np.full(n, 100.0)
|
|
size = np.array([1.0 + (i % 4) for i in range(n)], dtype=np.float64)
|
|
is_buy = [i % 3 != 0 for i in range(n)]
|
|
batch = ta.CumulativeVolumeDelta().batch(price, size, is_buy)
|
|
streamer = ta.CumulativeVolumeDelta()
|
|
streamed = np.array(
|
|
[streamer.update(price[i], size[i], is_buy[i]) for i in range(n)],
|
|
dtype=np.float64,
|
|
)
|
|
assert _equal_with_nan(batch, streamed)
|
|
|
|
|
|
def test_price_impact_streaming_matches_batch():
|
|
n = 30
|
|
mid = np.array([100.0 + 0.25 * math.sin(i * 0.5) for i in range(n)], dtype=np.float64)
|
|
is_buy = [i % 3 != 0 for i in range(n)]
|
|
price = np.array(
|
|
[mid[i] + (0.03 if is_buy[i] else -0.03) for i in range(n)], dtype=np.float64
|
|
)
|
|
size = np.array([1.0 + (i % 4) for i in range(n)], dtype=np.float64)
|
|
batch = ta.EffectiveSpread().batch(price, size, is_buy, mid)
|
|
streamer = ta.EffectiveSpread()
|
|
streamed = np.array(
|
|
[streamer.update(price[i], size[i], is_buy[i], mid[i]) for i in range(n)],
|
|
dtype=np.float64,
|
|
)
|
|
assert _equal_with_nan(batch, streamed)
|