wickra-wasm 0.5.4 → 0.5.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 +6 -6
- package/package.json +1 -1
- package/wickra_wasm.d.ts +203 -0
- package/wickra_wasm.js +1 -1
- package/wickra_wasm_bg.js +1411 -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=413" 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 413 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),
|
|
@@ -136,15 +136,15 @@ python -m benchmarks.compare_libraries
|
|
|
136
136
|
|
|
137
137
|
## Indicators
|
|
138
138
|
|
|
139
|
-
|
|
139
|
+
413 streaming-first indicators across twenty-four families. Every one passes the
|
|
140
140
|
`batch == streaming` equivalence test, reference-value tests, and reset
|
|
141
141
|
semantics tests. Each has a per-indicator deep dive (formula, parameters,
|
|
142
142
|
warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
|
|
143
143
|
|
|
144
144
|
| Family | Indicators |
|
|
145
145
|
|--------|-----------|
|
|
146
|
-
| Moving Averages | SMA, EMA, WMA, DEMA, TEMA, HMA, KAMA, SMMA, TRIMA, ZLEMA, T3, VWMA, ALMA, McGinley Dynamic, FRAMA, VIDYA, JMA, Alligator, EVWMA |
|
|
147
|
-
| Momentum Oscillators | RSI (Wilder), Anchored RSI, Stochastic, CCI, ROC, Williams %R, MFI, Awesome Oscillator, MOM, CMO, TSI, PMO, StochRSI, Ultimate Oscillator, RVI, PGO, KST, SMI, Laguerre RSI, Connors RSI, Inertia, ROC Percentage (ROCP), ROC Ratio (ROCR), ROC Ratio 100 (ROCR100) |
|
|
146
|
+
| Moving Averages | SMA, EMA, WMA, DEMA, TEMA, HMA, KAMA, SMMA, TRIMA, ZLEMA, T3, VWMA, ALMA, McGinley Dynamic, FRAMA, VIDYA, JMA, Alligator, EVWMA, SWMA, GMA, EHMA, Median MA, Adaptive Laguerre, GD, Holt-Winters |
|
|
147
|
+
| Momentum Oscillators | RSI (Wilder), Anchored RSI, Stochastic, CCI, ROC, Williams %R, MFI, Awesome Oscillator, MOM, CMO, TSI, PMO, StochRSI, Ultimate Oscillator, RVI, PGO, KST, SMI, Laguerre RSI, Connors RSI, Inertia, ROC Percentage (ROCP), ROC Ratio (ROCR), ROC Ratio 100 (ROCR100), Disparity Index, Fisher RSI, RSX, Dynamic Momentum Index, Stochastic CCI, RMI, Derivative Oscillator, Elder Ray, Intraday Momentum Index, QQE |
|
|
148
148
|
| Trend & Directional | MACD, MACD Fixed (MACDFIX), MACD Extended (MACDEXT), ADX (+DI/-DI), ADXR, Aroon, TRIX, Aroon Oscillator, Vortex, Random Walk Index, Trend Intensity Index, Wave Trend Oscillator, Mass Index, Choppiness Index, Vertical Horizontal Filter, Plus DM, Minus DM, Plus DI, Minus DI, DX |
|
|
149
149
|
| Price Oscillators | PPO, DPO, Coppock, Accelerator Oscillator, Balance of Power, APO, AO Histogram, CFO, Zero-Lag MACD, Elder Impulse, STC |
|
|
150
150
|
| Volatility & Bands | ATR, Bollinger Bands, Keltner Channels, Donchian Channels, NATR, StdDev, Ulcer Index, Historical Volatility, Bollinger Bandwidth, %B, True Range, Chaikin Volatility, RVI (Relative Volatility Index), Parkinson Volatility, Garman-Klass Volatility, Rogers-Satchell Volatility, Yang-Zhang Volatility |
|
|
@@ -245,7 +245,7 @@ A Python live-trading example using the public `websockets` package lives at
|
|
|
245
245
|
```
|
|
246
246
|
wickra/
|
|
247
247
|
├── crates/
|
|
248
|
-
│ ├── wickra-core/ core engine + all
|
|
248
|
+
│ ├── wickra-core/ core engine + all 413 indicators
|
|
249
249
|
│ ├── wickra/ top-level facade crate (publishes on crates.io) + benches/
|
|
250
250
|
│ └── wickra-data/ CSV reader, tick aggregator, live exchange feeds
|
|
251
251
|
├── bindings/
|
package/package.json
CHANGED
package/wickra_wasm.d.ts
CHANGED
|
@@ -154,6 +154,17 @@ export class AdaptiveCycle {
|
|
|
154
154
|
warmupPeriod(): number;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
export class AdaptiveLaguerre {
|
|
158
|
+
free(): void;
|
|
159
|
+
[Symbol.dispose](): void;
|
|
160
|
+
batch(prices: Float64Array): Float64Array;
|
|
161
|
+
isReady(): boolean;
|
|
162
|
+
constructor(period: number);
|
|
163
|
+
reset(): void;
|
|
164
|
+
update(value: number): number | undefined;
|
|
165
|
+
warmupPeriod(): number;
|
|
166
|
+
}
|
|
167
|
+
|
|
157
168
|
export class AdvanceBlock {
|
|
158
169
|
free(): void;
|
|
159
170
|
[Symbol.dispose](): void;
|
|
@@ -906,6 +917,17 @@ export class DepthSlope {
|
|
|
906
917
|
warmupPeriod(): number;
|
|
907
918
|
}
|
|
908
919
|
|
|
920
|
+
export class DerivativeOscillator {
|
|
921
|
+
free(): void;
|
|
922
|
+
[Symbol.dispose](): void;
|
|
923
|
+
batch(prices: Float64Array): Float64Array;
|
|
924
|
+
isReady(): boolean;
|
|
925
|
+
constructor(rsi_period: number, smooth1: number, smooth2: number, signal_period: number);
|
|
926
|
+
reset(): void;
|
|
927
|
+
update(value: number): number | undefined;
|
|
928
|
+
warmupPeriod(): number;
|
|
929
|
+
}
|
|
930
|
+
|
|
909
931
|
export class DetrendedStdDev {
|
|
910
932
|
free(): void;
|
|
911
933
|
[Symbol.dispose](): void;
|
|
@@ -917,6 +939,17 @@ export class DetrendedStdDev {
|
|
|
917
939
|
warmupPeriod(): number;
|
|
918
940
|
}
|
|
919
941
|
|
|
942
|
+
export class DisparityIndex {
|
|
943
|
+
free(): void;
|
|
944
|
+
[Symbol.dispose](): void;
|
|
945
|
+
batch(prices: Float64Array): Float64Array;
|
|
946
|
+
isReady(): boolean;
|
|
947
|
+
constructor(period: number);
|
|
948
|
+
reset(): void;
|
|
949
|
+
update(value: number): number | undefined;
|
|
950
|
+
warmupPeriod(): number;
|
|
951
|
+
}
|
|
952
|
+
|
|
920
953
|
export class DistanceSsd {
|
|
921
954
|
free(): void;
|
|
922
955
|
[Symbol.dispose](): void;
|
|
@@ -1042,6 +1075,28 @@ export class DrawdownDuration {
|
|
|
1042
1075
|
warmupPeriod(): number;
|
|
1043
1076
|
}
|
|
1044
1077
|
|
|
1078
|
+
export class DynamicMomentumIndex {
|
|
1079
|
+
free(): void;
|
|
1080
|
+
[Symbol.dispose](): void;
|
|
1081
|
+
batch(prices: Float64Array): Float64Array;
|
|
1082
|
+
isReady(): boolean;
|
|
1083
|
+
constructor(period: number);
|
|
1084
|
+
reset(): void;
|
|
1085
|
+
update(value: number): number | undefined;
|
|
1086
|
+
warmupPeriod(): number;
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
export class EHMA {
|
|
1090
|
+
free(): void;
|
|
1091
|
+
[Symbol.dispose](): void;
|
|
1092
|
+
batch(prices: Float64Array): Float64Array;
|
|
1093
|
+
isReady(): boolean;
|
|
1094
|
+
constructor(period: number);
|
|
1095
|
+
reset(): void;
|
|
1096
|
+
update(value: number): number | undefined;
|
|
1097
|
+
warmupPeriod(): number;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1045
1100
|
export class EMA {
|
|
1046
1101
|
free(): void;
|
|
1047
1102
|
[Symbol.dispose](): void;
|
|
@@ -1105,6 +1160,23 @@ export class ElderImpulse {
|
|
|
1105
1160
|
warmupPeriod(): number;
|
|
1106
1161
|
}
|
|
1107
1162
|
|
|
1163
|
+
export class ElderRay {
|
|
1164
|
+
free(): void;
|
|
1165
|
+
[Symbol.dispose](): void;
|
|
1166
|
+
/**
|
|
1167
|
+
* Returns `[bull0, bear0, bull1, bear1, ...]`, length `2 * n`.
|
|
1168
|
+
*/
|
|
1169
|
+
batch(high: Float64Array, low: Float64Array, close: Float64Array): Float64Array;
|
|
1170
|
+
isReady(): boolean;
|
|
1171
|
+
constructor(period: number);
|
|
1172
|
+
reset(): void;
|
|
1173
|
+
/**
|
|
1174
|
+
* Streaming update. Returns `{ bullPower, bearPower }` once warm, else `null`.
|
|
1175
|
+
*/
|
|
1176
|
+
update(high: number, low: number, close: number): any;
|
|
1177
|
+
warmupPeriod(): number;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1108
1180
|
export class EmpiricalModeDecomposition {
|
|
1109
1181
|
free(): void;
|
|
1110
1182
|
[Symbol.dispose](): void;
|
|
@@ -1281,6 +1353,17 @@ export class FibonacciPivots {
|
|
|
1281
1353
|
warmupPeriod(): number;
|
|
1282
1354
|
}
|
|
1283
1355
|
|
|
1356
|
+
export class FisherRSI {
|
|
1357
|
+
free(): void;
|
|
1358
|
+
[Symbol.dispose](): void;
|
|
1359
|
+
batch(prices: Float64Array): Float64Array;
|
|
1360
|
+
isReady(): boolean;
|
|
1361
|
+
constructor(period: number);
|
|
1362
|
+
reset(): void;
|
|
1363
|
+
update(value: number): number | undefined;
|
|
1364
|
+
warmupPeriod(): number;
|
|
1365
|
+
}
|
|
1366
|
+
|
|
1284
1367
|
export class FisherTransform {
|
|
1285
1368
|
free(): void;
|
|
1286
1369
|
[Symbol.dispose](): void;
|
|
@@ -1376,6 +1459,28 @@ export class FundingRateZScore {
|
|
|
1376
1459
|
warmupPeriod(): number;
|
|
1377
1460
|
}
|
|
1378
1461
|
|
|
1462
|
+
export class GD {
|
|
1463
|
+
free(): void;
|
|
1464
|
+
[Symbol.dispose](): void;
|
|
1465
|
+
batch(prices: Float64Array): Float64Array;
|
|
1466
|
+
isReady(): boolean;
|
|
1467
|
+
constructor(period: number, v: number);
|
|
1468
|
+
reset(): void;
|
|
1469
|
+
update(value: number): number | undefined;
|
|
1470
|
+
warmupPeriod(): number;
|
|
1471
|
+
}
|
|
1472
|
+
|
|
1473
|
+
export class GMA {
|
|
1474
|
+
free(): void;
|
|
1475
|
+
[Symbol.dispose](): void;
|
|
1476
|
+
batch(prices: Float64Array): Float64Array;
|
|
1477
|
+
isReady(): boolean;
|
|
1478
|
+
constructor(period: number);
|
|
1479
|
+
reset(): void;
|
|
1480
|
+
update(value: number): number | undefined;
|
|
1481
|
+
warmupPeriod(): number;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1379
1484
|
export class GainLossRatio {
|
|
1380
1485
|
free(): void;
|
|
1381
1486
|
[Symbol.dispose](): void;
|
|
@@ -1647,6 +1752,17 @@ export class HistoricalVolatility {
|
|
|
1647
1752
|
warmupPeriod(): number;
|
|
1648
1753
|
}
|
|
1649
1754
|
|
|
1755
|
+
export class HoltWinters {
|
|
1756
|
+
free(): void;
|
|
1757
|
+
[Symbol.dispose](): void;
|
|
1758
|
+
batch(prices: Float64Array): Float64Array;
|
|
1759
|
+
isReady(): boolean;
|
|
1760
|
+
constructor(alpha: number, beta: number);
|
|
1761
|
+
reset(): void;
|
|
1762
|
+
update(value: number): number | undefined;
|
|
1763
|
+
warmupPeriod(): number;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1650
1766
|
export class HomingPigeon {
|
|
1651
1767
|
free(): void;
|
|
1652
1768
|
[Symbol.dispose](): void;
|
|
@@ -1680,6 +1796,23 @@ export class HurstExponent {
|
|
|
1680
1796
|
warmupPeriod(): number;
|
|
1681
1797
|
}
|
|
1682
1798
|
|
|
1799
|
+
export class IMI {
|
|
1800
|
+
free(): void;
|
|
1801
|
+
[Symbol.dispose](): void;
|
|
1802
|
+
/**
|
|
1803
|
+
* Batch over open/high/low/close arrays; `NaN` during warmup.
|
|
1804
|
+
*/
|
|
1805
|
+
batch(open: Float64Array, high: Float64Array, low: Float64Array, close: Float64Array): Float64Array;
|
|
1806
|
+
isReady(): boolean;
|
|
1807
|
+
constructor(period: number);
|
|
1808
|
+
reset(): void;
|
|
1809
|
+
/**
|
|
1810
|
+
* Streaming update over one candle's open/high/low/close.
|
|
1811
|
+
*/
|
|
1812
|
+
update(open: number, high: number, low: number, close: number): number | undefined;
|
|
1813
|
+
warmupPeriod(): number;
|
|
1814
|
+
}
|
|
1815
|
+
|
|
1683
1816
|
export class Ichimoku {
|
|
1684
1817
|
free(): void;
|
|
1685
1818
|
[Symbol.dispose](): void;
|
|
@@ -2338,6 +2471,17 @@ export class MedianAbsoluteDeviation {
|
|
|
2338
2471
|
warmupPeriod(): number;
|
|
2339
2472
|
}
|
|
2340
2473
|
|
|
2474
|
+
export class MedianMA {
|
|
2475
|
+
free(): void;
|
|
2476
|
+
[Symbol.dispose](): void;
|
|
2477
|
+
batch(prices: Float64Array): Float64Array;
|
|
2478
|
+
isReady(): boolean;
|
|
2479
|
+
constructor(period: number);
|
|
2480
|
+
reset(): void;
|
|
2481
|
+
update(value: number): number | undefined;
|
|
2482
|
+
warmupPeriod(): number;
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2341
2485
|
export class MedianPrice {
|
|
2342
2486
|
free(): void;
|
|
2343
2487
|
[Symbol.dispose](): void;
|
|
@@ -2776,6 +2920,23 @@ export class ProfitFactor {
|
|
|
2776
2920
|
warmupPeriod(): number;
|
|
2777
2921
|
}
|
|
2778
2922
|
|
|
2923
|
+
export class QQE {
|
|
2924
|
+
free(): void;
|
|
2925
|
+
[Symbol.dispose](): void;
|
|
2926
|
+
/**
|
|
2927
|
+
* Returns `[rsiMa0, trailing0, rsiMa1, trailing1, ...]`, length `2 * n`.
|
|
2928
|
+
*/
|
|
2929
|
+
batch(prices: Float64Array): Float64Array;
|
|
2930
|
+
isReady(): boolean;
|
|
2931
|
+
constructor(rsi_period: number, smoothing: number, factor: number);
|
|
2932
|
+
reset(): void;
|
|
2933
|
+
/**
|
|
2934
|
+
* Streaming update. Returns `{ rsiMa, trailingLine }` once warm, else `null`.
|
|
2935
|
+
*/
|
|
2936
|
+
update(value: number): any;
|
|
2937
|
+
warmupPeriod(): number;
|
|
2938
|
+
}
|
|
2939
|
+
|
|
2779
2940
|
export class QuotedSpread {
|
|
2780
2941
|
free(): void;
|
|
2781
2942
|
[Symbol.dispose](): void;
|
|
@@ -2786,6 +2947,17 @@ export class QuotedSpread {
|
|
|
2786
2947
|
warmupPeriod(): number;
|
|
2787
2948
|
}
|
|
2788
2949
|
|
|
2950
|
+
export class RMI {
|
|
2951
|
+
free(): void;
|
|
2952
|
+
[Symbol.dispose](): void;
|
|
2953
|
+
batch(prices: Float64Array): Float64Array;
|
|
2954
|
+
isReady(): boolean;
|
|
2955
|
+
constructor(period: number, momentum: number);
|
|
2956
|
+
reset(): void;
|
|
2957
|
+
update(value: number): number | undefined;
|
|
2958
|
+
warmupPeriod(): number;
|
|
2959
|
+
}
|
|
2960
|
+
|
|
2789
2961
|
export class ROC {
|
|
2790
2962
|
free(): void;
|
|
2791
2963
|
[Symbol.dispose](): void;
|
|
@@ -2841,6 +3013,17 @@ export class RSI {
|
|
|
2841
3013
|
warmupPeriod(): number;
|
|
2842
3014
|
}
|
|
2843
3015
|
|
|
3016
|
+
export class RSX {
|
|
3017
|
+
free(): void;
|
|
3018
|
+
[Symbol.dispose](): void;
|
|
3019
|
+
batch(prices: Float64Array): Float64Array;
|
|
3020
|
+
isReady(): boolean;
|
|
3021
|
+
constructor(period: number);
|
|
3022
|
+
reset(): void;
|
|
3023
|
+
update(value: number): number | undefined;
|
|
3024
|
+
warmupPeriod(): number;
|
|
3025
|
+
}
|
|
3026
|
+
|
|
2844
3027
|
export class RSquared {
|
|
2845
3028
|
free(): void;
|
|
2846
3029
|
[Symbol.dispose](): void;
|
|
@@ -3162,6 +3345,17 @@ export class STC {
|
|
|
3162
3345
|
warmupPeriod(): number;
|
|
3163
3346
|
}
|
|
3164
3347
|
|
|
3348
|
+
export class SWMA {
|
|
3349
|
+
free(): void;
|
|
3350
|
+
[Symbol.dispose](): void;
|
|
3351
|
+
batch(prices: Float64Array): Float64Array;
|
|
3352
|
+
isReady(): boolean;
|
|
3353
|
+
constructor(period: number);
|
|
3354
|
+
reset(): void;
|
|
3355
|
+
update(value: number): number | undefined;
|
|
3356
|
+
warmupPeriod(): number;
|
|
3357
|
+
}
|
|
3358
|
+
|
|
3165
3359
|
export class SeasonalZScore {
|
|
3166
3360
|
free(): void;
|
|
3167
3361
|
[Symbol.dispose](): void;
|
|
@@ -3480,6 +3674,15 @@ export class Stochastic {
|
|
|
3480
3674
|
warmupPeriod(): number;
|
|
3481
3675
|
}
|
|
3482
3676
|
|
|
3677
|
+
export class StochasticCCI {
|
|
3678
|
+
free(): void;
|
|
3679
|
+
[Symbol.dispose](): void;
|
|
3680
|
+
batch(high: Float64Array, low: Float64Array, close: Float64Array): Float64Array;
|
|
3681
|
+
constructor(period: number);
|
|
3682
|
+
reset(): void;
|
|
3683
|
+
update(high: number, low: number, close: number): number | undefined;
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3483
3686
|
export class SuperSmoother {
|
|
3484
3687
|
free(): void;
|
|
3485
3688
|
[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
|
-
ADL, ADX, ADXR, ALMA, APO, ATR, AVGPRICE, AbandonedBaby, Abcd, AbsoluteBreadthIndex, AccelerationBands, AcceleratorOscillator, AdVolumeLine, AdaptiveCycle, AdvanceBlock, AdvanceDecline, AdvanceDeclineRatio, Alligator, Alpha, AmihudIlliquidity, AnchoredRSI, AnchoredVWAP, Aroon, AroonOscillator, AtrBands, AtrTrailingStop, AutoFib, Autocorrelation, AverageDailyRange, AverageDrawdown, AwesomeOscillator, AwesomeOscillatorHistogram, BalanceOfPower, Bat, BeltHold, Beta, BetaNeutralSpread, BodySizePct, BollingerBands, BollingerBandwidth, BreadthThrust, Breakaway, BullishPercentIndex, Butterfly, CCI, CFO, CMO, CalendarSpread, CalmarRatio, Camarilla, CenterOfGravity, 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, DetrendedStdDev, DistanceSsd, Doji, DojiStar, Donchian, DonchianStop, DoubleBollinger, DoubleTopBottom, DownsideGapThreeMethods, DragonflyDoji, DrawdownDuration, EMA, EVWMA, EaseOfMovement, EffectiveSpread, EhlersStochastic, ElderImpulse, EmpiricalModeDecomposition, Engulfing, EveningDojiStar, Expectancy, FAMA, FRAMA, FallingThreeMethods, FibArcs, FibChannel, FibConfluence, FibExtension, FibFan, FibProjection, FibRetracement, FibTimeZones, FibonacciPivots, FisherTransform, FlagPennant, Footprint, ForceIndex, FractalChaosBands, FundingBasis, FundingRate, FundingRateMean, FundingRateZScore, GainLossRatio, GapSideBySideWhite, GarmanKlassVolatility, Gartley, GoldenPocket, GrangerCausality, GravestoneDoji, HMA, HT_DCPHASE, HT_PHASOR, HT_TRENDMODE, Hammer, HangingMan, Harami, HeadAndShoulders, HeikinAshi, HiLoActivator, HighLowIndex, HighLowRange, HighWave, Hikkake, HikkakeModified, HilbertDominantCycle, HistoricalVolatility, HomingPigeon, HurstChannel, HurstExponent, Ichimoku, IdenticalThreeCrows, InNeck, Inertia, InformationRatio, InitialBalance, InstantaneousTrendline, IntradayVolatilityProfile, InverseFisherTransform, InvertedHammer, JMA, JumpIndicator, KAMA, KST, KVO, KagiBars, KalmanHedgeRatio, KellyCriterion, Keltner, 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, MarketFacilitationIndex, Marubozu, MassIndex, MatHold, MatchingLow, MaxDrawdown, McClellanOscillator, McClellanSummationIndex, McGinleyDynamic, MedianAbsoluteDeviation, MedianPrice, Microprice, MorningDojiStar, MorningEveningStar, NATR, NVI, NewHighsNewLows, OBV, OIPriceDivergence, OIWeighted, OmegaRatio, OnNeck, OpenInterestDelta, OpeningMarubozu, OpeningRange, OrderBookImbalanceFull, OrderBookImbalanceTop1, OrderBookImbalanceTopN, OrderFlowImbalance, OuHalfLife, OvernightGap, OvernightIntradayReturn, PGO, PLUS_DI, PLUS_DM, PMO, PPO, PSAR, PVI, PainIndex, PairSpreadZScore, PairwiseBeta, ParkinsonVolatility, PearsonCorrelation, PercentAboveMa, PercentB, PercentageTrailingStop, PiercingDarkCloud, PointAndFigureBars, ProfitFactor, QuotedSpread, ROC, ROCP, ROCR, ROCR100, RSI, RSquared, RVI, RVIVolatility, RWI, RealizedSpread, RealizedVolatility, RecoveryFactor, RectangleRange, RegimeLabel, RelativeStrengthAB, RenkoBars, RenkoTrailingStop, RickshawMan, RisingThreeMethods, RogersSatchellVolatility, RollMeasure, RollingCorrelation, RollingCovariance, RollingIqr, RollingPercentileRank, RollingQuantile, RollingVWAP, RoofingFilter, SAREXT, SMA, SMI, SMMA, STC, SeasonalZScore, SeparatingLines, SessionHighLow, SessionRange, SessionVwap, Shark, SharpeRatio, ShootingStar, ShortLine, SignedVolume, SineWave, Skewness, SortinoRatio, SpearmanCorrelation, SpinningTop, SpreadAr1Coefficient, SpreadBollingerBands, SpreadHurst, StalledPattern, StandardError, StandardErrorBands, StarcBands, StdDev, StepTrailingStop, StickSandwich, StochRSI, Stochastic, SuperSmoother, SuperTrend, T3, TDCombo, TDCountdown, TDDeMarker, TDDifferential, TDLines, TDOpen, TDPressure, TDREI, TDRangeProjection, TDRiskLevel, TDSequential, TDSetup, TEMA, TII, TRIMA, TRIX, TSF, TSI, TSV, TakerBuySellRatio, Takuri, TasukiGap, TermStructureBasis, ThreeDrives, ThreeInside, ThreeLineStrike, ThreeOutside, ThreeSoldiersOrCrows, ThreeStarsInSouth, Thrusting, TickIndex, TimeOfDayReturnProfile, TpoProfile, TradeImbalance, TrendLabel, TreynorRatio, Triangle, Trin, TripleTopBottom, TrueRange, TtmSqueeze, TurnOfMonth, Tweezer, TwoCrows, TypicalPrice, UlcerIndex, UltimateOscillator, UniqueThreeRiver, UpDownVolumeRatio, UpsideGapThreeMethods, UpsideGapTwoCrows, VIDYA, VWAP, VWMA, VZO, ValueArea, ValueAtRisk, Variance, VarianceRatio, VerticalHorizontalFilter, VoltyStop, VolumeByTimeProfile, VolumeOscillator, VolumePriceTrend, VolumeProfile, Vortex, Vpin, VwapStdDevBands, WMA, WaveTrend, Wedge, WeightedClose, WickRatio, WilliamsAD, WilliamsFractals, WilliamsR, WinRate, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
8
|
+
ADL, ADX, ADXR, ALMA, APO, ATR, AVGPRICE, AbandonedBaby, Abcd, AbsoluteBreadthIndex, AccelerationBands, AcceleratorOscillator, AdVolumeLine, AdaptiveCycle, AdaptiveLaguerre, AdvanceBlock, AdvanceDecline, AdvanceDeclineRatio, Alligator, Alpha, AmihudIlliquidity, AnchoredRSI, AnchoredVWAP, Aroon, AroonOscillator, AtrBands, AtrTrailingStop, AutoFib, Autocorrelation, AverageDailyRange, AverageDrawdown, AwesomeOscillator, AwesomeOscillatorHistogram, BalanceOfPower, Bat, BeltHold, Beta, BetaNeutralSpread, BodySizePct, BollingerBands, BollingerBandwidth, BreadthThrust, Breakaway, BullishPercentIndex, Butterfly, CCI, CFO, CMO, CalendarSpread, CalmarRatio, Camarilla, CenterOfGravity, 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, DynamicMomentumIndex, EHMA, EMA, EVWMA, EaseOfMovement, EffectiveSpread, EhlersStochastic, ElderImpulse, ElderRay, EmpiricalModeDecomposition, Engulfing, EveningDojiStar, Expectancy, FAMA, FRAMA, FallingThreeMethods, FibArcs, FibChannel, FibConfluence, FibExtension, FibFan, FibProjection, FibRetracement, FibTimeZones, FibonacciPivots, FisherRSI, FisherTransform, FlagPennant, Footprint, ForceIndex, FractalChaosBands, FundingBasis, FundingRate, FundingRateMean, FundingRateZScore, GD, GMA, GainLossRatio, GapSideBySideWhite, GarmanKlassVolatility, Gartley, GoldenPocket, GrangerCausality, GravestoneDoji, HMA, HT_DCPHASE, HT_PHASOR, HT_TRENDMODE, Hammer, HangingMan, Harami, HeadAndShoulders, HeikinAshi, HiLoActivator, HighLowIndex, HighLowRange, HighWave, Hikkake, HikkakeModified, HilbertDominantCycle, HistoricalVolatility, HoltWinters, HomingPigeon, HurstChannel, HurstExponent, IMI, Ichimoku, IdenticalThreeCrows, InNeck, Inertia, InformationRatio, InitialBalance, InstantaneousTrendline, IntradayVolatilityProfile, InverseFisherTransform, InvertedHammer, JMA, JumpIndicator, KAMA, KST, KVO, KagiBars, KalmanHedgeRatio, KellyCriterion, Keltner, 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, MarketFacilitationIndex, Marubozu, MassIndex, MatHold, MatchingLow, MaxDrawdown, McClellanOscillator, McClellanSummationIndex, McGinleyDynamic, MedianAbsoluteDeviation, MedianMA, MedianPrice, Microprice, MorningDojiStar, MorningEveningStar, NATR, NVI, NewHighsNewLows, OBV, OIPriceDivergence, OIWeighted, OmegaRatio, OnNeck, OpenInterestDelta, OpeningMarubozu, OpeningRange, OrderBookImbalanceFull, OrderBookImbalanceTop1, OrderBookImbalanceTopN, OrderFlowImbalance, OuHalfLife, OvernightGap, OvernightIntradayReturn, PGO, PLUS_DI, PLUS_DM, PMO, PPO, PSAR, PVI, PainIndex, PairSpreadZScore, PairwiseBeta, ParkinsonVolatility, PearsonCorrelation, PercentAboveMa, PercentB, PercentageTrailingStop, PiercingDarkCloud, PointAndFigureBars, ProfitFactor, QQE, QuotedSpread, RMI, ROC, ROCP, ROCR, ROCR100, 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, SAREXT, SMA, SMI, SMMA, STC, SWMA, SeasonalZScore, SeparatingLines, SessionHighLow, SessionRange, SessionVwap, Shark, SharpeRatio, ShootingStar, ShortLine, SignedVolume, SineWave, Skewness, SortinoRatio, SpearmanCorrelation, SpinningTop, SpreadAr1Coefficient, SpreadBollingerBands, SpreadHurst, StalledPattern, StandardError, StandardErrorBands, StarcBands, StdDev, StepTrailingStop, StickSandwich, StochRSI, Stochastic, StochasticCCI, SuperSmoother, SuperTrend, T3, TDCombo, TDCountdown, TDDeMarker, TDDifferential, TDLines, TDOpen, TDPressure, TDREI, TDRangeProjection, TDRiskLevel, TDSequential, TDSetup, TEMA, TII, TRIMA, TRIX, TSF, TSI, TSV, TakerBuySellRatio, Takuri, TasukiGap, TermStructureBasis, ThreeDrives, ThreeInside, ThreeLineStrike, ThreeOutside, ThreeSoldiersOrCrows, ThreeStarsInSouth, Thrusting, TickIndex, TimeOfDayReturnProfile, TpoProfile, TradeImbalance, TrendLabel, TreynorRatio, Triangle, Trin, TripleTopBottom, TrueRange, TtmSqueeze, TurnOfMonth, Tweezer, TwoCrows, TypicalPrice, UlcerIndex, UltimateOscillator, UniqueThreeRiver, UpDownVolumeRatio, UpsideGapThreeMethods, UpsideGapTwoCrows, VIDYA, VWAP, VWMA, VZO, ValueArea, ValueAtRisk, Variance, VarianceRatio, VerticalHorizontalFilter, VoltyStop, VolumeByTimeProfile, VolumeOscillator, VolumePriceTrend, VolumeProfile, Vortex, Vpin, VwapStdDevBands, WMA, WaveTrend, Wedge, WeightedClose, WickRatio, WilliamsAD, WilliamsFractals, WilliamsR, WinRate, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
9
9
|
} from "./wickra_wasm_bg.js";
|