Files
wickra/testdata/golden/g_AtrBands.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

3.9 KiB

1uppermiddlelower
2nannannan
3nannannan
4nannannan
5nannannan
6nannannan
7nannannan
8nannannan
9nannannan
10nannannan
11nannannan
12nannannan
13nannannan
14nannannan
15107.4576242803573599.6223384081602691.78705253596317
16106.0277560073707598.2842422758641290.54072854435748
17105.3760088708632997.7246988233490390.07338877583477
18105.5895243504705498.038353911641690.48718347281265
19106.7136755863383899.2418531767226791.77003076710696
20108.77596789525653101.2723551244401293.76874235362372
21111.68260593076432103.9931445740236396.30368321728294
22115.1384985136858107.2058450180107399.27319152233567
23118.79998929802753110.6681390048435102.53628871165947
24122.3233937371851114.11541363513378105.90743353308245
25125.52895341254967117.28439764388199109.03984187521431
26128.17748963959727119.93667863849153111.69586763738577
27130.0998134522951121.87999976774739113.66018608319966
28131.11987181851987122.98543345374605114.85099508897224
29131.13021135447178123.19889810845086115.26758486242993
30130.31345150051308122.5459890808828114.77852666125253
31128.82057750085346121.12969230082183113.4388071007902
32126.77648447407479119.12118485241757111.46588523076035
33124.35591773275388116.74454423507063109.13317073738739
34121.85109184831337114.2567321877702106.66237252722702
35119.51650143409877111.92464106224679104.33278069039481
36117.53787877807773110.00125312406458102.46462747005143
37116.10324185785626108.7030424002833101.30284294271033
38115.45189787861992108.19063769933508100.92937752005025
39115.81617136472467108.55447411796011101.29277687119556
40117.11876924278668109.80671474335324102.4946602439198
41119.18752089177063111.88016416080967104.57280742984871
42121.97532486350796114.63427081999565107.29321677648333
43125.33000921363842117.86768208634197110.40535495904552
44129.04661351187218121.33623047221137113.62584743255056
45132.76355060145823124.77474439137693116.78593818129563
46136.11531364276385127.92073514707224119.72615665138063
47138.7945815809989130.5378442655162122.28110695003353
48140.6446456556533132.43695669444105124.2292677332288
49141.55139752614045133.49309388747918125.4347902488179
50141.60242332451588133.65657776549278125.71073220646969
51140.77305230577312132.95746831142935125.14188431708558
52139.28304697581464131.50287840157117123.7227098273277
53137.32379385285304129.46740573130614121.61101760975926
54135.01824672769902127.07753652299444119.13682631828986
55132.53210395759075124.59141418625812116.65072441492549
56130.13013386635836122.27578013601534114.42142640567234
57128.16588383470605120.38214657630877112.5984093179115
58126.91782330201404119.12432966418496111.33083602635587
59126.43653956708025118.65934994918358110.88216033128691
60126.72171718354599119.07340619529367111.42509520704135
61127.88485668877826120.37417550208815112.86349431539804
62129.97493332051732122.49012753228324115.00532174404914
63132.83653698586798125.27691410373268117.71729122159739
64136.19681623942813128.53026338263376120.86371052583938
65139.7706944060697132.0042268780681124.23775935006648
66143.32968496117576135.43314928819893127.53661361522211
67146.5481167999892138.555398697196130.56268059440282
68149.12906011101606141.13673737507105133.14441463912604
69150.90648163291854142.99124553647894135.07600944003934
70151.8202047665887143.9979290014267136.17565323626474
71151.935278102078144.11152724502116136.28777638796433
72151.18253144660633143.36655638536055135.55058132411477
73149.57814652484404141.8742259615024134.17030539816074
74147.41311360519177139.81250491654941132.21189622790706
75145.0587825826475137.41022416199849129.76166574134947
76142.7072505300425134.9266357939324127.14602105782231
77140.52060801218852132.6282548753949124.73590173860129
78138.6538196765925130.76505243955756122.87628520252264
79137.32616360003695129.54812632180318121.7700890435694
80136.80989260441592129.13084441879352121.45179623317111
81137.179493910278129.59514479102842122.01079567177884