wickra-wasm 0.4.7 → 0.5.0
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 +19 -12
- package/package.json +2 -2
- package/wickra_wasm.d.ts +140 -0
- package/wickra_wasm.js +1 -1
- package/wickra_wasm_bg.js +1033 -5
- 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=339" 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)
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
[](https://crates.io/crates/wickra)
|
|
10
10
|
[](https://pypi.org/project/wickra/)
|
|
11
11
|
[](https://www.npmjs.com/package/wickra)
|
|
12
|
-
[](#license)
|
|
13
13
|
[](https://scorecard.dev/viewer/?uri=github.com/wickra-lib/wickra)
|
|
14
14
|
[](https://github.com/wickra-lib/wickra/attestations)
|
|
15
15
|
[](https://docs.wickra.org)
|
|
@@ -47,7 +47,7 @@ Full documentation lives at **[docs.wickra.org](https://docs.wickra.org)**:
|
|
|
47
47
|
[Node](https://docs.wickra.org/Quickstart-Node),
|
|
48
48
|
[WASM](https://docs.wickra.org/Quickstart-WASM).
|
|
49
49
|
- **Indicators** — a per-indicator deep dive (formula, parameters, warmup) for
|
|
50
|
-
every one of the
|
|
50
|
+
every one of the 339 indicators; start at the
|
|
51
51
|
[indicators overview](https://docs.wickra.org/Indicators-Overview).
|
|
52
52
|
- **Reference** — [warmup periods](https://docs.wickra.org/Warmup-Periods),
|
|
53
53
|
[streaming vs batch](https://docs.wickra.org/Streaming-vs-Batch),
|
|
@@ -135,7 +135,7 @@ python -m benchmarks.compare_libraries
|
|
|
135
135
|
|
|
136
136
|
## Indicators
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
339 streaming-first indicators across twenty families. Every one passes the
|
|
139
139
|
`batch == streaming` equivalence test, reference-value tests, and reset
|
|
140
140
|
semantics tests. Each has a per-indicator deep dive (formula, parameters,
|
|
141
141
|
warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
|
|
@@ -160,7 +160,7 @@ warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
|
|
|
160
160
|
| 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 |
|
|
161
161
|
| 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 |
|
|
162
162
|
| Market Profile | Value Area (POC / VAH / VAL), Volume Profile (histogram), TPO Profile, Initial Balance, Opening Range |
|
|
163
|
-
| Market Breadth | Advance/Decline Line |
|
|
163
|
+
| 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 |
|
|
164
164
|
| 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) |
|
|
165
165
|
|
|
166
166
|
Every candlestick pattern emits a signed per-bar value — `+1.0` bullish,
|
|
@@ -240,7 +240,7 @@ A Python live-trading example using the public `websockets` package lives at
|
|
|
240
240
|
```
|
|
241
241
|
wickra/
|
|
242
242
|
├── crates/
|
|
243
|
-
│ ├── wickra-core/ core engine + all
|
|
243
|
+
│ ├── wickra-core/ core engine + all 339 indicators
|
|
244
244
|
│ ├── wickra/ top-level facade crate (publishes on crates.io) + benches/
|
|
245
245
|
│ └── wickra-data/ CSV reader, tick aggregator, live exchange feeds
|
|
246
246
|
├── bindings/
|
|
@@ -324,13 +324,20 @@ shape together before you invest the time.
|
|
|
324
324
|
|
|
325
325
|
## License
|
|
326
326
|
|
|
327
|
-
Licensed under
|
|
327
|
+
Licensed under either of
|
|
328
328
|
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
329
|
+
- Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
330
|
+
<http://www.apache.org/licenses/LICENSE-2.0>)
|
|
331
|
+
- MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
|
|
332
|
+
|
|
333
|
+
at your option. Use it, fork it, modify it, redistribute it — commercially or
|
|
334
|
+
not — file issues, send pull requests; all welcome.
|
|
335
|
+
|
|
336
|
+
### Contribution
|
|
337
|
+
|
|
338
|
+
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
339
|
+
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
|
|
340
|
+
dual licensed as above, without any additional terms or conditions.
|
|
334
341
|
|
|
335
342
|
## Disclaimer
|
|
336
343
|
|
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"kingchenc <support@wickra.org>"
|
|
6
6
|
],
|
|
7
7
|
"description": "WASM bindings for the Wickra streaming-first technical indicators library.",
|
|
8
|
-
"version": "0.
|
|
9
|
-
"license": "
|
|
8
|
+
"version": "0.5.0",
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/wickra-lib/wickra"
|
package/wickra_wasm.d.ts
CHANGED
|
@@ -89,6 +89,16 @@ export class AbandonedBaby {
|
|
|
89
89
|
warmupPeriod(): number;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
export class AbsoluteBreadthIndex {
|
|
93
|
+
free(): void;
|
|
94
|
+
[Symbol.dispose](): void;
|
|
95
|
+
isReady(): boolean;
|
|
96
|
+
constructor();
|
|
97
|
+
reset(): void;
|
|
98
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
99
|
+
warmupPeriod(): number;
|
|
100
|
+
}
|
|
101
|
+
|
|
92
102
|
export class AccelerationBands {
|
|
93
103
|
free(): void;
|
|
94
104
|
[Symbol.dispose](): void;
|
|
@@ -112,6 +122,16 @@ export class AcceleratorOscillator {
|
|
|
112
122
|
update(high: number, low: number): number | undefined;
|
|
113
123
|
}
|
|
114
124
|
|
|
125
|
+
export class AdVolumeLine {
|
|
126
|
+
free(): void;
|
|
127
|
+
[Symbol.dispose](): void;
|
|
128
|
+
isReady(): boolean;
|
|
129
|
+
constructor();
|
|
130
|
+
reset(): void;
|
|
131
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
132
|
+
warmupPeriod(): number;
|
|
133
|
+
}
|
|
134
|
+
|
|
115
135
|
export class AdaptiveCycle {
|
|
116
136
|
free(): void;
|
|
117
137
|
[Symbol.dispose](): void;
|
|
@@ -144,6 +164,16 @@ export class AdvanceDecline {
|
|
|
144
164
|
warmupPeriod(): number;
|
|
145
165
|
}
|
|
146
166
|
|
|
167
|
+
export class AdvanceDeclineRatio {
|
|
168
|
+
free(): void;
|
|
169
|
+
[Symbol.dispose](): void;
|
|
170
|
+
isReady(): boolean;
|
|
171
|
+
constructor();
|
|
172
|
+
reset(): void;
|
|
173
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
174
|
+
warmupPeriod(): number;
|
|
175
|
+
}
|
|
176
|
+
|
|
147
177
|
export class Alligator {
|
|
148
178
|
free(): void;
|
|
149
179
|
[Symbol.dispose](): void;
|
|
@@ -357,6 +387,16 @@ export class BollingerBandwidth {
|
|
|
357
387
|
warmupPeriod(): number;
|
|
358
388
|
}
|
|
359
389
|
|
|
390
|
+
export class BreadthThrust {
|
|
391
|
+
free(): void;
|
|
392
|
+
[Symbol.dispose](): void;
|
|
393
|
+
isReady(): boolean;
|
|
394
|
+
constructor(period: number);
|
|
395
|
+
reset(): void;
|
|
396
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
397
|
+
warmupPeriod(): number;
|
|
398
|
+
}
|
|
399
|
+
|
|
360
400
|
export class Breakaway {
|
|
361
401
|
free(): void;
|
|
362
402
|
[Symbol.dispose](): void;
|
|
@@ -368,6 +408,16 @@ export class Breakaway {
|
|
|
368
408
|
warmupPeriod(): number;
|
|
369
409
|
}
|
|
370
410
|
|
|
411
|
+
export class BullishPercentIndex {
|
|
412
|
+
free(): void;
|
|
413
|
+
[Symbol.dispose](): void;
|
|
414
|
+
isReady(): boolean;
|
|
415
|
+
constructor();
|
|
416
|
+
reset(): void;
|
|
417
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array, on_buy_signal: Float64Array): number | undefined;
|
|
418
|
+
warmupPeriod(): number;
|
|
419
|
+
}
|
|
420
|
+
|
|
371
421
|
export class CCI {
|
|
372
422
|
free(): void;
|
|
373
423
|
[Symbol.dispose](): void;
|
|
@@ -626,6 +676,16 @@ export class CumulativeVolumeDelta {
|
|
|
626
676
|
warmupPeriod(): number;
|
|
627
677
|
}
|
|
628
678
|
|
|
679
|
+
export class CumulativeVolumeIndex {
|
|
680
|
+
free(): void;
|
|
681
|
+
[Symbol.dispose](): void;
|
|
682
|
+
isReady(): boolean;
|
|
683
|
+
constructor();
|
|
684
|
+
reset(): void;
|
|
685
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
686
|
+
warmupPeriod(): number;
|
|
687
|
+
}
|
|
688
|
+
|
|
629
689
|
export class CyberneticCycle {
|
|
630
690
|
free(): void;
|
|
631
691
|
[Symbol.dispose](): void;
|
|
@@ -1233,6 +1293,16 @@ export class HiLoActivator {
|
|
|
1233
1293
|
update(high: number, low: number, close: number): number | undefined;
|
|
1234
1294
|
}
|
|
1235
1295
|
|
|
1296
|
+
export class HighLowIndex {
|
|
1297
|
+
free(): void;
|
|
1298
|
+
[Symbol.dispose](): void;
|
|
1299
|
+
isReady(): boolean;
|
|
1300
|
+
constructor(period: number);
|
|
1301
|
+
reset(): void;
|
|
1302
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
1303
|
+
warmupPeriod(): number;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1236
1306
|
export class HighWave {
|
|
1237
1307
|
free(): void;
|
|
1238
1308
|
[Symbol.dispose](): void;
|
|
@@ -1904,6 +1974,26 @@ export class MaxDrawdown {
|
|
|
1904
1974
|
warmupPeriod(): number;
|
|
1905
1975
|
}
|
|
1906
1976
|
|
|
1977
|
+
export class McClellanOscillator {
|
|
1978
|
+
free(): void;
|
|
1979
|
+
[Symbol.dispose](): void;
|
|
1980
|
+
isReady(): boolean;
|
|
1981
|
+
constructor();
|
|
1982
|
+
reset(): void;
|
|
1983
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
1984
|
+
warmupPeriod(): number;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
export class McClellanSummationIndex {
|
|
1988
|
+
free(): void;
|
|
1989
|
+
[Symbol.dispose](): void;
|
|
1990
|
+
isReady(): boolean;
|
|
1991
|
+
constructor();
|
|
1992
|
+
reset(): void;
|
|
1993
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
1994
|
+
warmupPeriod(): number;
|
|
1995
|
+
}
|
|
1996
|
+
|
|
1907
1997
|
export class McGinleyDynamic {
|
|
1908
1998
|
free(): void;
|
|
1909
1999
|
[Symbol.dispose](): void;
|
|
@@ -1985,6 +2075,16 @@ export class NVI {
|
|
|
1985
2075
|
update(close: number, volume: number): number | undefined;
|
|
1986
2076
|
}
|
|
1987
2077
|
|
|
2078
|
+
export class NewHighsNewLows {
|
|
2079
|
+
free(): void;
|
|
2080
|
+
[Symbol.dispose](): void;
|
|
2081
|
+
isReady(): boolean;
|
|
2082
|
+
constructor();
|
|
2083
|
+
reset(): void;
|
|
2084
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
2085
|
+
warmupPeriod(): number;
|
|
2086
|
+
}
|
|
2087
|
+
|
|
1988
2088
|
export class OBV {
|
|
1989
2089
|
free(): void;
|
|
1990
2090
|
[Symbol.dispose](): void;
|
|
@@ -2257,6 +2357,16 @@ export class PearsonCorrelation {
|
|
|
2257
2357
|
warmupPeriod(): number;
|
|
2258
2358
|
}
|
|
2259
2359
|
|
|
2360
|
+
export class PercentAboveMa {
|
|
2361
|
+
free(): void;
|
|
2362
|
+
[Symbol.dispose](): void;
|
|
2363
|
+
isReady(): boolean;
|
|
2364
|
+
constructor();
|
|
2365
|
+
reset(): void;
|
|
2366
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array, above_ma: Float64Array): number | undefined;
|
|
2367
|
+
warmupPeriod(): number;
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2260
2370
|
export class PercentB {
|
|
2261
2371
|
free(): void;
|
|
2262
2372
|
[Symbol.dispose](): void;
|
|
@@ -3251,6 +3361,16 @@ export class Thrusting {
|
|
|
3251
3361
|
warmupPeriod(): number;
|
|
3252
3362
|
}
|
|
3253
3363
|
|
|
3364
|
+
export class TickIndex {
|
|
3365
|
+
free(): void;
|
|
3366
|
+
[Symbol.dispose](): void;
|
|
3367
|
+
isReady(): boolean;
|
|
3368
|
+
constructor();
|
|
3369
|
+
reset(): void;
|
|
3370
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
3371
|
+
warmupPeriod(): number;
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3254
3374
|
export class TpoProfile {
|
|
3255
3375
|
free(): void;
|
|
3256
3376
|
[Symbol.dispose](): void;
|
|
@@ -3286,6 +3406,16 @@ export class TreynorRatio {
|
|
|
3286
3406
|
warmupPeriod(): number;
|
|
3287
3407
|
}
|
|
3288
3408
|
|
|
3409
|
+
export class Trin {
|
|
3410
|
+
free(): void;
|
|
3411
|
+
[Symbol.dispose](): void;
|
|
3412
|
+
isReady(): boolean;
|
|
3413
|
+
constructor();
|
|
3414
|
+
reset(): void;
|
|
3415
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
3416
|
+
warmupPeriod(): number;
|
|
3417
|
+
}
|
|
3418
|
+
|
|
3289
3419
|
export class TrueRange {
|
|
3290
3420
|
free(): void;
|
|
3291
3421
|
[Symbol.dispose](): void;
|
|
@@ -3371,6 +3501,16 @@ export class UniqueThreeRiver {
|
|
|
3371
3501
|
warmupPeriod(): number;
|
|
3372
3502
|
}
|
|
3373
3503
|
|
|
3504
|
+
export class UpDownVolumeRatio {
|
|
3505
|
+
free(): void;
|
|
3506
|
+
[Symbol.dispose](): void;
|
|
3507
|
+
isReady(): boolean;
|
|
3508
|
+
constructor();
|
|
3509
|
+
reset(): void;
|
|
3510
|
+
update(change: Float64Array, volume: Float64Array, new_high: Float64Array, new_low: Float64Array): number | undefined;
|
|
3511
|
+
warmupPeriod(): number;
|
|
3512
|
+
}
|
|
3513
|
+
|
|
3374
3514
|
export class UpsideGapThreeMethods {
|
|
3375
3515
|
free(): void;
|
|
3376
3516
|
[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, AccelerationBands, AcceleratorOscillator, AdaptiveCycle, AdvanceBlock, AdvanceDecline, Alligator, Alpha, AnchoredRSI, AnchoredVWAP, Aroon, AroonOscillator, AtrBands, AtrTrailingStop, Autocorrelation, AverageDrawdown, AwesomeOscillator, AwesomeOscillatorHistogram, BalanceOfPower, BeltHold, Beta, BetaNeutralSpread, BollingerBands, BollingerBandwidth, Breakaway, CCI, CFO, CMO, CalendarSpread, CalmarRatio, Camarilla, CenterOfGravity, ChaikinMoneyFlow, ChaikinOscillator, ChaikinVolatility, ChandeKrollStop, ChandelierExit, ChoppinessIndex, ClassicPivots, ClosingMarubozu, CoefficientOfVariation, Cointegration, ConcealingBabySwallow, ConditionalValueAtRisk, ConnorsRSI, Coppock, Counterattack, CumulativeVolumeDelta, CyberneticCycle, DEMA, DPO, DX, Decycler, DecyclerOscillator, DemandIndex, DemarkPivots, DepthSlope, DetrendedStdDev, DistanceSsd, Doji, DojiStar, Donchian, DonchianStop, DoubleBollinger, DownsideGapThreeMethods, DragonflyDoji, DrawdownDuration, EMA, EVWMA, EaseOfMovement, EffectiveSpread, EhlersStochastic, ElderImpulse, EmpiricalModeDecomposition, Engulfing, EveningDojiStar, FAMA, FRAMA, FallingThreeMethods, FibonacciPivots, FisherTransform, Footprint, ForceIndex, FractalChaosBands, FundingBasis, FundingRate, FundingRateMean, FundingRateZScore, GainLossRatio, GapSideBySideWhite, GarmanKlassVolatility, GrangerCausality, GravestoneDoji, HMA, HT_DCPHASE, HT_PHASOR, HT_TRENDMODE, Hammer, HangingMan, Harami, HeikinAshi, HiLoActivator, HighWave, Hikkake, HikkakeModified, HilbertDominantCycle, HistoricalVolatility, HomingPigeon, HurstChannel, HurstExponent, Ichimoku, IdenticalThreeCrows, InNeck, Inertia, InformationRatio, InitialBalance, InstantaneousTrendline, InverseFisherTransform, InvertedHammer, JMA, KAMA, KST, KVO, KagiBars, KalmanHedgeRatio, KellyCriterion, Keltner, Kicking, KickingByLength, Kurtosis, KylesLambda, LINEARREG_INTERCEPT, LadderBottom, LaguerreRSI, LeadLagCrossCorrelation, LinRegAngle, LinRegChannel, LinRegSlope, LinearRegression, LiquidationFeatures, LongLeggedDoji, LongLine, LongShortRatio, MACD, MACDEXT, MACDFIX, MAMA, MFI, MIDPOINT, MIDPRICE, MINUS_DI, MINUS_DM, MOM, MaEnvelope, MarketFacilitationIndex, Marubozu, MassIndex, MatHold, MatchingLow, MaxDrawdown, McGinleyDynamic, MedianAbsoluteDeviation, MedianPrice, Microprice, MorningDojiStar, MorningEveningStar, NATR, NVI, OBV, OIPriceDivergence, OIWeighted, OmegaRatio, OnNeck, OpenInterestDelta, OpeningMarubozu, OpeningRange, OrderBookImbalanceFull, OrderBookImbalanceTop1, OrderBookImbalanceTopN, OuHalfLife, PGO, PLUS_DI, PLUS_DM, PMO, PPO, PSAR, PVI, PainIndex, PairSpreadZScore, PairwiseBeta, ParkinsonVolatility, PearsonCorrelation, PercentB, PercentageTrailingStop, PiercingDarkCloud, PointAndFigureBars, ProfitFactor, QuotedSpread, ROC, ROCP, ROCR, ROCR100, RSI, RSquared, RVI, RVIVolatility, RWI, RealizedSpread, RecoveryFactor, RelativeStrengthAB, RenkoBars, RenkoTrailingStop, RickshawMan, RisingThreeMethods, RogersSatchellVolatility, RollingCorrelation, RollingCovariance, RollingVWAP, RoofingFilter, SAREXT, SMA, SMI, SMMA, STC, SeparatingLines, SharpeRatio, ShootingStar, ShortLine, SignedVolume, SineWave, Skewness, SortinoRatio, SpearmanCorrelation, SpinningTop, 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, ThreeInside, ThreeLineStrike, ThreeOutside, ThreeSoldiersOrCrows, ThreeStarsInSouth, Thrusting, TpoProfile, TradeImbalance, TreynorRatio, TrueRange, TtmSqueeze, Tweezer, TwoCrows, TypicalPrice, UlcerIndex, UltimateOscillator, UniqueThreeRiver, UpsideGapThreeMethods, UpsideGapTwoCrows, VIDYA, VWAP, VWMA, VZO, ValueArea, ValueAtRisk, Variance, VarianceRatio, VerticalHorizontalFilter, VoltyStop, VolumeOscillator, VolumePriceTrend, VolumeProfile, Vortex, VwapStdDevBands, WMA, WaveTrend, WeightedClose, WilliamsAD, WilliamsFractals, WilliamsR, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
8
|
+
ADL, ADX, ADXR, ALMA, APO, ATR, AVGPRICE, AbandonedBaby, AbsoluteBreadthIndex, AccelerationBands, AcceleratorOscillator, AdVolumeLine, AdaptiveCycle, AdvanceBlock, AdvanceDecline, AdvanceDeclineRatio, Alligator, Alpha, AnchoredRSI, AnchoredVWAP, Aroon, AroonOscillator, AtrBands, AtrTrailingStop, Autocorrelation, AverageDrawdown, AwesomeOscillator, AwesomeOscillatorHistogram, BalanceOfPower, BeltHold, Beta, BetaNeutralSpread, BollingerBands, BollingerBandwidth, BreadthThrust, Breakaway, BullishPercentIndex, CCI, CFO, CMO, CalendarSpread, CalmarRatio, Camarilla, CenterOfGravity, ChaikinMoneyFlow, ChaikinOscillator, ChaikinVolatility, ChandeKrollStop, ChandelierExit, ChoppinessIndex, ClassicPivots, ClosingMarubozu, CoefficientOfVariation, Cointegration, ConcealingBabySwallow, ConditionalValueAtRisk, ConnorsRSI, Coppock, Counterattack, CumulativeVolumeDelta, CumulativeVolumeIndex, CyberneticCycle, DEMA, DPO, DX, Decycler, DecyclerOscillator, DemandIndex, DemarkPivots, DepthSlope, DetrendedStdDev, DistanceSsd, Doji, DojiStar, Donchian, DonchianStop, DoubleBollinger, DownsideGapThreeMethods, DragonflyDoji, DrawdownDuration, EMA, EVWMA, EaseOfMovement, EffectiveSpread, EhlersStochastic, ElderImpulse, EmpiricalModeDecomposition, Engulfing, EveningDojiStar, FAMA, FRAMA, FallingThreeMethods, FibonacciPivots, FisherTransform, Footprint, ForceIndex, FractalChaosBands, FundingBasis, FundingRate, FundingRateMean, FundingRateZScore, GainLossRatio, GapSideBySideWhite, GarmanKlassVolatility, GrangerCausality, GravestoneDoji, HMA, HT_DCPHASE, HT_PHASOR, HT_TRENDMODE, Hammer, HangingMan, Harami, HeikinAshi, HiLoActivator, HighLowIndex, HighWave, Hikkake, HikkakeModified, HilbertDominantCycle, HistoricalVolatility, HomingPigeon, HurstChannel, HurstExponent, Ichimoku, IdenticalThreeCrows, InNeck, Inertia, InformationRatio, InitialBalance, InstantaneousTrendline, InverseFisherTransform, InvertedHammer, JMA, KAMA, KST, KVO, KagiBars, KalmanHedgeRatio, KellyCriterion, Keltner, Kicking, KickingByLength, Kurtosis, KylesLambda, LINEARREG_INTERCEPT, LadderBottom, LaguerreRSI, LeadLagCrossCorrelation, LinRegAngle, LinRegChannel, LinRegSlope, LinearRegression, LiquidationFeatures, 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, OuHalfLife, 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, RecoveryFactor, RelativeStrengthAB, RenkoBars, RenkoTrailingStop, RickshawMan, RisingThreeMethods, RogersSatchellVolatility, RollingCorrelation, RollingCovariance, RollingVWAP, RoofingFilter, SAREXT, SMA, SMI, SMMA, STC, SeparatingLines, SharpeRatio, ShootingStar, ShortLine, SignedVolume, SineWave, Skewness, SortinoRatio, SpearmanCorrelation, SpinningTop, 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, ThreeInside, ThreeLineStrike, ThreeOutside, ThreeSoldiersOrCrows, ThreeStarsInSouth, Thrusting, TickIndex, TpoProfile, TradeImbalance, TreynorRatio, Trin, TrueRange, TtmSqueeze, Tweezer, TwoCrows, TypicalPrice, UlcerIndex, UltimateOscillator, UniqueThreeRiver, UpDownVolumeRatio, UpsideGapThreeMethods, UpsideGapTwoCrows, VIDYA, VWAP, VWMA, VZO, ValueArea, ValueAtRisk, Variance, VarianceRatio, VerticalHorizontalFilter, VoltyStop, VolumeOscillator, VolumePriceTrend, VolumeProfile, Vortex, VwapStdDevBands, WMA, WaveTrend, WeightedClose, WilliamsAD, WilliamsFractals, WilliamsR, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
9
9
|
} from "./wickra_wasm_bg.js";
|