2be21df803
* feat(core): add microstructure input types (OrderBook, Trade, TradeQuote) New non-OHLCV value types for the order-book / trade-flow indicator family: Level, OrderBook (sorted, uncrossed depth snapshot), Side, Trade (with aggressor side), and TradeQuote (trade paired with prevailing mid). Each has a validating constructor plus a new_unchecked hot-path constructor, with full unit coverage. Adds InvalidOrderBook / InvalidTrade error variants. * feat(core): add 5 order-book microstructure indicators OrderBookImbalanceTop1/TopN/Full (signed depth imbalance), Microprice (size-weighted fair value), and QuotedSpread (top-of-book spread in bps). All consume the OrderBook snapshot type, emit f64, are stateless and ready after the first snapshot, with full unit coverage. Registers a new Microstructure family in the taxonomy. * feat(bindings): expose order-book microstructure indicators Python, Node, and WASM bindings for OrderBookImbalanceTop1/TopN/Full, Microprice and QuotedSpread. Each takes a depth snapshot via four equal-length (bid_px, bid_sz, ask_px, ask_sz) arrays. Python and Node expose a batch over a list of snapshots; WASM exposes per-snapshot update (the streaming model that fits a browser book feed). Regenerates node index.d.ts/.js and registers the new InvalidOrderBook/InvalidTrade arms in the Python error mapping. * test(bindings,fuzz): cover order-book microstructure indicators Python: smoke, reference values, streaming-vs-batch, lifecycle/repr and input validation (mismatched lengths, crossed book, misordered levels, zero levels) for all five order-book indicators. Node: reference values, streaming-vs-batch, and rejection cases. Adds an indicator_update_orderbook fuzz target driving every order-book indicator over arbitrary (incl. degenerate) snapshots. * bench(microstructure): synthetic order-book benchmarks Add a bench_orderbook_input harness and synthesise a five-level book around each candle close (no order-book dataset ships with the repo). Benches the cheapest (top-of-book imbalance) and most-expensive (full-depth imbalance) plus microprice, matching the curated cheapest/expensive-per-family approach. * docs: add Microstructure family + bump indicator counter to 224 README gains the Microstructure family row (order-book imbalance, microprice, quoted spread) and the indicator counter goes 219 -> 224 across seventeen families; CHANGELOG records the new order-book indicators and value types.
153 lines
4.0 KiB
Python
153 lines
4.0 KiB
Python
"""Tests for the indicator lifecycle methods: reset, is_ready, warmup_period, repr."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import numpy as np
|
|
import pytest
|
|
|
|
import wickra as ta
|
|
|
|
SCALAR_INDICATORS = [
|
|
(ta.SMA, (14,)),
|
|
(ta.EMA, (14,)),
|
|
(ta.WMA, (14,)),
|
|
(ta.RSI, (14,)),
|
|
(ta.MACD, ()),
|
|
(ta.BollingerBands, ()),
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize("cls, args", SCALAR_INDICATORS)
|
|
def test_is_ready_transitions_after_warmup(cls, args):
|
|
ind = cls(*args)
|
|
assert not ind.is_ready()
|
|
series = np.linspace(1.0, 200.0, 200)
|
|
ind.batch(series)
|
|
assert ind.is_ready()
|
|
|
|
|
|
@pytest.mark.parametrize("cls, args", SCALAR_INDICATORS)
|
|
def test_reset_returns_to_initial_state(cls, args):
|
|
ind = cls(*args)
|
|
ind.batch(np.linspace(1.0, 200.0, 200))
|
|
assert ind.is_ready()
|
|
ind.reset()
|
|
assert not ind.is_ready()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"cls, args, period",
|
|
[
|
|
(ta.SMA, (14,), 14),
|
|
(ta.EMA, (14,), 14),
|
|
(ta.WMA, (14,), 14),
|
|
(ta.RSI, (14,), 15),
|
|
(ta.BollingerBands, (20, 2.0), 20),
|
|
],
|
|
)
|
|
def test_warmup_period(cls, args, period):
|
|
assert cls(*args).warmup_period() == period
|
|
|
|
|
|
def test_repr_contains_class_and_parameters():
|
|
assert "SMA" in repr(ta.SMA(14))
|
|
assert "14" in repr(ta.SMA(14))
|
|
assert "BollingerBands" in repr(ta.BollingerBands(20, 2.0))
|
|
|
|
|
|
def test_constructor_rejects_zero_period():
|
|
with pytest.raises(ValueError):
|
|
ta.SMA(0)
|
|
with pytest.raises(ValueError):
|
|
ta.RSI(0)
|
|
|
|
|
|
def test_macd_rejects_fast_geq_slow():
|
|
with pytest.raises(ValueError):
|
|
ta.MACD(fast=26, slow=12, signal=9)
|
|
|
|
|
|
def test_bollinger_rejects_non_positive_multiplier():
|
|
with pytest.raises(ValueError):
|
|
ta.BollingerBands(20, 0.0)
|
|
with pytest.raises(ValueError):
|
|
ta.BollingerBands(20, -1.0)
|
|
|
|
|
|
def test_candle_dict_input_supported():
|
|
atr = ta.ATR(2)
|
|
atr.update({"open": 10.0, "high": 11.0, "low": 9.0, "close": 10.5, "volume": 1.0})
|
|
v = atr.update({"open": 10.5, "high": 12.0, "low": 10.0, "close": 11.0, "volume": 1.0})
|
|
assert v is not None
|
|
|
|
|
|
def test_candle_tuple_input_supported():
|
|
atr = ta.ATR(2)
|
|
atr.update((10.0, 11.0, 9.0, 10.5, 1.0, 0))
|
|
v = atr.update((10.5, 12.0, 10.0, 11.0, 1.0, 1))
|
|
assert v is not None
|
|
|
|
|
|
def test_initial_balance_reset_unlocks():
|
|
ib = ta.InitialBalance(2)
|
|
assert not ib.is_ready()
|
|
ib.update((101.0, 102.0, 100.0, 101.0, 0.0, 0))
|
|
ib.update((102.0, 103.0, 101.0, 102.0, 0.0, 1))
|
|
assert ib.is_ready()
|
|
assert ib.is_locked()
|
|
ib.reset()
|
|
assert not ib.is_ready()
|
|
assert not ib.is_locked()
|
|
|
|
|
|
def test_opening_range_reset_unlocks():
|
|
or_ind = ta.OpeningRange(2)
|
|
or_ind.update((101.0, 102.0, 100.0, 101.0, 0.0, 0))
|
|
or_ind.update((102.0, 103.0, 101.0, 102.0, 0.0, 1))
|
|
assert or_ind.is_locked()
|
|
or_ind.reset()
|
|
assert not or_ind.is_locked()
|
|
|
|
|
|
def test_value_area_warmup_equals_period():
|
|
assert ta.ValueArea(20, 50, 0.70).warmup_period() == 20
|
|
assert ta.ValueArea(10, 30, 0.80).warmup_period() == 10
|
|
|
|
|
|
def test_ehlers_indicators_lifecycle():
|
|
# Spot-check a few Family-10 entries beyond what test_new_indicators covers.
|
|
series = np.linspace(1.0, 200.0, 200) + np.sin(np.arange(200) * 0.3) * 5.0
|
|
for ind in [
|
|
ta.SuperSmoother(10),
|
|
ta.FisherTransform(10),
|
|
ta.MAMA(),
|
|
ta.HilbertDominantCycle(),
|
|
ta.SineWave(),
|
|
]:
|
|
assert not ind.is_ready()
|
|
ind.batch(series)
|
|
assert ind.is_ready()
|
|
ind.reset()
|
|
assert not ind.is_ready()
|
|
|
|
|
|
def test_orderbook_lifecycle():
|
|
snapshot = ([100.0], [1.0], [101.0], [1.0])
|
|
for ind in [
|
|
ta.OrderBookImbalanceTop1(),
|
|
ta.OrderBookImbalanceTopN(3),
|
|
ta.OrderBookImbalanceFull(),
|
|
ta.Microprice(),
|
|
ta.QuotedSpread(),
|
|
]:
|
|
assert ind.warmup_period() == 1
|
|
assert not ind.is_ready()
|
|
ind.update(*snapshot)
|
|
assert ind.is_ready()
|
|
ind.reset()
|
|
assert not ind.is_ready()
|
|
|
|
|
|
def test_orderbook_topn_repr():
|
|
assert repr(ta.OrderBookImbalanceTopN(5)) == "OrderBookImbalanceTopN(levels=5)"
|