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

1fan_382fan_500fan_618
2nannannan
3nannannan
4nannannan
5nannannan
6nannannan
7nannannan
8nannannan
9nannannan
10nannannan
11nannannan
12nannannan
13nannannan
14nannannan
15nannannan
16nannannan
17nannannan
18nannannan
19106.18783174052382103.4150093734408100.64218700635777
20105.37179310860878102.3468959808818599.32199885315491
21104.55575447669375101.278782588322998.00181069995206
22103.73971584477871100.2106691957639696.6816225467492
23102.9236772128636899.1425558032050195.36143439354635
24102.1076385809486598.0744424106460794.04124624034348
25101.2915999490336197.0063290180871192.72105808714062
26100.4755613171185895.9382156255281791.40086993393777
2799.6595226852035494.8701022329692390.08068178073492
2898.843484053288593.8019888404102788.76049362753206
2998.0274454213734792.7338754478513387.4403054743292
3097.2114067894584491.6657620552923986.12011732112634
3196.395368157543490.5976486627334584.7999291679235
32110.70579782479021115.26751169786068119.82922557093116
33111.69030330474102116.55613143601619121.42195956729137
34112.67480878469182117.84475117417169123.01469356365155
35113.65931426464263119.1333709123272124.60742756001176
36114.64381974459343120.42199065048268126.20016155637195
37115.62832522454423121.71061038863819127.79289555273215
38116.61283070449502122.99923012679369129.38562954909236
39117.59733618444584124.2878498649492130.97836354545257
40118.58184166439663125.5764696031047132.57109754181275
41116.15264664193357113.63967810707534111.12670957221711
42115.52686177862468112.82058797185427110.11431416508387
43114.90107691531578112.0014978366332109.10191875795063
44114.27529205200688111.18240770141213108.08952335081739
45113.64950718869798110.36331756619107107.07712794368416
46113.02372232538909109.54422743097001106.06473253655092
47112.3979374620802108.72513729574894105.05233712941768
48111.7721525987713107.90604716052788104.03994172228444
49111.1463677354624107.0869570253068103.0275463151512
50110.52058287215351106.26786689008574102.01515090801797
51109.89479800884462105.44877675486468101.00275550088473
52109.26901314553572104.629686619643699.99036009375149
53120.26873350156579124.59360852814862128.91848355473147
54121.26879540238579125.90259007372455130.53638474506332
55122.26885730320579127.21157161930047132.15428593539514
56123.26891920402579128.5205531648764133.772187125727
57124.2689811048458129.82953471045232135.39008831605884
58125.26904300566581131.13851625602823137.00798950639066
59126.26910490648581132.44749780160416138.62589069672248
60127.26916680730581133.75647934718006140.24379188705433
61128.2692287081258135.065460892756141.86169307738618
62125.99418449202925123.1920624624854120.38994043294153
63125.2382447919687122.20261259329618119.16698039462366
64124.48230509190813121.21316272410695117.94402035630578
65123.72636539184757120.22371285491774116.7210603179879
66122.970425691787119.23426298572852115.49810027967004
67122.21448599172645118.2448131165393114.27514024135218
68121.45854629166588117.25536324735009113.0521802030343
69120.70260659160532116.26591337816087111.82922016471642
70119.94666689154477115.27646350897166110.60626012639855
71119.1907271914842114.28701363978243109.38330008808069
72118.43478749142363113.29756377059323108.16034004976281
73117.67884779136307112.308113901404106.93738001144494
74131.25378613483693135.57790629379883139.90202645276074
75132.18701432733604136.79940916356207141.4118039997881
76133.12024251983516138.02091203332532142.92158154681547
77134.0534707123343139.24241490308856144.43135909384284
78134.98669890483342140.46391777285183145.94113664087024
79135.91992709733253141.68542064261507147.4509141878976
80136.85315528983165142.9069235123783148.96069173492498
81137.7863834823308144.12842638214158150.47046928195235