wickra-wasm 0.7.1 → 0.7.3
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 +8 -8
- package/package.json +1 -1
- package/wickra_wasm.d.ts +160 -0
- package/wickra_wasm.js +1 -1
- package/wickra_wasm_bg.js +1235 -0
- package/wickra_wasm_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<a href="https://wickra.org"><img src="https://raw.githubusercontent.com/wickra-lib/.github/main/profile/wickra-banner.webp?v=
|
|
2
|
+
<a href="https://wickra.org"><img src="https://raw.githubusercontent.com/wickra-lib/.github/main/profile/wickra-banner.webp?v=507" alt="Wickra — streaming-first technical indicators" width="100%"></a>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
[](https://github.com/wickra-lib/wickra/actions/workflows/ci.yml)
|
|
@@ -48,7 +48,7 @@ Full documentation lives at **[docs.wickra.org](https://docs.wickra.org)**:
|
|
|
48
48
|
[Node](https://docs.wickra.org/Quickstart-Node),
|
|
49
49
|
[WASM](https://docs.wickra.org/Quickstart-WASM).
|
|
50
50
|
- **Indicators** — a per-indicator deep dive (formula, parameters, warmup) for
|
|
51
|
-
every one of the
|
|
51
|
+
every one of the 507 indicators; start at the
|
|
52
52
|
[indicators overview](https://docs.wickra.org/Indicators-Overview).
|
|
53
53
|
- **Reference** — [warmup periods](https://docs.wickra.org/Warmup-Periods),
|
|
54
54
|
[streaming vs batch](https://docs.wickra.org/Streaming-vs-Batch),
|
|
@@ -66,7 +66,7 @@ an afterthought — **live, tick-by-tick data** — without giving up the breadt
|
|
|
66
66
|
a full batch library, and without making you reimplement your indicators four
|
|
67
67
|
times to get there.
|
|
68
68
|
|
|
69
|
-
- **The biggest streaming-native catalogue, period.**
|
|
69
|
+
- **The biggest streaming-native catalogue, period.** 507 indicators across 24
|
|
70
70
|
families — candlesticks, harmonic & chart patterns, market profile, market
|
|
71
71
|
breadth, Renko/Kagi/Point&Figure bars, Ehlers DSP cycles, risk/performance
|
|
72
72
|
metrics — every single one updating in **O(1) per tick**. TA-Lib ships ~150 and
|
|
@@ -77,7 +77,7 @@ times to get there.
|
|
|
77
77
|
- **Correct by construction, not by hope.** Every `update` validates its input,
|
|
78
78
|
runs a real warmup, and returns an `Option` so a single bad tick can't silently
|
|
79
79
|
poison state. `batch == streaming` is **bit-exact, fuzzed and 100 %-line-covered
|
|
80
|
-
for all
|
|
80
|
+
for all 507 indicators**.
|
|
81
81
|
- **Orders of magnitude faster where it counts.** In streaming Wickra is **11–56×**
|
|
82
82
|
faster than the only other incremental peer and **thousands of times** faster
|
|
83
83
|
than recompute-on-every-tick libraries. On batch it wins several rows outright
|
|
@@ -95,7 +95,7 @@ Every other library forces one of those compromises. Wickra doesn't:
|
|
|
95
95
|
|
|
96
96
|
| Library | Install | Streaming | Languages | Indicators | Active |
|
|
97
97
|
|------------------|-------------|-------------|-----------------------------|-----------:|--------|
|
|
98
|
-
| **★ Wickra**| **clean** | **yes, O(1)** | **Python · Node · WASM · Rust** | **
|
|
98
|
+
| **★ Wickra**| **clean** | **yes, O(1)** | **Python · Node · WASM · Rust** | **507** | **yes** |
|
|
99
99
|
| kand | clean | yes | Python · WASM · Rust | ~60 | yes |
|
|
100
100
|
| ta-rs | clean | yes | Rust only | ~30 | stale |
|
|
101
101
|
| yata | clean | partial | Rust only | ~35 | yes |
|
|
@@ -128,7 +128,7 @@ Full tables (Rust + Python, streaming + batch) and how to reproduce them live in
|
|
|
128
128
|
|
|
129
129
|
## Indicators
|
|
130
130
|
|
|
131
|
-
|
|
131
|
+
507 streaming-first indicators across twenty-four families. Every one passes the
|
|
132
132
|
`batch == streaming` equivalence test, reference-value tests, and reset
|
|
133
133
|
semantics tests. Each has a per-indicator deep dive (formula, parameters,
|
|
134
134
|
warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
|
|
@@ -155,7 +155,7 @@ warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
|
|
|
155
155
|
| Fibonacci | Fibonacci Retracement, Fibonacci Extension, Fibonacci Projection, Auto-Fibonacci, Golden Pocket, Fibonacci Confluence, Fibonacci Fan, Fibonacci Arcs, Fibonacci Channel, Fibonacci Time Zones |
|
|
156
156
|
| Microstructure | Order-Book Imbalance (Top-1 / Top-N / Full), Microprice, Quoted Spread, Depth Slope, Signed Volume, Cumulative Volume Delta, Trade Imbalance, Effective Spread, Realized Spread, Kyle's Lambda, Footprint, Order Flow Imbalance, VPIN, Amihud Illiquidity, Roll Measure, Trade-Sign Autocorrelation, Hasbrouck Information Share |
|
|
157
157
|
| Derivatives | Funding Rate, Funding Rate Mean, Funding Rate Z-Score, Funding Basis, Open-Interest Delta, OI / Price Divergence, OI-Weighted Price, Long/Short Ratio, Taker Buy/Sell Ratio, Liquidation Features, Term-Structure Basis, Calendar Spread, Estimated Leverage Ratio, OI-to-Volume Ratio, Perpetual Premium Index, Funding-Implied APR, Open-Interest Momentum |
|
|
158
|
-
| Market Profile | Value Area (POC / VAH / VAL), Volume Profile (histogram), TPO Profile, Initial Balance, Opening Range |
|
|
158
|
+
| Market Profile | Value Area (POC / VAH / VAL), Volume Profile (histogram), TPO Profile, Initial Balance, Opening Range, Naked POC, Single Prints, Profile Shape, High/Low Volume Nodes, Composite Profile |
|
|
159
159
|
| Market Breadth | Advance/Decline Line, Advance/Decline Ratio, Advance/Decline Volume Line, McClellan Oscillator, McClellan Summation Index, TRIN / Arms Index, Breadth Thrust, New Highs - New Lows, High-Low Index, Percent Above Moving Average, Up/Down Volume Ratio, Bullish Percent Index, Cumulative Volume Index, Absolute Breadth Index, TICK Index |
|
|
160
160
|
| Risk / Performance | Sharpe Ratio, Sortino Ratio, Calmar Ratio, Omega Ratio, Max Drawdown, Average Drawdown, Drawdown Duration, Pain Index, Value at Risk, Conditional Value at Risk (CVaR), Profit Factor, Gain/Loss Ratio, Recovery Factor, Kelly Criterion, Treynor Ratio, Information Ratio, Alpha (Jensen) |
|
|
161
161
|
| Seasonality & Session | Session VWAP, Session High/Low, Session Range, Average Daily Range, Overnight Gap, Overnight/Intraday Return, Turn-of-Month, Seasonal Z-Score, Time-of-Day Return Profile, Day-of-Week Profile, Intraday Volatility Profile, Volume-by-Time Profile |
|
|
@@ -237,7 +237,7 @@ A Python live-trading example using the public `websockets` package lives at
|
|
|
237
237
|
```
|
|
238
238
|
wickra/
|
|
239
239
|
├── crates/
|
|
240
|
-
│ ├── wickra-core/ core engine + all
|
|
240
|
+
│ ├── wickra-core/ core engine + all 507 indicators
|
|
241
241
|
│ ├── wickra/ top-level facade crate (publishes on crates.io) + benches/
|
|
242
242
|
│ ├── wickra-data/ CSV reader, tick aggregator, live exchange feeds
|
|
243
243
|
│ └── wickra-bench/ internal cross-library benchmark harness (not published)
|
package/package.json
CHANGED
package/wickra_wasm.d.ts
CHANGED
|
@@ -593,6 +593,17 @@ export class BullishPercentIndex {
|
|
|
593
593
|
warmupPeriod(): number;
|
|
594
594
|
}
|
|
595
595
|
|
|
596
|
+
export class BurkeRatio {
|
|
597
|
+
free(): void;
|
|
598
|
+
[Symbol.dispose](): void;
|
|
599
|
+
batch(prices: Float64Array): Float64Array;
|
|
600
|
+
isReady(): boolean;
|
|
601
|
+
constructor(period: number);
|
|
602
|
+
reset(): void;
|
|
603
|
+
update(value: number): number | undefined;
|
|
604
|
+
warmupPeriod(): number;
|
|
605
|
+
}
|
|
606
|
+
|
|
596
607
|
export class Butterfly {
|
|
597
608
|
free(): void;
|
|
598
609
|
[Symbol.dispose](): void;
|
|
@@ -839,6 +850,31 @@ export class Cointegration {
|
|
|
839
850
|
warmupPeriod(): number;
|
|
840
851
|
}
|
|
841
852
|
|
|
853
|
+
export class CommonSenseRatio {
|
|
854
|
+
free(): void;
|
|
855
|
+
[Symbol.dispose](): void;
|
|
856
|
+
batch(prices: Float64Array): Float64Array;
|
|
857
|
+
isReady(): boolean;
|
|
858
|
+
constructor(period: number);
|
|
859
|
+
reset(): void;
|
|
860
|
+
update(value: number): number | undefined;
|
|
861
|
+
warmupPeriod(): number;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
export class CompositeProfile {
|
|
865
|
+
free(): void;
|
|
866
|
+
[Symbol.dispose](): void;
|
|
867
|
+
batch(high: Float64Array, low: Float64Array, volume: Float64Array): Float64Array;
|
|
868
|
+
isReady(): boolean;
|
|
869
|
+
constructor(period: number, bin_count: number, value_area_pct: number);
|
|
870
|
+
reset(): void;
|
|
871
|
+
/**
|
|
872
|
+
* Streaming update. Returns `{ poc, vah, val }` once warm, else `null`.
|
|
873
|
+
*/
|
|
874
|
+
update(high: number, low: number, volume: number): any;
|
|
875
|
+
warmupPeriod(): number;
|
|
876
|
+
}
|
|
877
|
+
|
|
842
878
|
export class ConcealingBabySwallow {
|
|
843
879
|
free(): void;
|
|
844
880
|
[Symbol.dispose](): void;
|
|
@@ -1718,6 +1754,17 @@ export class GainLossRatio {
|
|
|
1718
1754
|
warmupPeriod(): number;
|
|
1719
1755
|
}
|
|
1720
1756
|
|
|
1757
|
+
export class GainToPainRatio {
|
|
1758
|
+
free(): void;
|
|
1759
|
+
[Symbol.dispose](): void;
|
|
1760
|
+
batch(prices: Float64Array): Float64Array;
|
|
1761
|
+
isReady(): boolean;
|
|
1762
|
+
constructor(period: number);
|
|
1763
|
+
reset(): void;
|
|
1764
|
+
update(value: number): number | undefined;
|
|
1765
|
+
warmupPeriod(): number;
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1721
1768
|
export class GapSideBySideWhite {
|
|
1722
1769
|
free(): void;
|
|
1723
1770
|
[Symbol.dispose](): void;
|
|
@@ -1999,6 +2046,20 @@ export class HighLowRange {
|
|
|
1999
2046
|
update(open: number, high: number, low: number, close: number): number | undefined;
|
|
2000
2047
|
}
|
|
2001
2048
|
|
|
2049
|
+
export class HighLowVolumeNodes {
|
|
2050
|
+
free(): void;
|
|
2051
|
+
[Symbol.dispose](): void;
|
|
2052
|
+
batch(high: Float64Array, low: Float64Array, volume: Float64Array): Float64Array;
|
|
2053
|
+
isReady(): boolean;
|
|
2054
|
+
constructor(period: number, bin_count: number);
|
|
2055
|
+
reset(): void;
|
|
2056
|
+
/**
|
|
2057
|
+
* Streaming update. Returns `{ hvn, lvn }` once warm, else `null`.
|
|
2058
|
+
*/
|
|
2059
|
+
update(high: number, low: number, volume: number): any;
|
|
2060
|
+
warmupPeriod(): number;
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2002
2063
|
export class HighWave {
|
|
2003
2064
|
free(): void;
|
|
2004
2065
|
[Symbol.dispose](): void;
|
|
@@ -2292,6 +2353,17 @@ export class KAMA {
|
|
|
2292
2353
|
warmupPeriod(): number;
|
|
2293
2354
|
}
|
|
2294
2355
|
|
|
2356
|
+
export class KRatio {
|
|
2357
|
+
free(): void;
|
|
2358
|
+
[Symbol.dispose](): void;
|
|
2359
|
+
batch(prices: Float64Array): Float64Array;
|
|
2360
|
+
isReady(): boolean;
|
|
2361
|
+
constructor(period: number);
|
|
2362
|
+
reset(): void;
|
|
2363
|
+
update(value: number): number | undefined;
|
|
2364
|
+
warmupPeriod(): number;
|
|
2365
|
+
}
|
|
2366
|
+
|
|
2295
2367
|
export class KST {
|
|
2296
2368
|
free(): void;
|
|
2297
2369
|
[Symbol.dispose](): void;
|
|
@@ -2610,6 +2682,17 @@ export class LongShortRatio {
|
|
|
2610
2682
|
warmupPeriod(): number;
|
|
2611
2683
|
}
|
|
2612
2684
|
|
|
2685
|
+
export class M2Measure {
|
|
2686
|
+
free(): void;
|
|
2687
|
+
[Symbol.dispose](): void;
|
|
2688
|
+
batch(prices: Float64Array): Float64Array;
|
|
2689
|
+
isReady(): boolean;
|
|
2690
|
+
constructor(period: number, risk_free: number, benchmark_stddev: number);
|
|
2691
|
+
reset(): void;
|
|
2692
|
+
update(value: number): number | undefined;
|
|
2693
|
+
warmupPeriod(): number;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2613
2696
|
export class MACD {
|
|
2614
2697
|
free(): void;
|
|
2615
2698
|
[Symbol.dispose](): void;
|
|
@@ -2759,6 +2842,17 @@ export class MarketFacilitationIndex {
|
|
|
2759
2842
|
update(high: number, low: number, volume: number): number | undefined;
|
|
2760
2843
|
}
|
|
2761
2844
|
|
|
2845
|
+
export class MartinRatio {
|
|
2846
|
+
free(): void;
|
|
2847
|
+
[Symbol.dispose](): void;
|
|
2848
|
+
batch(prices: Float64Array): Float64Array;
|
|
2849
|
+
isReady(): boolean;
|
|
2850
|
+
constructor(period: number);
|
|
2851
|
+
reset(): void;
|
|
2852
|
+
update(value: number): number | undefined;
|
|
2853
|
+
warmupPeriod(): number;
|
|
2854
|
+
}
|
|
2855
|
+
|
|
2762
2856
|
export class Marubozu {
|
|
2763
2857
|
free(): void;
|
|
2764
2858
|
[Symbol.dispose](): void;
|
|
@@ -2962,6 +3056,17 @@ export class NVI {
|
|
|
2962
3056
|
update(close: number, volume: number): number | undefined;
|
|
2963
3057
|
}
|
|
2964
3058
|
|
|
3059
|
+
export class NakedPoc {
|
|
3060
|
+
free(): void;
|
|
3061
|
+
[Symbol.dispose](): void;
|
|
3062
|
+
batch(high: Float64Array, low: Float64Array, close: Float64Array, volume: Float64Array): Float64Array;
|
|
3063
|
+
isReady(): boolean;
|
|
3064
|
+
constructor(session_len: number, bin_count: number);
|
|
3065
|
+
reset(): void;
|
|
3066
|
+
update(high: number, low: number, close: number, volume: number): number | undefined;
|
|
3067
|
+
warmupPeriod(): number;
|
|
3068
|
+
}
|
|
3069
|
+
|
|
2965
3070
|
export class NewHighsNewLows {
|
|
2966
3071
|
free(): void;
|
|
2967
3072
|
[Symbol.dispose](): void;
|
|
@@ -3430,6 +3535,17 @@ export class PpoHistogram {
|
|
|
3430
3535
|
warmupPeriod(): number;
|
|
3431
3536
|
}
|
|
3432
3537
|
|
|
3538
|
+
export class ProfileShape {
|
|
3539
|
+
free(): void;
|
|
3540
|
+
[Symbol.dispose](): void;
|
|
3541
|
+
batch(high: Float64Array, low: Float64Array, volume: Float64Array): Float64Array;
|
|
3542
|
+
isReady(): boolean;
|
|
3543
|
+
constructor(period: number, bin_count: number);
|
|
3544
|
+
reset(): void;
|
|
3545
|
+
update(high: number, low: number, volume: number): number | undefined;
|
|
3546
|
+
warmupPeriod(): number;
|
|
3547
|
+
}
|
|
3548
|
+
|
|
3433
3549
|
export class ProfitFactor {
|
|
3434
3550
|
free(): void;
|
|
3435
3551
|
[Symbol.dispose](): void;
|
|
@@ -4088,6 +4204,17 @@ export class SineWave {
|
|
|
4088
4204
|
warmupPeriod(): number;
|
|
4089
4205
|
}
|
|
4090
4206
|
|
|
4207
|
+
export class SinglePrints {
|
|
4208
|
+
free(): void;
|
|
4209
|
+
[Symbol.dispose](): void;
|
|
4210
|
+
batch(high: Float64Array, low: Float64Array): Float64Array;
|
|
4211
|
+
isReady(): boolean;
|
|
4212
|
+
constructor(period: number, bin_count: number);
|
|
4213
|
+
reset(): void;
|
|
4214
|
+
update(high: number, low: number): number | undefined;
|
|
4215
|
+
warmupPeriod(): number;
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4091
4218
|
export class Skewness {
|
|
4092
4219
|
free(): void;
|
|
4093
4220
|
[Symbol.dispose](): void;
|
|
@@ -4259,6 +4386,17 @@ export class StepTrailingStop {
|
|
|
4259
4386
|
update(value: number): number | undefined;
|
|
4260
4387
|
}
|
|
4261
4388
|
|
|
4389
|
+
export class SterlingRatio {
|
|
4390
|
+
free(): void;
|
|
4391
|
+
[Symbol.dispose](): void;
|
|
4392
|
+
batch(prices: Float64Array): Float64Array;
|
|
4393
|
+
isReady(): boolean;
|
|
4394
|
+
constructor(period: number);
|
|
4395
|
+
reset(): void;
|
|
4396
|
+
update(value: number): number | undefined;
|
|
4397
|
+
warmupPeriod(): number;
|
|
4398
|
+
}
|
|
4399
|
+
|
|
4262
4400
|
export class StickSandwich {
|
|
4263
4401
|
free(): void;
|
|
4264
4402
|
[Symbol.dispose](): void;
|
|
@@ -4685,6 +4823,17 @@ export class TTM_TREND {
|
|
|
4685
4823
|
update(high: number, low: number, close: number): number | undefined;
|
|
4686
4824
|
}
|
|
4687
4825
|
|
|
4826
|
+
export class TailRatio {
|
|
4827
|
+
free(): void;
|
|
4828
|
+
[Symbol.dispose](): void;
|
|
4829
|
+
batch(prices: Float64Array): Float64Array;
|
|
4830
|
+
isReady(): boolean;
|
|
4831
|
+
constructor(period: number);
|
|
4832
|
+
reset(): void;
|
|
4833
|
+
update(value: number): number | undefined;
|
|
4834
|
+
warmupPeriod(): number;
|
|
4835
|
+
}
|
|
4836
|
+
|
|
4688
4837
|
export class TakerBuySellRatio {
|
|
4689
4838
|
free(): void;
|
|
4690
4839
|
[Symbol.dispose](): void;
|
|
@@ -5126,6 +5275,17 @@ export class UpsideGapTwoCrows {
|
|
|
5126
5275
|
warmupPeriod(): number;
|
|
5127
5276
|
}
|
|
5128
5277
|
|
|
5278
|
+
export class UpsidePotentialRatio {
|
|
5279
|
+
free(): void;
|
|
5280
|
+
[Symbol.dispose](): void;
|
|
5281
|
+
batch(prices: Float64Array): Float64Array;
|
|
5282
|
+
isReady(): boolean;
|
|
5283
|
+
constructor(period: number, mar: number);
|
|
5284
|
+
reset(): void;
|
|
5285
|
+
update(value: number): number | undefined;
|
|
5286
|
+
warmupPeriod(): number;
|
|
5287
|
+
}
|
|
5288
|
+
|
|
5129
5289
|
export class VIDYA {
|
|
5130
5290
|
free(): void;
|
|
5131
5291
|
[Symbol.dispose](): void;
|
package/wickra_wasm.js
CHANGED
|
@@ -5,5 +5,5 @@ import { __wbg_set_wasm } from "./wickra_wasm_bg.js";
|
|
|
5
5
|
__wbg_set_wasm(wasm);
|
|
6
6
|
|
|
7
7
|
export {
|
|
8
|
-
ADAPTIVECCI, ADAPTIVERSI, ADL, ADX, ADXR, ALMA, APO, ATR, AUTOCORRPGRAM, AVGPRICE, AbandonedBaby, Abcd, AbsoluteBreadthIndex, AccelerationBands, AcceleratorOscillator, AdVolumeLine, AdaptiveCycle, AdaptiveLaguerre, AdvanceBlock, AdvanceDecline, AdvanceDeclineRatio, Alligator, Alpha, AmihudIlliquidity, AnchoredRSI, AnchoredVWAP, AndrewsPitchfork, Aroon, AroonOscillator, AtrBands, AtrRatchet, AtrTrailingStop, AutoFib, Autocorrelation, AverageDailyRange, AverageDrawdown, AwesomeOscillator, AwesomeOscillatorHistogram, BANDPASS, BalanceOfPower, Bat, BeltHold, Beta, BetaNeutralSpread, BetterVolume, BipowerVariation, BodySizePct, BollingerBands, BollingerBandwidth, BomarBands, BreadthThrust, Breakaway, BullishPercentIndex, Butterfly, CCI, CFO, CMO, CTI, CalendarSpread, CalmarRatio, Camarilla, CandleVolume, CenterOfGravity, CentralPivotRange, ChaikinMoneyFlow, ChaikinOscillator, ChaikinVolatility, ChandeKrollStop, ChandelierExit, ChoppinessIndex, ClassicPivots, CloseVsOpen, ClosingMarubozu, CoefficientOfVariation, Cointegration, ConcealingBabySwallow, ConditionalValueAtRisk, ConnorsRSI, Coppock, Counterattack, Crab, CumulativeVolumeDelta, CumulativeVolumeIndex, CupAndHandle, CyberneticCycle, Cypher, DEMA, DPO, DX, DayOfWeekProfile, Decycler, DecyclerOscillator, DemandIndex, DemarkPivots, DepthSlope, DerivativeOscillator, DetrendedStdDev, DisparityIndex, DistanceSsd, Doji, DojiStar, Donchian, DonchianStop, DoubleBollinger, DoubleTopBottom, DownsideGapThreeMethods, DragonflyDoji, DrawdownDuration, DumplingTop, DynamicMomentumIndex, EHMA, EMA, EVENBETTERSINE, EVWMA, EaseOfMovement, EffectiveSpread, EhlersStochastic, ElderImpulse, ElderRay, ElderSafeZone, EmpiricalModeDecomposition, Engulfing, Equivolume, EstimatedLeverageRatio, EveningDojiStar, EwmaVolatility, Expectancy, FAMA, FRAMA, FallingThreeMethods, FibArcs, FibChannel, FibConfluence, FibExtension, FibFan, FibProjection, FibRetracement, FibTimeZones, FibonacciPivots, FisherRSI, FisherTransform, FlagPennant, Footprint, ForceIndex, FractalChaosBands, FryPanBottom, FundingBasis, FundingImpliedApr, FundingRate, FundingRateMean, FundingRateZScore, GD, GMA, GainLossRatio, GapSideBySideWhite, Garch11, GarmanKlassVolatility, Gartley, GatorOscillator, GoldenPocket, GrangerCausality, GravestoneDoji, HIGHPASS, HMA, HT_DCPHASE, HT_PHASOR, HT_TRENDMODE, Hammer, HangingMan, Harami, HaramiCross, HasbrouckInformationShare, HeadAndShoulders, HeikinAshi, HeikinAshiOscillator, HiLoActivator, HighLowIndex, HighLowRange, HighWave, Hikkake, HikkakeModified, HilbertDominantCycle, HistoricalVolatility, HoltWinters, HomingPigeon, HurstChannel, HurstExponent, IMI, Ichimoku, IdenticalThreeCrows, InNeck, Inertia, InformationRatio, InitialBalance, InstantaneousTrendline, IntradayIntensity, IntradayVolatilityProfile, InverseFisherTransform, InvertedHammer, JARQUEBERA, JMA, JumpIndicator, KAMA, KST, KVO, KagiBars, KalmanHedgeRatio, KaseDevStop, KasePermissionStochastic, KellyCriterion, Keltner, KendallTau, Kicking, KickingByLength, Kurtosis, KylesLambda, LINEARREG_INTERCEPT, LadderBottom, LaguerreRSI, LeadLagCrossCorrelation, LinRegAngle, LinRegChannel, LinRegSlope, LinearRegression, LiquidationFeatures, LogReturn, LongLeggedDoji, LongLine, LongShortRatio, MACD, MACDEXT, MACDFIX, MAMA, MFI, MIDPOINT, MIDPRICE, MINUS_DI, MINUS_DM, MOM, MaEnvelope, MacdHistogram, MarketFacilitationIndex, Marubozu, MassIndex, MatHold, MatchingLow, MaxDrawdown, McClellanOscillator, McClellanSummationIndex, McGinleyDynamic, MedianAbsoluteDeviation, MedianChannel, MedianMA, MedianPrice, Microprice, ModifiedMaStop, MorningDojiStar, MorningEveningStar, MurreyMathLines, NATR, NVI, NewHighsNewLows, NewPriceLines, Nrtr, OBV, OIPriceDivergence, OIWeighted, OiToVolumeRatio, OmegaRatio, OnNeck, OpenInterestDelta, OpenInterestMomentum, OpeningMarubozu, OpeningRange, OrderBookImbalanceFull, OrderBookImbalanceTop1, OrderBookImbalanceTopN, OrderFlowImbalance, OuHalfLife, OvernightGap, OvernightIntradayReturn, PGO, PLUS_DI, PLUS_DM, PMO, POLARIZED_FRACTAL_EFFICIENCY, PPO, PSAR, PVI, PainIndex, PairSpreadZScore, PairwiseBeta, ParkinsonVolatility, PearsonCorrelation, PercentAboveMa, PercentB, PercentageTrailingStop, PerpetualPremiumIndex, PiercingDarkCloud, Pin, PivotReversal, PointAndFigureBars, PpoHistogram, ProfitFactor, ProjectionBands, ProjectionOscillator, QQE, Qstick, QuartileBands, QuotedSpread, REFLEX, RMI, ROC, ROCP, ROCR, ROCR100, ROLLINGMINMAX, RSI, RSX, RSquared, RVI, RVIVolatility, RWI, RealizedSpread, RealizedVolatility, RecoveryFactor, RectangleRange, RegimeLabel, RelativeStrengthAB, RenkoBars, RenkoTrailingStop, RickshawMan, RisingThreeMethods, RogersSatchellVolatility, RollMeasure, RollingCorrelation, RollingCovariance, RollingIqr, RollingPercentileRank, RollingQuantile, RollingVWAP, RoofingFilter, SAMPLEENT, SAREXT, SHANNONENT, SMA, SMI, SMMA, STC, SWMA, SeasonalZScore, SeparatingLines, SessionHighLow, SessionRange, SessionVwap, Shark, SharpeRatio, ShootingStar, ShortLine, SignedVolume, SineWave, Skewness, SmoothedHeikinAshi, SortinoRatio, SpearmanCorrelation, SpinningTop, SpreadAr1Coefficient, SpreadBollingerBands, SpreadHurst, StalledPattern, StandardError, StandardErrorBands, StarcBands, StdDev, StepTrailingStop, StickSandwich, StochRSI, Stochastic, StochasticCCI, SuperSmoother, SuperTrend, T3, TDCamouflage, TDClop, TDClopwin, TDCombo, TDCountdown, TDDWave, TDDeMarker, TDDifferential, TDLines, TDMovingAverage, TDOpen, TDPressure, TDPropulsion, TDREI, TDRangeProjection, TDRiskLevel, TDSequential, TDSetup, TDTrap, TEMA, TII, TRENDFLEX, TREND_STRENGTH_INDEX, TRIMA, TRIX, TSF, TSI, TSV, TTM_TREND, TakerBuySellRatio, Takuri, TasukiGap, TermStructureBasis, ThreeDrives, ThreeInside, ThreeLineBreak, ThreeLineStrike, ThreeOutside, ThreeSoldiersOrCrows, ThreeStarsInSouth, Thrusting, TickIndex, TimeBasedStop, TimeOfDayReturnProfile, TowerTopBottom, TpoProfile, TradeImbalance, TradeSignAutocorrelation, TradeVolumeIndex, TrendLabel, TreynorRatio, Triangle, Trin, TripleTopBottom, Tristar, TrueRange, TsfOscillator, TtmSqueeze, TurnOfMonth, Tweezer, TwiggsMoneyFlow, TwoCrows, TypicalPrice, UNIVERSALOSC, UlcerIndex, UltimateOscillator, UniqueThreeRiver, UpDownVolumeRatio, UpsideGapThreeMethods, UpsideGapTwoCrows, VIDYA, VWAP, VWMA, VZO, ValueArea, ValueAtRisk, Variance, VarianceRatio, VerticalHorizontalFilter, VolatilityCone, VolatilityOfVolatility, VolatilityRatio, VoltyStop, VolumeByTimeProfile, VolumeOscillator, VolumePriceTrend, VolumeProfile, VolumeRsi, VolumeWeightedMacd, VolumeWeightedSr, Vortex, Vpin, VwapStdDevBands, WAVE_PM, WMA, Wad, WaveTrend, Wedge, WeightedClose, WickRatio, WilliamsAD, WilliamsFractals, WilliamsR, WinRate, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
8
|
+
ADAPTIVECCI, ADAPTIVERSI, ADL, ADX, ADXR, ALMA, APO, ATR, AUTOCORRPGRAM, AVGPRICE, AbandonedBaby, Abcd, AbsoluteBreadthIndex, AccelerationBands, AcceleratorOscillator, AdVolumeLine, AdaptiveCycle, AdaptiveLaguerre, AdvanceBlock, AdvanceDecline, AdvanceDeclineRatio, Alligator, Alpha, AmihudIlliquidity, AnchoredRSI, AnchoredVWAP, AndrewsPitchfork, Aroon, AroonOscillator, AtrBands, AtrRatchet, AtrTrailingStop, AutoFib, Autocorrelation, AverageDailyRange, AverageDrawdown, AwesomeOscillator, AwesomeOscillatorHistogram, BANDPASS, BalanceOfPower, Bat, BeltHold, Beta, BetaNeutralSpread, BetterVolume, BipowerVariation, BodySizePct, BollingerBands, BollingerBandwidth, BomarBands, BreadthThrust, Breakaway, BullishPercentIndex, BurkeRatio, Butterfly, CCI, CFO, CMO, CTI, CalendarSpread, CalmarRatio, Camarilla, CandleVolume, CenterOfGravity, CentralPivotRange, ChaikinMoneyFlow, ChaikinOscillator, ChaikinVolatility, ChandeKrollStop, ChandelierExit, ChoppinessIndex, ClassicPivots, CloseVsOpen, ClosingMarubozu, CoefficientOfVariation, Cointegration, CommonSenseRatio, CompositeProfile, ConcealingBabySwallow, ConditionalValueAtRisk, ConnorsRSI, Coppock, Counterattack, Crab, CumulativeVolumeDelta, CumulativeVolumeIndex, CupAndHandle, CyberneticCycle, Cypher, DEMA, DPO, DX, DayOfWeekProfile, Decycler, DecyclerOscillator, DemandIndex, DemarkPivots, DepthSlope, DerivativeOscillator, DetrendedStdDev, DisparityIndex, DistanceSsd, Doji, DojiStar, Donchian, DonchianStop, DoubleBollinger, DoubleTopBottom, DownsideGapThreeMethods, DragonflyDoji, DrawdownDuration, DumplingTop, DynamicMomentumIndex, EHMA, EMA, EVENBETTERSINE, EVWMA, EaseOfMovement, EffectiveSpread, EhlersStochastic, ElderImpulse, ElderRay, ElderSafeZone, EmpiricalModeDecomposition, Engulfing, Equivolume, EstimatedLeverageRatio, EveningDojiStar, EwmaVolatility, Expectancy, FAMA, FRAMA, FallingThreeMethods, FibArcs, FibChannel, FibConfluence, FibExtension, FibFan, FibProjection, FibRetracement, FibTimeZones, FibonacciPivots, FisherRSI, FisherTransform, FlagPennant, Footprint, ForceIndex, FractalChaosBands, FryPanBottom, FundingBasis, FundingImpliedApr, FundingRate, FundingRateMean, FundingRateZScore, GD, GMA, GainLossRatio, GainToPainRatio, GapSideBySideWhite, Garch11, GarmanKlassVolatility, Gartley, GatorOscillator, GoldenPocket, GrangerCausality, GravestoneDoji, HIGHPASS, HMA, HT_DCPHASE, HT_PHASOR, HT_TRENDMODE, Hammer, HangingMan, Harami, HaramiCross, HasbrouckInformationShare, HeadAndShoulders, HeikinAshi, HeikinAshiOscillator, HiLoActivator, HighLowIndex, HighLowRange, HighLowVolumeNodes, HighWave, Hikkake, HikkakeModified, HilbertDominantCycle, HistoricalVolatility, HoltWinters, HomingPigeon, HurstChannel, HurstExponent, IMI, Ichimoku, IdenticalThreeCrows, InNeck, Inertia, InformationRatio, InitialBalance, InstantaneousTrendline, IntradayIntensity, IntradayVolatilityProfile, InverseFisherTransform, InvertedHammer, JARQUEBERA, JMA, JumpIndicator, KAMA, KRatio, KST, KVO, KagiBars, KalmanHedgeRatio, KaseDevStop, KasePermissionStochastic, KellyCriterion, Keltner, KendallTau, Kicking, KickingByLength, Kurtosis, KylesLambda, LINEARREG_INTERCEPT, LadderBottom, LaguerreRSI, LeadLagCrossCorrelation, LinRegAngle, LinRegChannel, LinRegSlope, LinearRegression, LiquidationFeatures, LogReturn, LongLeggedDoji, LongLine, LongShortRatio, M2Measure, MACD, MACDEXT, MACDFIX, MAMA, MFI, MIDPOINT, MIDPRICE, MINUS_DI, MINUS_DM, MOM, MaEnvelope, MacdHistogram, MarketFacilitationIndex, MartinRatio, Marubozu, MassIndex, MatHold, MatchingLow, MaxDrawdown, McClellanOscillator, McClellanSummationIndex, McGinleyDynamic, MedianAbsoluteDeviation, MedianChannel, MedianMA, MedianPrice, Microprice, ModifiedMaStop, MorningDojiStar, MorningEveningStar, MurreyMathLines, NATR, NVI, NakedPoc, NewHighsNewLows, NewPriceLines, Nrtr, OBV, OIPriceDivergence, OIWeighted, OiToVolumeRatio, OmegaRatio, OnNeck, OpenInterestDelta, OpenInterestMomentum, OpeningMarubozu, OpeningRange, OrderBookImbalanceFull, OrderBookImbalanceTop1, OrderBookImbalanceTopN, OrderFlowImbalance, OuHalfLife, OvernightGap, OvernightIntradayReturn, PGO, PLUS_DI, PLUS_DM, PMO, POLARIZED_FRACTAL_EFFICIENCY, PPO, PSAR, PVI, PainIndex, PairSpreadZScore, PairwiseBeta, ParkinsonVolatility, PearsonCorrelation, PercentAboveMa, PercentB, PercentageTrailingStop, PerpetualPremiumIndex, PiercingDarkCloud, Pin, PivotReversal, PointAndFigureBars, PpoHistogram, ProfileShape, ProfitFactor, ProjectionBands, ProjectionOscillator, QQE, Qstick, QuartileBands, QuotedSpread, REFLEX, RMI, ROC, ROCP, ROCR, ROCR100, ROLLINGMINMAX, RSI, RSX, RSquared, RVI, RVIVolatility, RWI, RealizedSpread, RealizedVolatility, RecoveryFactor, RectangleRange, RegimeLabel, RelativeStrengthAB, RenkoBars, RenkoTrailingStop, RickshawMan, RisingThreeMethods, RogersSatchellVolatility, RollMeasure, RollingCorrelation, RollingCovariance, RollingIqr, RollingPercentileRank, RollingQuantile, RollingVWAP, RoofingFilter, SAMPLEENT, SAREXT, SHANNONENT, SMA, SMI, SMMA, STC, SWMA, SeasonalZScore, SeparatingLines, SessionHighLow, SessionRange, SessionVwap, Shark, SharpeRatio, ShootingStar, ShortLine, SignedVolume, SineWave, SinglePrints, Skewness, SmoothedHeikinAshi, SortinoRatio, SpearmanCorrelation, SpinningTop, SpreadAr1Coefficient, SpreadBollingerBands, SpreadHurst, StalledPattern, StandardError, StandardErrorBands, StarcBands, StdDev, StepTrailingStop, SterlingRatio, StickSandwich, StochRSI, Stochastic, StochasticCCI, SuperSmoother, SuperTrend, T3, TDCamouflage, TDClop, TDClopwin, TDCombo, TDCountdown, TDDWave, TDDeMarker, TDDifferential, TDLines, TDMovingAverage, TDOpen, TDPressure, TDPropulsion, TDREI, TDRangeProjection, TDRiskLevel, TDSequential, TDSetup, TDTrap, TEMA, TII, TRENDFLEX, TREND_STRENGTH_INDEX, TRIMA, TRIX, TSF, TSI, TSV, TTM_TREND, TailRatio, TakerBuySellRatio, Takuri, TasukiGap, TermStructureBasis, ThreeDrives, ThreeInside, ThreeLineBreak, ThreeLineStrike, ThreeOutside, ThreeSoldiersOrCrows, ThreeStarsInSouth, Thrusting, TickIndex, TimeBasedStop, TimeOfDayReturnProfile, TowerTopBottom, TpoProfile, TradeImbalance, TradeSignAutocorrelation, TradeVolumeIndex, TrendLabel, TreynorRatio, Triangle, Trin, TripleTopBottom, Tristar, TrueRange, TsfOscillator, TtmSqueeze, TurnOfMonth, Tweezer, TwiggsMoneyFlow, TwoCrows, TypicalPrice, UNIVERSALOSC, UlcerIndex, UltimateOscillator, UniqueThreeRiver, UpDownVolumeRatio, UpsideGapThreeMethods, UpsideGapTwoCrows, UpsidePotentialRatio, VIDYA, VWAP, VWMA, VZO, ValueArea, ValueAtRisk, Variance, VarianceRatio, VerticalHorizontalFilter, VolatilityCone, VolatilityOfVolatility, VolatilityRatio, VoltyStop, VolumeByTimeProfile, VolumeOscillator, VolumePriceTrend, VolumeProfile, VolumeRsi, VolumeWeightedMacd, VolumeWeightedSr, Vortex, Vpin, VwapStdDevBands, WAVE_PM, WMA, Wad, WaveTrend, Wedge, WeightedClose, WickRatio, WilliamsAD, WilliamsFractals, WilliamsR, WinRate, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
9
9
|
} from "./wickra_wasm_bg.js";
|