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
This commit is contained in:
kingchenc
2026-06-15 04:48:51 +02:00
committed by GitHub
parent de1112ea91
commit 4f708d410d
573 changed files with 102337 additions and 77 deletions
+81
View File
@@ -0,0 +1,81 @@
fan_382,fan_500,fan_618
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
nan,nan,nan
106.18783174052382,103.4150093734408,100.64218700635777
105.37179310860878,102.34689598088185,99.32199885315491
104.55575447669375,101.2787825883229,98.00181069995206
103.73971584477871,100.21066919576396,96.6816225467492
102.92367721286368,99.14255580320501,95.36143439354635
102.10763858094865,98.07444241064607,94.04124624034348
101.29159994903361,97.00632901808711,92.72105808714062
100.47556131711858,95.93821562552817,91.40086993393777
99.65952268520354,94.87010223296923,90.08068178073492
98.8434840532885,93.80198884041027,88.76049362753206
98.02744542137347,92.73387544785133,87.4403054743292
97.21140678945844,91.66576205529239,86.12011732112634
96.3953681575434,90.59764866273345,84.7999291679235
110.70579782479021,115.26751169786068,119.82922557093116
111.69030330474102,116.55613143601619,121.42195956729137
112.67480878469182,117.84475117417169,123.01469356365155
113.65931426464263,119.1333709123272,124.60742756001176
114.64381974459343,120.42199065048268,126.20016155637195
115.62832522454423,121.71061038863819,127.79289555273215
116.61283070449502,122.99923012679369,129.38562954909236
117.59733618444584,124.2878498649492,130.97836354545257
118.58184166439663,125.5764696031047,132.57109754181275
116.15264664193357,113.63967810707534,111.12670957221711
115.52686177862468,112.82058797185427,110.11431416508387
114.90107691531578,112.0014978366332,109.10191875795063
114.27529205200688,111.18240770141213,108.08952335081739
113.64950718869798,110.36331756619107,107.07712794368416
113.02372232538909,109.54422743097001,106.06473253655092
112.3979374620802,108.72513729574894,105.05233712941768
111.7721525987713,107.90604716052788,104.03994172228444
111.1463677354624,107.0869570253068,103.0275463151512
110.52058287215351,106.26786689008574,102.01515090801797
109.89479800884462,105.44877675486468,101.00275550088473
109.26901314553572,104.6296866196436,99.99036009375149
120.26873350156579,124.59360852814862,128.91848355473147
121.26879540238579,125.90259007372455,130.53638474506332
122.26885730320579,127.21157161930047,132.15428593539514
123.26891920402579,128.5205531648764,133.772187125727
124.2689811048458,129.82953471045232,135.39008831605884
125.26904300566581,131.13851625602823,137.00798950639066
126.26910490648581,132.44749780160416,138.62589069672248
127.26916680730581,133.75647934718006,140.24379188705433
128.2692287081258,135.065460892756,141.86169307738618
125.99418449202925,123.1920624624854,120.38994043294153
125.2382447919687,122.20261259329618,119.16698039462366
124.48230509190813,121.21316272410695,117.94402035630578
123.72636539184757,120.22371285491774,116.7210603179879
122.970425691787,119.23426298572852,115.49810027967004
122.21448599172645,118.2448131165393,114.27514024135218
121.45854629166588,117.25536324735009,113.0521802030343
120.70260659160532,116.26591337816087,111.82922016471642
119.94666689154477,115.27646350897166,110.60626012639855
119.1907271914842,114.28701363978243,109.38330008808069
118.43478749142363,113.29756377059323,108.16034004976281
117.67884779136307,112.308113901404,106.93738001144494
131.25378613483693,135.57790629379883,139.90202645276074
132.18701432733604,136.79940916356207,141.4118039997881
133.12024251983516,138.02091203332532,142.92158154681547
134.0534707123343,139.24241490308856,144.43135909384284
134.98669890483342,140.46391777285183,145.94113664087024
135.91992709733253,141.68542064261507,147.4509141878976
136.85315528983165,142.9069235123783,148.96069173492498
137.7863834823308,144.12842638214158,150.47046928195235
1 fan_382 fan_500 fan_618
2 nan nan nan
3 nan nan nan
4 nan nan nan
5 nan nan nan
6 nan nan nan
7 nan nan nan
8 nan nan nan
9 nan nan nan
10 nan nan nan
11 nan nan nan
12 nan nan nan
13 nan nan nan
14 nan nan nan
15 nan nan nan
16 nan nan nan
17 nan nan nan
18 nan nan nan
19 106.18783174052382 103.4150093734408 100.64218700635777
20 105.37179310860878 102.34689598088185 99.32199885315491
21 104.55575447669375 101.2787825883229 98.00181069995206
22 103.73971584477871 100.21066919576396 96.6816225467492
23 102.92367721286368 99.14255580320501 95.36143439354635
24 102.10763858094865 98.07444241064607 94.04124624034348
25 101.29159994903361 97.00632901808711 92.72105808714062
26 100.47556131711858 95.93821562552817 91.40086993393777
27 99.65952268520354 94.87010223296923 90.08068178073492
28 98.8434840532885 93.80198884041027 88.76049362753206
29 98.02744542137347 92.73387544785133 87.4403054743292
30 97.21140678945844 91.66576205529239 86.12011732112634
31 96.3953681575434 90.59764866273345 84.7999291679235
32 110.70579782479021 115.26751169786068 119.82922557093116
33 111.69030330474102 116.55613143601619 121.42195956729137
34 112.67480878469182 117.84475117417169 123.01469356365155
35 113.65931426464263 119.1333709123272 124.60742756001176
36 114.64381974459343 120.42199065048268 126.20016155637195
37 115.62832522454423 121.71061038863819 127.79289555273215
38 116.61283070449502 122.99923012679369 129.38562954909236
39 117.59733618444584 124.2878498649492 130.97836354545257
40 118.58184166439663 125.5764696031047 132.57109754181275
41 116.15264664193357 113.63967810707534 111.12670957221711
42 115.52686177862468 112.82058797185427 110.11431416508387
43 114.90107691531578 112.0014978366332 109.10191875795063
44 114.27529205200688 111.18240770141213 108.08952335081739
45 113.64950718869798 110.36331756619107 107.07712794368416
46 113.02372232538909 109.54422743097001 106.06473253655092
47 112.3979374620802 108.72513729574894 105.05233712941768
48 111.7721525987713 107.90604716052788 104.03994172228444
49 111.1463677354624 107.0869570253068 103.0275463151512
50 110.52058287215351 106.26786689008574 102.01515090801797
51 109.89479800884462 105.44877675486468 101.00275550088473
52 109.26901314553572 104.6296866196436 99.99036009375149
53 120.26873350156579 124.59360852814862 128.91848355473147
54 121.26879540238579 125.90259007372455 130.53638474506332
55 122.26885730320579 127.21157161930047 132.15428593539514
56 123.26891920402579 128.5205531648764 133.772187125727
57 124.2689811048458 129.82953471045232 135.39008831605884
58 125.26904300566581 131.13851625602823 137.00798950639066
59 126.26910490648581 132.44749780160416 138.62589069672248
60 127.26916680730581 133.75647934718006 140.24379188705433
61 128.2692287081258 135.065460892756 141.86169307738618
62 125.99418449202925 123.1920624624854 120.38994043294153
63 125.2382447919687 122.20261259329618 119.16698039462366
64 124.48230509190813 121.21316272410695 117.94402035630578
65 123.72636539184757 120.22371285491774 116.7210603179879
66 122.970425691787 119.23426298572852 115.49810027967004
67 122.21448599172645 118.2448131165393 114.27514024135218
68 121.45854629166588 117.25536324735009 113.0521802030343
69 120.70260659160532 116.26591337816087 111.82922016471642
70 119.94666689154477 115.27646350897166 110.60626012639855
71 119.1907271914842 114.28701363978243 109.38330008808069
72 118.43478749142363 113.29756377059323 108.16034004976281
73 117.67884779136307 112.308113901404 106.93738001144494
74 131.25378613483693 135.57790629379883 139.90202645276074
75 132.18701432733604 136.79940916356207 141.4118039997881
76 133.12024251983516 138.02091203332532 142.92158154681547
77 134.0534707123343 139.24241490308856 144.43135909384284
78 134.98669890483342 140.46391777285183 145.94113664087024
79 135.91992709733253 141.68542064261507 147.4509141878976
80 136.85315528983165 142.9069235123783 148.96069173492498
81 137.7863834823308 144.12842638214158 150.47046928195235