wickra 0.3.1 → 0.4.1

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
@@ -1,11 +1,18 @@
1
- # Wickra
1
+ <p align="center">
2
+ <a href="https://wickra.org"><img src="https://wickra.org/og-banner.webp" alt="Wickra — streaming-first technical indicators" width="100%"></a>
3
+ </p>
2
4
 
3
5
  [![CI](https://github.com/wickra-lib/wickra/actions/workflows/ci.yml/badge.svg)](https://github.com/wickra-lib/wickra/actions/workflows/ci.yml)
6
+ [![CodeQL](https://github.com/wickra-lib/wickra/actions/workflows/codeql.yml/badge.svg)](https://github.com/wickra-lib/wickra/actions/workflows/codeql.yml)
4
7
  [![codecov](https://codecov.io/gh/wickra-lib/wickra/branch/main/graph/badge.svg)](https://codecov.io/gh/wickra-lib/wickra)
8
+ [![GitHub release](https://img.shields.io/github/v/release/wickra-lib/wickra?logo=github&color=green)](https://github.com/wickra-lib/wickra/releases/latest)
5
9
  [![crates.io](https://img.shields.io/crates/v/wickra.svg?logo=rust&color=orange)](https://crates.io/crates/wickra)
6
10
  [![PyPI](https://img.shields.io/pypi/v/wickra.svg?logo=pypi&color=blue)](https://pypi.org/project/wickra/)
7
11
  [![npm](https://img.shields.io/npm/v/wickra.svg?logo=npm&color=red)](https://www.npmjs.com/package/wickra)
8
12
  [![License: PolyForm-NC](https://img.shields.io/badge/license-PolyForm--NC--1.0.0-purple)](LICENSE)
13
+ [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/wickra-lib/wickra/badge)](https://scorecard.dev/viewer/?uri=github.com/wickra-lib/wickra)
14
+ [![Build provenance](https://img.shields.io/badge/provenance-attested-brightgreen?logo=github)](https://github.com/wickra-lib/wickra/attestations)
15
+ [![Docs](https://img.shields.io/badge/docs-docs.wickra.org-0ea5e9?logo=readthedocs&logoColor=white)](https://docs.wickra.org)
9
16
 
10
17
  **Streaming-first technical indicators. Install with `pip install wickra` — no system dependencies.**
11
18
 
@@ -31,6 +38,25 @@ for price in live_feed:
31
38
  print("overbought")
32
39
  ```
33
40
 
41
+ ## Documentation
42
+
43
+ Full documentation lives at **[docs.wickra.org](https://docs.wickra.org)**:
44
+
45
+ - **Quickstarts** — [Rust](https://docs.wickra.org/Quickstart-Rust),
46
+ [Python](https://docs.wickra.org/Quickstart-Python),
47
+ [Node](https://docs.wickra.org/Quickstart-Node),
48
+ [WASM](https://docs.wickra.org/Quickstart-WASM).
49
+ - **Indicators** — a per-indicator deep dive (formula, parameters, warmup) for
50
+ every one of the 219 indicators; start at the
51
+ [indicators overview](https://docs.wickra.org/Indicators-Overview).
52
+ - **Reference** — [warmup periods](https://docs.wickra.org/Warmup-Periods),
53
+ [streaming vs batch](https://docs.wickra.org/Streaming-vs-Batch),
54
+ [indicator chaining](https://docs.wickra.org/Indicator-Chaining), the
55
+ [data layer](https://docs.wickra.org/Data-Layer).
56
+ - **Guides** — [Cookbook](https://docs.wickra.org/Cookbook),
57
+ [TA-Lib migration](https://docs.wickra.org/TA-Lib-Migration),
58
+ [FAQ](https://docs.wickra.org/FAQ).
59
+
34
60
  ## Why Wickra exists
35
61
 
36
62
  The Python TA ecosystem has plenty of libraries — TA-Lib, pandas-ta, finta,
@@ -109,9 +135,10 @@ python -m benchmarks.compare_libraries
109
135
 
110
136
  ## Indicators
111
137
 
112
- 214 streaming-first indicators across sixteen families. Every one passes the
138
+ 219 streaming-first indicators across sixteen families. Every one passes the
113
139
  `batch == streaming` equivalence test, reference-value tests, and reset
114
- semantics tests.
140
+ semantics tests. Each has a per-indicator deep dive (formula, parameters,
141
+ warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
115
142
 
116
143
  | Family | Indicators |
117
144
  |--------|-----------|
@@ -123,7 +150,7 @@ semantics tests.
123
150
  | Bands & Channels | MA Envelope, Acceleration Bands, STARC Bands, ATR Bands, Hurst Channel, LinReg Channel, Standard Error Bands, Double Bollinger Bands, TTM Squeeze, Fractal Chaos Bands, VWAP StdDev Bands |
124
151
  | Trailing Stops | Parabolic SAR, SuperTrend, Chandelier Exit, Chande Kroll Stop, ATR Trailing Stop, HiLo Activator, Volty Stop, Yo-Yo Exit, Donchian Channel Stop, Percentage Trailing Stop, Step Trailing Stop, Renko Trailing Stop |
125
152
  | Volume | OBV, VWAP (cumulative + rolling), ADL, Volume-Price Trend, Chaikin Money Flow, Chaikin Oscillator, Force Index, Ease of Movement, Klinger Volume Oscillator, Volume Oscillator, NVI, PVI, Williams A/D, Anchored VWAP, Demand Index, TSV, VZO, Market Facilitation Index |
126
- | Price Statistics | Typical Price, Median Price, Weighted Close, Linear Regression, Linear Regression Slope, Z-Score, Linear Regression Angle, Variance, Coefficient of Variation, Skewness, Kurtosis, Standard Error, Detrended StdDev, R², Median Absolute Deviation, Autocorrelation, Hurst Exponent, Pearson Correlation, Beta, Spearman Correlation |
153
+ | Price Statistics | Typical Price, Median Price, Weighted Close, Linear Regression, Linear Regression Slope, Z-Score, Linear Regression Angle, Variance, Coefficient of Variation, Skewness, Kurtosis, Standard Error, Detrended StdDev, R², Median Absolute Deviation, Autocorrelation, Hurst Exponent, Pearson Correlation, Beta, Pairwise Beta, Pair Spread Z-Score, Lead-Lag Cross-Correlation, Cointegration, Relative Strength A-vs-B, Spearman Correlation |
127
154
  | Ehlers / Cycle (DSP) | MAMA, FAMA, Fisher Transform, Inverse Fisher Transform, SuperSmoother, Hilbert Dominant Cycle, Sine Wave, Decycler, Decycler Oscillator, Roofing Filter, Center of Gravity, Cybernetic Cycle, Adaptive Cycle, Empirical Mode Decomposition, Ehlers Stochastic, Instantaneous Trendline |
128
155
  | Pivots & S/R | Classic Pivots, Fibonacci Pivots, Camarilla, Woodie Pivots, DeMark Pivots, Williams Fractals, ZigZag |
129
156
  | DeMark | TD Setup, TD Sequential, TD DeMarker, TD REI, TD Pressure, TD Combo, TD Countdown, TD Lines, TD Range Projection, TD Differential, TD Open, TD Risk Level |
@@ -203,7 +230,7 @@ A Python live-trading example using the public `websockets` package lives at
203
230
  ```
204
231
  wickra/
205
232
  ├── crates/
206
- │ ├── wickra-core/ core engine + all 214 indicators
233
+ │ ├── wickra-core/ core engine + all 219 indicators
207
234
  │ ├── wickra/ top-level facade crate (publishes on crates.io) + benches/
208
235
  │ └── wickra-data/ CSV reader, tick aggregator, live exchange feeds
209
236
  ├── bindings/