Files
wickra/testdata/golden/g_CentralPivotRange.csv
T
kingchenc 4f708d410d test: golden-pin the four de-duplicated indicators across all bindings (#305)
* test: golden-pin the four de-duplicated indicators across all C-ABI bindings

Extend gen_golden to emit reference fixtures for AdOscillator (ADOSC),
IntradayIntensity, AwesomeOscillatorHistogram and AverageDrawdown, and replay
them through the Go / C# / Java / R golden harnesses so their corrected
definitions stay bit-identical to the Rust core in every binding. Go suite
verified locally (gcc 13 + cgo): all 9 golden tests pass; C#/Java/R use the
same fixtures and harness pattern (CI-verified). First step of extending the
golden coverage beyond the seven archetype representatives.

* test: golden-pin the scalar-output tranche (308 indicators) against Rust

Extend gen_golden with a generated emit_scalar that writes reference fixtures
for every single-f64-output indicator (scalar / candle / pairwise input) using
valid constructor params, and add a manifest-driven generic Python golden
replay that reconstructs each by its native name and checks it bit-for-bit
against the Rust output. 308 indicators now value-tied to the Rust core in
Python (pytest: 308/308). Takes golden coverage from the 7 archetype
representatives to 308+ of the catalogue.

22 scalar indicators with non-default constructor constraints are skipped by
gen_golden for now (logged), as are non-f64-output ones; multi-output, exotic
inputs and the per-indicator arg arities of the C-ABI/Node replays follow.
Generated + verified locally with the full toolchain.

* test: golden-pin the multi-output tranche (70 indicators) in Python

Add a generated emit_multi to gen_golden (per-indicator Output-field access,
one CSV column per field) and a manifest-driven generic Python replay that
checks every field of each multi-output indicator against the Rust reference.
70 multi-output indicators now value-tied to Rust in Python; combined with the
scalar tranche, 378 indicators are golden-pinned. 8 multi with non-default
param constraints and 5 with non-f64 Output fields (Option/Vec/i64) are
deferred. pytest green.

* test(golden): add 30 constraint-tuned indicators to scalar/multi golden suite

Emit golden fixtures for 22 scalar-output and 8 multi-output indicators
whose constructors need non-default parameters (Alma, Jma, Psar, T3, Mama,
DoubleBollinger, ZigZag, ...). All 408 fixtures replay bit-for-bit through
the Python binding.

* test(golden): cover 36 missed scalar/multi indicators

Add 26 single-output (LinearRegression family, HT cycle, Candle
volatility estimators, DrawdownDuration) and 10 multi-output
(BollingerBands, MACD/MACDEXT/MACDFIX, Camarilla, VWAP bands, ...)
indicators to the golden suite. 444 fixtures replay bit-for-bit
through the Python binding.

* test(golden): cover 50 exotic-input indicators

Add deterministic synthetic feeders for the DerivativesTick (17),
CrossSection (15), Trade (8), TradeQuote (3) and OrderBook (7)
families, derived from the shared OHLCV input series in both
gen_golden and a new Python replay harness (test_golden_exotic).
All 494 fixtures replay bit-for-bit through the Python binding.

* test(golden): complete 514-indicator golden coverage

Add the final tranches: 3 mixed multi-output indicators (Ichimoku,
WilliamsFractals, LeadLagCrossCorrelation), 6 histogram profiles
(time/volume seasonality + TPO/volume price profiles), 10 alt-chart
bar builders and the footprint. Every one of the 514 distinct
indicators now has a Rust-generated g_<Canonical>.csv fixture and a
generic Python replay (scalar/multi/exotic/profile/bars), all passing
bit-for-bit.

* test(golden): add generic Node replay for all 514 indicators

A manifest-driven node:test harness reconstructs every indicator by its
native class, feeds the same synthetic stream derived from the shared
golden input, and checks output bit-for-bit against the Rust reference
fixtures (scalar/multi/exotic/profile/bars). node_manifest.json is
generated from index.d.ts plus the Python-side manifests. 514/514 pass.

* test(golden): add generated Go replay for all 514 indicators

golden_all_test.go (generated by gen_golden_test.py) reconstructs every
Go indicator, feeds the shared synthetic stream and checks output
bit-for-bit against the Rust reference fixtures. A reflection-based
comparator flattens multi-output structs, profiles and bar slices so one
path covers all archetypes. This is the first C-ABI binding verified
across the full catalogue. 514/514 pass.

* test(golden): add generated C# replay for all 514 indicators

GoldenAllTests.g.cs (generated by gen_golden_test.py) reconstructs every
C# indicator, feeds the shared synthetic stream and checks output
bit-for-bit against the Rust reference fixtures via a reflection-based
flatten covering scalar/multi/profile/bar archetypes. 514/514 pass.

Also add the '#nullable enable' directive the compiler requires to the
generated Indicators.g.cs, clearing the four CS8669 warnings on the
nullable double[] profile return types.

* fix(java): marshal C ABI bool params correctly; add 514 golden replay

The Java FFM binding marshalled the cross-section state flags (newHigh,
newLow, aboveMa, onBuySignal) as JAVA_DOUBLE arrays, but the C ABI takes
them as const bool* (one byte each), so the native side read the low byte
of each 8-byte double and saw every flag as false. Add WickraNative.
boolSegment and use it across the 15 cross-section indicators. Also pass
the MacdExt MaType arguments as byte to match the uint8_t downcall
descriptor (was int, throwing WrongMethodTypeException).

Add GoldenAllTest.java (generated by gen_golden_test.py): a reflection
runner replaying all 514 indicators against the Rust reference fixtures.
The bugs above were found by this test; 514/514 now pass.

* fix(r): marshal C ABI bool flags correctly; add 514 golden replay

The R wrapper passed the cross-section state flags as (bool *)REAL(x),
reinterpreting the 8-byte doubles as 1-byte bools so the native side read
every flag as false. Add wk_bool_vec to convert each flag vector into a
real C bool buffer and use it for all 15 cross-section update wrappers.

Add test-golden-all.R + generated golden_specs.R: a reflective runner
replaying all 514 indicators against the Rust reference fixtures. The bug
above was found by this test; verified 514/514 pass locally.

* test(golden): add WASM replay for all 514 indicators

A manifest-driven node:test harness loads the nodejs-target wasm-pack
build, reconstructs every indicator by its JS class, feeds the shared
synthetic stream and checks output bit-for-bit against the Rust
reference fixtures. wasm_manifest.json is generated from the wasm .d.ts
plus the shared manifests; a recursive flattener covers scalar, multi
(Reflect objects), profile and bar shapes. 514/514 pass locally
(wasm-pack build --target nodejs, then node --test).

* test(golden): add C and C++ replay for all 514 indicators

golden_test.c (generated by gen_golden_test.py) drives every indicator
through the C ABI (wickra.h) and checks output bit-for-bit against the
Rust reference fixtures. golden_test.cpp #includes the same source so the
identical runner is compiled and run under both gcc (C) and g++ (C++) via
the CMake targets golden_test / golden_test_cpp — proving the extern "C"
header is consumable from each language. Both 514/514 (verified via ctest).

* test(golden): gofmt the generated Go golden replay

* test(golden): make the Node fixture reader CRLF-safe and pin fixtures to LF
2026-06-15 04:48:51 +02:00

4.4 KiB

1pivottcbc
299.6666666666666799.8333333333333499.5
3103.16267454598328103.30893830629836103.0164107856682
4106.46632396532765106.55637434963901106.37627358101628
5109.30969002905226109.32147956266354109.29790049544098
6111.45910647185464111.52846427794583111.38974866576345
7112.74199773788952112.875521673814112.60847380196503
8113.06847380764877113.23347255708218112.90347505821536
9112.44424589558567112.60032201013414112.2881697810372
10110.97251301246604111.08145361594332110.86357240898876
11108.84406406881523108.87919670205369108.80893143557677
12106.3166460187776106.36392304968814106.26936898786707
13103.68631980047041103.80443142951896103.56820817142187
14101.25473880483469101.41476718594308101.0947104237263
1599.2968091995842599.4595738038722599.13404459529625
1698.0329415244163498.1585919001402297.90729114869247
1797.6091537174040397.6669262703765497.55138116443152
1898.0868539229111398.111103928545998.06260391727636
1999.4425238109509599.5428591280650999.3421884938368
20101.57606521173501101.72792025538246101.42421016808757
21104.32553529275576104.49173065212182104.1593399333897
22107.48553552770288107.62538078254896107.3456902728568
23110.82665131417549110.90590746884149110.7473951595095
24114.11393840247109114.11467601880244114.11320078613974
25117.12329605763098117.20384685075648117.04274526450548
26119.6553939855807119.79603631203612119.51475165912528
27121.54740034135453121.71370005455097121.3811006281581
28122.68295119326267122.83419232350437122.53171006302097
29123.0005912206809123.09974466456589122.90143777679592
30122.50041000814686122.52319954451482122.47762047177889
31121.2480003897514121.30715443421619121.1888463452866
32119.37441415670385119.50102880884698119.24779950456072
33117.0706953893436117.23377096648008116.90761981220712
34114.57595201454465114.73556192793188114.41634210115743
35112.1587734147477112.27583959099815112.04170723849725
36110.09297423674845110.13883479309038110.04711368040651
37108.62989574587948108.6664690730814108.59332241867756
38107.97053212992039108.08058491462774107.86047934521304
39108.24129915337737108.39788663566875108.08471167108598
40109.47714653729103109.64193064032216109.31236243425991
41111.61489250420503111.74752833250736111.4822566759027
42114.49824346605784114.56625714302673114.43022978908895
43117.8942032754348117.90746386998124117.88094268088837
44121.51880689228612121.6100951023235121.42751868224875
45125.06867496722403125.21564025514759124.92170967930046
46128.2540554225371128.42071556026954128.08739528480467
47130.82894581221407130.97449658556297130.68339503886517
48132.61456770121885132.70337320460774132.52576219782995
49133.51372898547731133.52404653447638133.50341143647825
50133.51518476304713133.58588126426997133.4444882618243
51132.68866514679192132.82306672911062132.55426356447322
52131.17247746428333131.33767793292725131.00727699563942
53129.1563006939515129.31185321262882129.00074817527417
54126.86189674888487126.96971663593965126.7540768618301
55124.52403581279573124.55772499952693124.49034662606454
56122.37315973892662122.42184954038225122.32446993747098
57120.62044223256866120.7395900606986120.50129440443872
58119.44519828628948119.60563259734174119.28476397523723
59118.98423170775713119.14667258704391118.82179082847036
60119.32275870519119.44743496013817119.19808245024183
61120.48694857241185120.54333510757368120.43056203725001
62122.4387103823207122.46441895730197122.41300180733944
63125.07389544503057125.17540477438165124.9723861156795
64128.2253492633656128.37780632299967128.0728922037315
65131.67207090888238131.83814889347522131.50599292428953
66135.15507483469676135.29411206144783135.0160376079457
67138.3994880837803138.47744339048813138.3215327770725
68141.1411629574787141.14337574868256141.13895016627487
69143.154923777789143.23676289844406143.07308465713396
70144.28078575968826144.42221413881902144.1393573805575
71144.44430932083742144.61070035874553144.2779182829293
72143.66778712039107143.81840248790633143.5171717528758
73142.07015356602253142.1681173682826141.97218976376246
74139.85515947975856139.8764867613631139.833832198154
75137.28916235919314137.3496932605958137.22863145779047
76134.6714977766173134.79906678527485134.54392876795973
77132.3015073284582132.46488110192655132.13813355498985
78130.44669455820846130.605873498883130.28751561753393
79129.31610321851522129.43211477015922129.20009166687123
80129.04196344134022129.08640393006687128.99752295261356
81129.6711671025228129.70917825826996129.63315594677562