Live Playground — Indicators in Your Browser
This page runs QuantWave's actual Rust engine — compiled to WebAssembly — directly in your browser. There is no server and no Python: the same quantwave-core streaming code that powers the native and Python builds computes SuperTrend and RSI here, bit-for-bit identical. Drag the sliders and watch it recompute live over the sample data.
How it works
The quantwave-wasm crate wraps quantwave-core's streaming Next<T> indicators with wasm-bindgen. The whole engine ships as a ~7 KB gzipped WebAssembly module. Because it is the same Rust code, the numbers you see above match the native Rust and Python outputs exactly — QuantWave's batch/streaming parity guarantee, extended to a third runtime.
What's here today
This first playground exposes the simple streaming indicators (SuperTrend, RSI). A broader indicator set, an npm package, and a CI-built bundle are tracked as follow-up work.