wickra-wasm 0.2.5 → 0.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -36,16 +36,16 @@ for price in live_feed:
36
36
  The Python TA ecosystem has plenty of libraries — TA-Lib, pandas-ta, finta,
37
37
  talipp, tulipy — and every one of them shares the same blind spot:
38
38
 
39
- | Library | Install pain | Streaming | Multi-language | Active |
40
- |--------------------|-----------------|-----------|----------------|--------|
41
- | TA-Lib (Python) | yes (C deps) | no | no | barely |
42
- | pandas-ta | clean | no | no | slow |
43
- | finta | clean | no | no | stale |
44
- | ta-lib-python | yes (C deps) | no | no | barely |
45
- | talipp | clean | yes | no | yes |
46
- | Tulip Indicators | yes (C deps) | no | partial | stale |
47
- | ooples (C#) | clean | no | C# only | yes |
48
- | **Wickra** | **clean** | **yes** | **Python+Node+WASM+Rust** | **yes** |
39
+ | Library | Install pain | Streaming | Multi-language | Active |
40
+ |------------------------|-----------------|-----------|----------------|--------|
41
+ | **★ Wickra** | **clean** | **yes** | **Python + Node + WASM + Rust** | **yes** |
42
+ | TA-Lib (Python) | yes (C deps) | no | no | barely |
43
+ | pandas-ta | clean | no | no | slow |
44
+ | finta | clean | no | no | stale |
45
+ | ta-lib-python | yes (C deps) | no | no | barely |
46
+ | talipp | clean | yes | no | yes |
47
+ | Tulip Indicators | yes (C deps) | no | partial | stale |
48
+ | ooples (C#) | clean | no | C# only | yes |
49
49
 
50
50
  Wickra is the only library that combines all of: clean install, streaming,
51
51
  multi-language reach, and active maintenance.
@@ -76,7 +76,7 @@ to recompute on every tick.
76
76
  Reading the table: each cell shows that library's runtime, plus how many times
77
77
  slower it is than Wickra in parentheses. **★** marks the winner per row.
78
78
 
79
- | Indicator | Wickra | finta | talipp |
79
+ | Indicator | **★ Wickra** | finta | talipp |
80
80
  |---------------------|---------------------|-----------------------------|-------------------------------|
81
81
  | SMA(20) | **95.6 µs ★** | 343.5 µs (3.6× slower) | 7 640.6 µs (79.9× slower) |
82
82
  | EMA(20) | **64.6 µs ★** | 223.1 µs (3.5× slower) | 12 160.9 µs (188.2× slower) |
@@ -90,7 +90,7 @@ slower it is than Wickra in parentheses. **★** marks the winner per row.
90
90
  A batch-only library has to re-run its full indicator over the entire history on
91
91
  every new tick; Wickra updates state in O(1).
92
92
 
93
- | Indicator | Wickra (per tick) | talipp (per tick) |
93
+ | Indicator | **★ Wickra (per tick)** | talipp (per tick) |
94
94
  |-----------|---------------------|---------------------------|
95
95
  | RSI(14) | **0.119 µs ★** | 1.644 µs (13.8× slower) |
96
96
 
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "kingchenc <kingchencp@gmail.com>"
6
6
  ],
7
7
  "description": "WASM bindings for the Wickra streaming-first technical indicators library.",
8
- "version": "0.2.5",
8
+ "version": "0.2.6",
9
9
  "license": "PolyForm-Noncommercial-1.0.0",
10
10
  "repository": {
11
11
  "type": "git",
Binary file