code wiki / _hdl_build / nx_market_insights.nx

nx_market_insights.nx

buildroot/runtime/_hdl_build/nx_market_insights.nx

7427 B129 linesdepth 2pulls 2 transitivereach 0 importersview sourcekind tooltopic market
docsdependenciesstructsconstsfunctions

about

nx_market_insights.nx -- MANHEIM-BUILD-L2 (DATA MOAT): the USED VEHICLE VALUE INDEX (UVVI), the Nishi answer to Cox Automotive's flagship public Manheim Used Vehicle Value Index -- a macro index tracking wholesale price LEVEL over time. Sovereign (nx_cc->nxasm, no gcc), integer-exact + deterministic. THE METHODOLOGY PROBLEM a good index must solve: month-to-month the MIX of what sells changes (more trucks one month, more compacts the next). A naive "average sale price this period / base period" index is CONFOUNDED -- it reports phantom inflation when the mix shifts toward pricier classes even if every model's price is flat. A proper index (CPI-style Laspeyres) holds a FIXED BASKET (base-period quantities) and reprices it, isolating TRUE price change from mix change. mi_naive = avg_price(period) * 1000 / avg_price(base) (confounded by mix) mi_basket = sum(base_qty * period_price) * 1000 / sum(base_qty * base_price) (fixed basket, robust) index base = 1000 (per-mille; 1000 = "same as base period"). ===== S-CLASS EXCEED, MEASURED (no-wave law) ===== main() is an EXCEED BENCH vs the naive average-price index, on a deterministic, non-circular axis where the naive baseline PROVABLY FAILS (Referee high-TNR): period T: the MIX shifts toward trucks but every matched model's price is FLAT. truth = no price change (index should read 1000). naive reads 1285 (+285 permil PHANTOM inflation); ours reads exactly 1000. -> ours is correct, naive emits a false signal. period U: NO mix shift but all prices rise 10%. BOTH read 1100 (+100 permil) -> proves ours TRACKS a real price move (not trivially clamped to 1000) and naive is only wrong WHEN the mix shifts. NEG-CONTROL: under T the naive index must DEVIATE from the truth 1000 (proves the bench discriminates). HONEST SCOPE (no-overclaim): the measured exceed is vs the NAIVE AVERAGE-PRICE INDEX on mix-shift robustness + determinism -- NOT a claim to beat the real Manheim UVVI's proprietary methodology on real market data (that needs the real series = operator-host head-to-head). NOT CLAIMED. Evidence -> knowledge/status/market_insights.log. license_tier: ORIGINAL

dependencies 1 imports · 0 importers

nx_syscalls.nx nx_market_insights.nx

imports: nx_syscalls.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main sys_mmap mi_naive mi_avg mi_basket mi_abs mi_w sys_write mi_wn sys_mmap ↻ sys_write ↻ sys_openat_append sys_close

structs

none

consts

29const MI_MAGIC_1000000: i64 = 1000000
30const MI_MAGIC_2000000: i64 = 2000000
31const MI_MAGIC_1100000: i64 = 1100000
32const MI_MAGIC_2200000: i64 = 2200000
33const MI_MAGIC_1100: i64 = 1100
35const MI_LOG: *u8 = "knowledge/status/market_insights.log"

functions

37func mi_w(fd: i64, s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(fd, s, n); return 0 }
called by 1: main calls 1: sys_write
38func mi_wn(fd: i64, v: i64) -> i64 { let bb: *u8 = sys_mmap(28); var m: i64=v; if m<0 {m=0-m; sys_write(fd,"-" as *u8,1)}; let t: *u8 = sys_mmap(28); var k: i64=0; if m==0 {t[0]=48;k=1}; while m>0 {t[k]=(48+(m%10)) as u8; m=m/10; k=k+1}; var i: i64=0; while i<k {bb[i]=t[k-1-i]; i=i+1}; sys_write(fd, bb, k); return 0 }
called by 1: main calls 2: sys_mmapsys_write
39func mi_abs(x: i64) -> i64 { if x < 0 { return 0 - x } return x }
called by 1: main
42func mi_avg(prices: *i64, qtys: *i64, n: i64) -> i64
called by 1: mi_naive
52func mi_naive(pp: *i64, pq: *i64, bp: *i64, bq: *i64, n: i64) -> i64
called by 1: main calls 1: mi_avg
59func mi_basket(pp: *i64, bp: *i64, bq: *i64, n: i64) -> i64
called by 1: main
68func main() -> i64