24e723fa7d
* feat(rvi): add Relative Vigor Index
Dorsey's RVI = SMA(close - open, period) / SMA(high - low, period) over
a rolling window of period candles. Candle input, single parameter
period (default 10). Positive on average-bullish windows, negative on
average-bearish. Holds the previous value if the entire window has
zero range (denominator undefined).
Reference: Donald Dorsey, also pandas-ta rvi.
Touchpoints: rvi.rs + mod.rs + lib.rs re-export, PyRvi + __init__.py
+ test_new_indicators CANDLE_SCALAR + test_known_values reference,
RviNode (4-column OHLC batch) + index.d.ts/index.js + indicators.test
.js factory + reference, WasmRvi + make_candle_ohlc helper, candle-fuzz
target + criterion bench, README + CHANGELOG.
* feat(pgo): add Pretty Good Oscillator
Mark Johnson's PGO = (close - SMA(close, period)) / EMA(TR, period).
Counts roughly how many ATR-equivalents the close sits from its
period-bar mean. Candle input, single parameter period (default 14).
Johnson's heuristic uses +3/-3 crossings as entry signals.
Touchpoints: pgo.rs + mod.rs + lib.rs re-export, PyPgo + __init__.py
+ test_new_indicators CANDLE_SCALAR + test_known_values flat-close
reference, PgoNode (h/l/c) + index.d.ts/index.js + indicators.test.js
factory + reference, WasmPgo, candle-fuzz target + bench, README +
CHANGELOG.
* feat(kst): add Know Sure Thing (Pring)
Pring's long-horizon momentum oscillator: weighted sum of four
SMA-smoothed ROC series with fixed weights 1, 2, 3, 4, plus an SMA
signal line. Nine parameters (four ROC periods, four SMA periods, one
signal period); classic() applies Pring's recommended defaults.
Multi-output indicator emitting KstOutput { kst, signal }.
Touchpoints: kst.rs + mod.rs + lib.rs re-export, PyKst + __init__.py
+ test_new_indicators MULTI + test_known_values flat-input reference,
KstNode + KstValue + index.d.ts/index.js + indicators.test.js multi
factory + reference, WasmKst (manual JsValue object), scalar-fuzz
target (handled outside the f64-output drive helper), README +
CHANGELOG.
* feat(smi): add Stochastic Momentum Index (Blau)
Blau's doubly-EMA-smoothed bounded oscillator: measures the close's
displacement from the centre of the recent high-low range, scaled by
the smoothed range. Candle input, three parameters (period, d_period,
d2_period) with defaults 5 / 3 / 3.
Internally feeds both the displacement-EMA stack and the range-EMA
stack on every candle so they warm up in parallel (gating either
behind the other starves the second by one input).
Touchpoints: smi.rs + mod.rs + lib.rs re-export, PySmi + __init__.py
+ test_new_indicators CANDLE_SCALAR + test_known_values flat-input
reference, SmiNode + index.d.ts/index.js + indicators.test.js factory
+ reference, WasmSmi, candle-fuzz target, README + CHANGELOG.
* feat(laguerre-rsi): add Ehlers Laguerre RSI
Four-stage Laguerre polynomial filter wrapped in an RSI-style up/down
accumulator. Single gamma in [0, 1] (default 0.5) trades lag for
smoothness. State is seeded by setting all four L_i to the first input
so a constant series stays at the neutral 50. Output clamped to
[0, 100] to absorb floating-point rounding.
Reference: Ehlers, Time Warp - Without Space Travel, 2002.
Touchpoints: laguerre_rsi.rs + mod.rs + lib.rs re-export, PyLaguerreRsi
+ __init__.py + test_new_indicators SCALAR + test_known_values neutral
reference, LaguerreRsiNode + index.d.ts/index.js + indicators.test.js
factory + reference, WasmLaguerreRsi via scalar macro, scalar-fuzz
target, README + CHANGELOG.
* feat(connors-rsi): add Connors RSI (CRSI)
Larry Connors' 3-component aggregate: RSI(close), RSI(streak), and
PercentRank of the 1-period return over the last period_rank returns.
Each component is bounded in [0, 100] so the aggregate is too.
Three parameters (period_rsi, period_streak, period_rank) with
defaults 3 / 2 / 100. Streak tracks consecutive up/down runs (resets
to 0 on unchanged close).
Touchpoints: connors_rsi.rs + mod.rs + lib.rs re-export, PyConnorsRsi
+ __init__.py + test_new_indicators SCALAR + test_known_values bounded
reference, ConnorsRsiNode + index.d.ts/index.js + indicators.test.js
factory + reference, WasmConnorsRsi via scalar macro, scalar-fuzz
target, README + CHANGELOG.
* feat(inertia): add Dorsey Inertia (RVI + LinReg)
Donald Dorsey's Inertia — a LinearRegression smoothing of the RVI
series. Endpoint of an n-bar least-squares fit of RVI is the indicator
reading. Preserves trend direction while damping the ratio. Candle
input, two parameters (rvi_period, linreg_period) with defaults 14 / 20.
Touchpoints: inertia.rs + mod.rs + lib.rs re-export, PyInertia +
__init__.py + test_new_indicators CANDLE_SCALAR + test_known_values
constant reference, InertiaNode (4-column OHLC batch) + index.d.ts /
index.js + indicators.test.js factory + reference, WasmInertia,
candle-fuzz target, README + CHANGELOG.
* test(kst): Move KST out of MULTI dict (it is scalar-input)
KST sits in the MULTI dict (candle-input, multi-output) but its
update() takes a single f64, not a candle tuple. The shared streaming
loop in test_multi_streaming_matches_batch fed the OHLCV tuple in,
which crashed with `TypeError: argument 'value': must be real number,
not tuple` on every Python matrix entry.
Split into a new MULTI_SCALAR_INPUT dict with its own test function
that feeds the close-price stream as floats. KST is currently the
only such indicator; structure is ready for future scalar-input
multi-output additions (e.g. some MACD-shaped indicators).
* test(coverage): Cover SMI zero-range and ConnorsRsi zero-prev cold paths
codecov/patch on PR 40 flagged two uncovered defensive branches:
- SMI returns self.current early when the smoothed range collapses to
zero (`r2 <= 0.0`) so the formula stays defined. Exercised by feeding
bars where high == low.
- ConnorsRsi skips the ROC ring-buffer update when the previous price
is exactly zero so the divide-by-zero in `(input - prev) / prev` is
impossible. Exercised by seeding the first bar at 0.0.
283 lines
10 KiB
Python
283 lines
10 KiB
Python
"""Reference-value tests that pin numerical behaviour from the Python side."""
|
||
|
||
from __future__ import annotations
|
||
|
||
import math
|
||
|
||
import numpy as np
|
||
import pytest
|
||
|
||
import wickra as ta
|
||
|
||
|
||
def test_sma_constant_series():
|
||
out = ta.SMA(5).batch(np.full(20, 42.0, dtype=np.float64))
|
||
# First 4 are warmup -> NaN; rest equal 42.
|
||
assert np.all(np.isnan(out[:4]))
|
||
assert np.allclose(out[4:], 42.0)
|
||
|
||
|
||
def test_sma_known_window():
|
||
# SMA(3) of [2, 4, 6, 8, 10] -> [_, _, 4, 6, 8]
|
||
out = ta.SMA(3).batch(np.array([2.0, 4.0, 6.0, 8.0, 10.0]))
|
||
assert math.isnan(out[0]) and math.isnan(out[1])
|
||
np.testing.assert_allclose(out[2:], [4.0, 6.0, 8.0])
|
||
|
||
|
||
def test_ema_seed_equals_simple_mean_of_first_window():
|
||
# EMA(5) seed = mean([10, 20, 30, 40, 50]) = 30
|
||
out = ta.EMA(5).batch(np.array([10.0, 20.0, 30.0, 40.0, 50.0]))
|
||
assert math.isnan(out[0])
|
||
assert math.isclose(out[4], 30.0, abs_tol=1e-12)
|
||
|
||
|
||
def test_wma_known_window():
|
||
# WMA(4) of [1, 2, 3, 4] = (1*1 + 2*2 + 3*3 + 4*4)/10 = 3
|
||
out = ta.WMA(4).batch(np.array([1.0, 2.0, 3.0, 4.0]))
|
||
assert math.isnan(out[0]) and math.isnan(out[1]) and math.isnan(out[2])
|
||
assert math.isclose(out[3], 3.0, abs_tol=1e-12)
|
||
|
||
|
||
def test_rsi_pure_uptrend_is_100():
|
||
out = ta.RSI(14).batch(np.arange(1.0, 21.0, dtype=np.float64))
|
||
np.testing.assert_allclose(out[14:], 100.0)
|
||
|
||
|
||
def test_rsi_pure_downtrend_is_0():
|
||
out = ta.RSI(14).batch(np.arange(20.0, 0.0, -1.0))
|
||
np.testing.assert_allclose(out[14:], 0.0)
|
||
|
||
|
||
def test_rsi_flat_series_is_50():
|
||
out = ta.RSI(14).batch(np.full(30, 100.0))
|
||
np.testing.assert_allclose(out[14:], 50.0)
|
||
|
||
|
||
def test_rsi_wilder_textbook_first_value():
|
||
"""Wilder's original 14-period example, ~70.46 at the first emit."""
|
||
prices = np.array(
|
||
[
|
||
44.34, 44.09, 44.15, 43.61, 44.33, 44.83, 45.10, 45.42, 45.84, 46.08,
|
||
45.89, 46.03, 45.61, 46.28, 46.28,
|
||
],
|
||
dtype=np.float64,
|
||
)
|
||
out = ta.RSI(14).batch(prices)
|
||
assert math.isclose(out[14], 70.464, abs_tol=0.05)
|
||
|
||
|
||
def test_inertia_constant_rvi_passes_through_linreg():
|
||
# Every bar identical (open, high, low, close) = (10, 11, 9, 10.5):
|
||
# RVI = (c-o) / (h-l) = 0.5 / 2 = 0.25 every bar. LinReg of a constant
|
||
# series equals that constant after warmup.
|
||
n = 60
|
||
out = ta.Inertia(3, 4).batch(
|
||
np.full(n, 10.0), np.full(n, 11.0), np.full(n, 9.0), np.full(n, 10.5)
|
||
)
|
||
# warmup_period = 3 + 4 - 1 = 6.
|
||
np.testing.assert_allclose(out[5:], 0.25, atol=1e-12)
|
||
|
||
|
||
def test_connors_rsi_output_is_bounded():
|
||
# CRSI is the average of three [0, 100] components, so the aggregate must
|
||
# also sit in [0, 100] after warmup.
|
||
prices = 100.0 + 20.0 * np.sin(np.linspace(0, 30, 250))
|
||
out = ta.ConnorsRSI(3, 2, 100).batch(prices.astype(np.float64))
|
||
ready = out[~np.isnan(out)]
|
||
assert ready.size > 0
|
||
assert ready.min() >= 0.0
|
||
assert ready.max() <= 100.0
|
||
|
||
|
||
def test_laguerre_rsi_constant_series_stays_at_mid_band():
|
||
# All four Laguerre stages seed to the first input, so subsequent flat
|
||
# inputs keep them equal and the up/down accumulator is 0 — Wickra maps
|
||
# that to the neutral 50.
|
||
out = ta.LaguerreRSI(0.5).batch(np.full(40, 42.0, dtype=np.float64))
|
||
np.testing.assert_allclose(out, 50.0, atol=1e-12)
|
||
|
||
|
||
def test_smi_close_at_centre_yields_zero():
|
||
# Close at the midpoint of a flat high/low range -> displacement is
|
||
# always zero -> SMI converges to 0.
|
||
n = 60
|
||
out = ta.SMI(5, 3, 3).batch(np.full(n, 11.0), np.full(n, 9.0), np.full(n, 10.0))
|
||
# warmup_period = 5 + 3 + 3 - 2 = 9.
|
||
np.testing.assert_allclose(out[8:], 0.0, atol=1e-12)
|
||
|
||
|
||
def test_kst_constant_series_yields_zero():
|
||
# ROC is zero on a flat input, so every RCMA is zero, so KST and its
|
||
# signal SMA are both zero after warmup.
|
||
kst = ta.KST(10, 15, 20, 30, 10, 10, 10, 15, 9)
|
||
out = kst.batch(np.full(80, 42.0, dtype=np.float64))
|
||
warmup = kst.warmup_period()
|
||
# Use NaN-safe comparison on the post-warmup tail.
|
||
tail = out[warmup - 1 :]
|
||
assert np.all(np.isfinite(tail))
|
||
np.testing.assert_allclose(tail, 0.0, atol=1e-12)
|
||
|
||
|
||
def test_pgo_flat_close_yields_zero():
|
||
# On a constant close the numerator (close − SMA) is zero, so PGO emits 0
|
||
# regardless of the TR-EMA in the denominator.
|
||
n = 20
|
||
high = np.full(n, 11.0)
|
||
low = np.full(n, 9.0)
|
||
close = np.full(n, 10.0)
|
||
out = ta.PGO(5).batch(high, low, close)
|
||
assert np.all(np.isnan(out[:4]))
|
||
np.testing.assert_allclose(out[4:], 0.0, atol=1e-12)
|
||
|
||
|
||
def test_rvi_reference_value_period_2():
|
||
# Two bars: (open, high, low, close) = (10, 11, 9, 10.5), (10.5, 11.5, 10, 11).
|
||
# num = (0.5 + 0.5) = 1.0; den = (2.0 + 1.5) = 3.5; RVI = 1 / 3.5.
|
||
out = ta.RVI(2).batch(
|
||
np.array([10.0, 10.5]),
|
||
np.array([11.0, 11.5]),
|
||
np.array([9.0, 10.0]),
|
||
np.array([10.5, 11.0]),
|
||
)
|
||
assert math.isnan(out[0])
|
||
assert math.isclose(out[1], 1.0 / 3.5, abs_tol=1e-12)
|
||
|
||
|
||
def test_alma_constant_series_yields_the_constant():
|
||
# ALMA's Gaussian weights are normalised, so any constant series is
|
||
# reproduced exactly after warmup.
|
||
out = ta.ALMA(9, 0.85, 6.0).batch(np.full(30, 42.0, dtype=np.float64))
|
||
assert np.all(np.isnan(out[:8]))
|
||
np.testing.assert_allclose(out[8:], 42.0, atol=1e-12)
|
||
|
||
|
||
def test_alma_reference_value_period_3():
|
||
# ALMA(period=3, offset=0.85, sigma=6) on [10, 20, 30].
|
||
# m = 0.85 * 2 = 1.7; s = 3 / 6 = 0.5; 2*s^2 = 0.5.
|
||
out = ta.ALMA(3, 0.85, 6.0).batch(np.array([10.0, 20.0, 30.0]))
|
||
assert math.isnan(out[0]) and math.isnan(out[1])
|
||
# Independently compute the expected Gaussian-weighted sum.
|
||
w = np.exp(-((np.arange(3, dtype=np.float64) - 1.7) ** 2) / 0.5)
|
||
expected = float(np.dot([10.0, 20.0, 30.0], w) / w.sum())
|
||
assert math.isclose(out[2], expected, abs_tol=1e-12)
|
||
# Sanity: heavy offset toward the newest sample lifts the average above
|
||
# the simple mean of 20.
|
||
assert out[2] > 20.0
|
||
|
||
|
||
def test_mcginley_dynamic_constant_series_yields_the_constant():
|
||
# ratio = 1, so the recurrence collapses to MD + 0 / divisor = MD.
|
||
out = ta.McGinleyDynamic(5).batch(np.full(30, 42.0, dtype=np.float64))
|
||
assert np.all(np.isnan(out[:4]))
|
||
np.testing.assert_allclose(out[4:], 42.0, atol=1e-12)
|
||
|
||
|
||
def test_mcginley_dynamic_reference_value():
|
||
# Period 3, seed = SMA([10, 20, 30]) = 20.0. Next price 40.0:
|
||
# ratio = 2; divisor = 0.6 * 3 * 16 = 28.8; next = 20 + 20/28.8.
|
||
out = ta.McGinleyDynamic(3).batch(np.array([10.0, 20.0, 30.0, 40.0]))
|
||
assert math.isnan(out[0]) and math.isnan(out[1])
|
||
assert math.isclose(out[2], 20.0, abs_tol=1e-12)
|
||
expected = 20.0 + 20.0 / (0.6 * 3.0 * 16.0)
|
||
assert math.isclose(out[3], expected, abs_tol=1e-12)
|
||
|
||
|
||
def test_frama_constant_series_yields_the_constant():
|
||
# Flat input -> degenerate ranges -> alpha clamps to 0.01 and the EMA
|
||
# recurrence holds the seed value.
|
||
out = ta.FRAMA(4).batch(np.full(20, 42.0, dtype=np.float64))
|
||
assert np.all(np.isnan(out[:3]))
|
||
np.testing.assert_allclose(out[3:], 42.0, atol=1e-12)
|
||
|
||
|
||
def test_frama_pure_uptrend_hugs_latest():
|
||
# Monotonic uptrend -> alpha pushed toward 1.0, FRAMA tracks close.
|
||
out = ta.FRAMA(4).batch(np.arange(1.0, 9.0, dtype=np.float64))
|
||
assert math.isclose(out[-1], 8.0, abs_tol=0.05)
|
||
|
||
|
||
def test_jma_constant_series_yields_the_constant():
|
||
# JMA seeds e0 and the output to the first input, so a constant series
|
||
# is reproduced exactly from the first sample.
|
||
out = ta.JMA(14, 0.0, 2).batch(np.full(30, 42.0, dtype=np.float64))
|
||
np.testing.assert_allclose(out, 42.0, atol=1e-12)
|
||
|
||
|
||
def test_evwma_reference_value_period_2():
|
||
# EVWMA(2). Bars: (close, volume) = (10, 1), (20, 3), (30, 1).
|
||
# Bar 2: sum_v = 4, seeded prev = 20, EVWMA = (1*20 + 3*20)/4 = 20.
|
||
# Bar 3: sum_v = 4 (drops 1, gains 1), EVWMA = (3*20 + 1*30)/4 = 22.5.
|
||
out = ta.EVWMA(2).batch(np.array([10.0, 20.0, 30.0]), np.array([1.0, 3.0, 1.0]))
|
||
assert math.isnan(out[0])
|
||
assert math.isclose(out[1], 20.0, abs_tol=1e-12)
|
||
assert math.isclose(out[2], 22.5, abs_tol=1e-12)
|
||
|
||
|
||
def test_alligator_constant_series_holds_at_median_price():
|
||
# Median price = (11 + 9) / 2 = 10 on every candle, so all three SMMAs
|
||
# seed at 10 and stay there.
|
||
n = 30
|
||
high = np.full(n, 11.0)
|
||
low = np.full(n, 9.0)
|
||
out = ta.Alligator(13, 8, 5).batch(high, low)
|
||
assert out.shape == (n, 3)
|
||
for row in out[12:]:
|
||
assert math.isclose(row[0], 10.0, abs_tol=1e-12)
|
||
assert math.isclose(row[1], 10.0, abs_tol=1e-12)
|
||
assert math.isclose(row[2], 10.0, abs_tol=1e-12)
|
||
|
||
|
||
def test_vidya_constant_series_holds_seed():
|
||
# CMO = 0 on a flat series -> alpha = 0 -> VIDYA holds its seed value.
|
||
out = ta.VIDYA(14, 4).batch(np.full(20, 42.0, dtype=np.float64))
|
||
assert np.all(np.isnan(out[:4]))
|
||
np.testing.assert_allclose(out[4:], 42.0, atol=1e-12)
|
||
|
||
|
||
def test_macd_constant_series_converges_to_zero():
|
||
out = ta.MACD().batch(np.full(200, 100.0))
|
||
# Last row's MACD and signal must be ~0.
|
||
last = out[-1]
|
||
assert math.isclose(last[0], 0.0, abs_tol=1e-9)
|
||
assert math.isclose(last[1], 0.0, abs_tol=1e-9)
|
||
assert math.isclose(last[2], 0.0, abs_tol=1e-9)
|
||
|
||
|
||
def test_bollinger_constant_series_zero_width():
|
||
out = ta.BollingerBands(20, 2.0).batch(np.full(50, 100.0))
|
||
row = out[-1]
|
||
np.testing.assert_allclose(row, [100.0, 100.0, 100.0, 0.0], atol=1e-12)
|
||
|
||
|
||
def test_bollinger_upper_middle_lower_ordering():
|
||
out = ta.BollingerBands(20, 2.0).batch(np.linspace(50.0, 150.0, 100))
|
||
ready = out[~np.isnan(out[:, 0])]
|
||
assert np.all(ready[:, 0] >= ready[:, 1])
|
||
assert np.all(ready[:, 1] >= ready[:, 2])
|
||
assert np.all(ready[:, 3] >= 0.0)
|
||
|
||
|
||
def test_atr_constant_range_constant_output():
|
||
high = np.full(30, 11.0)
|
||
low = np.full(30, 9.0)
|
||
close = np.full(30, 10.0)
|
||
out = ta.ATR(14).batch(high, low, close)
|
||
# Once seeded, ATR equals the constant TR of 2.
|
||
np.testing.assert_allclose(out[13:], 2.0, atol=1e-12)
|
||
|
||
|
||
def test_stochastic_extremes():
|
||
# Close at the top of a 3-period range -> %K = 100.
|
||
high = np.array([10.0, 11.0, 12.0])
|
||
low = np.array([8.0, 9.0, 10.0])
|
||
close = np.array([9.0, 10.0, 12.0])
|
||
out = ta.Stochastic(3, 1).batch(high, low, close)
|
||
assert math.isclose(out[2, 0], 100.0, abs_tol=1e-12)
|
||
|
||
|
||
def test_obv_cumulative_known_sequence():
|
||
close = np.array([10.0, 11.0, 10.5, 10.5, 12.0])
|
||
volume = np.array([100.0, 20.0, 30.0, 40.0, 10.0])
|
||
out = ta.OBV().batch(close, volume)
|
||
np.testing.assert_allclose(out, [0.0, 20.0, -10.0, -10.0, 0.0])
|