wickra-wasm 0.5.0 → 0.5.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 +5 -4
- package/package.json +1 -1
- package/wickra_wasm.d.ts +127 -0
- package/wickra_wasm.js +1 -1
- package/wickra_wasm_bg.js +1000 -81
- 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=351" 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)
|
|
@@ -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 351 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
|
+
351 streaming-first indicators across twenty-one 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).
|
|
@@ -162,6 +162,7 @@ warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
|
|
|
162
162
|
| Market Profile | Value Area (POC / VAH / VAL), Volume Profile (histogram), TPO Profile, Initial Balance, Opening Range |
|
|
163
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
|
+
| 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 |
|
|
165
166
|
|
|
166
167
|
Every candlestick pattern emits a signed per-bar value — `+1.0` bullish,
|
|
167
168
|
`−1.0` bearish, `0.0` none — so the family drops straight into a feature matrix
|
|
@@ -240,7 +241,7 @@ A Python live-trading example using the public `websockets` package lives at
|
|
|
240
241
|
```
|
|
241
242
|
wickra/
|
|
242
243
|
├── crates/
|
|
243
|
-
│ ├── wickra-core/ core engine + all
|
|
244
|
+
│ ├── wickra-core/ core engine + all 351 indicators
|
|
244
245
|
│ ├── wickra/ top-level facade crate (publishes on crates.io) + benches/
|
|
245
246
|
│ └── wickra-data/ CSV reader, tick aggregator, live exchange feeds
|
|
246
247
|
├── bindings/
|
package/package.json
CHANGED
package/wickra_wasm.d.ts
CHANGED
|
@@ -281,6 +281,16 @@ export class Autocorrelation {
|
|
|
281
281
|
warmupPeriod(): number;
|
|
282
282
|
}
|
|
283
283
|
|
|
284
|
+
export class AverageDailyRange {
|
|
285
|
+
free(): void;
|
|
286
|
+
[Symbol.dispose](): void;
|
|
287
|
+
isReady(): boolean;
|
|
288
|
+
constructor(period: number, utc_offset_minutes: number);
|
|
289
|
+
reset(): void;
|
|
290
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): number | undefined;
|
|
291
|
+
warmupPeriod(): number;
|
|
292
|
+
}
|
|
293
|
+
|
|
284
294
|
export class AverageDrawdown {
|
|
285
295
|
free(): void;
|
|
286
296
|
[Symbol.dispose](): void;
|
|
@@ -728,6 +738,17 @@ export class DX {
|
|
|
728
738
|
update(high: number, low: number, close: number): number | undefined;
|
|
729
739
|
}
|
|
730
740
|
|
|
741
|
+
export class DayOfWeekProfile {
|
|
742
|
+
free(): void;
|
|
743
|
+
[Symbol.dispose](): void;
|
|
744
|
+
isReady(): boolean;
|
|
745
|
+
constructor(utc_offset_minutes: number);
|
|
746
|
+
reset(): void;
|
|
747
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
748
|
+
utcOffsetMinutes(): number;
|
|
749
|
+
warmupPeriod(): number;
|
|
750
|
+
}
|
|
751
|
+
|
|
731
752
|
export class Decycler {
|
|
732
753
|
free(): void;
|
|
733
754
|
[Symbol.dispose](): void;
|
|
@@ -1480,6 +1501,17 @@ export class InstantaneousTrendline {
|
|
|
1480
1501
|
warmupPeriod(): number;
|
|
1481
1502
|
}
|
|
1482
1503
|
|
|
1504
|
+
export class IntradayVolatilityProfile {
|
|
1505
|
+
free(): void;
|
|
1506
|
+
[Symbol.dispose](): void;
|
|
1507
|
+
isReady(): boolean;
|
|
1508
|
+
constructor(buckets: number, utc_offset_minutes: number);
|
|
1509
|
+
reset(): void;
|
|
1510
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
1511
|
+
utcOffsetMinutes(): number;
|
|
1512
|
+
warmupPeriod(): number;
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1483
1515
|
export class InverseFisherTransform {
|
|
1484
1516
|
free(): void;
|
|
1485
1517
|
[Symbol.dispose](): void;
|
|
@@ -2219,6 +2251,27 @@ export class OuHalfLife {
|
|
|
2219
2251
|
warmupPeriod(): number;
|
|
2220
2252
|
}
|
|
2221
2253
|
|
|
2254
|
+
export class OvernightGap {
|
|
2255
|
+
free(): void;
|
|
2256
|
+
[Symbol.dispose](): void;
|
|
2257
|
+
isReady(): boolean;
|
|
2258
|
+
constructor(utc_offset_minutes: number);
|
|
2259
|
+
reset(): void;
|
|
2260
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): number | undefined;
|
|
2261
|
+
utcOffsetMinutes(): number;
|
|
2262
|
+
warmupPeriod(): number;
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
export class OvernightIntradayReturn {
|
|
2266
|
+
free(): void;
|
|
2267
|
+
[Symbol.dispose](): void;
|
|
2268
|
+
isReady(): boolean;
|
|
2269
|
+
constructor(utc_offset_minutes: number);
|
|
2270
|
+
reset(): void;
|
|
2271
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
2272
|
+
warmupPeriod(): number;
|
|
2273
|
+
}
|
|
2274
|
+
|
|
2222
2275
|
export class PGO {
|
|
2223
2276
|
free(): void;
|
|
2224
2277
|
[Symbol.dispose](): void;
|
|
@@ -2733,6 +2786,17 @@ export class STC {
|
|
|
2733
2786
|
warmupPeriod(): number;
|
|
2734
2787
|
}
|
|
2735
2788
|
|
|
2789
|
+
export class SeasonalZScore {
|
|
2790
|
+
free(): void;
|
|
2791
|
+
[Symbol.dispose](): void;
|
|
2792
|
+
isReady(): boolean;
|
|
2793
|
+
constructor(utc_offset_minutes: number);
|
|
2794
|
+
reset(): void;
|
|
2795
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): number | undefined;
|
|
2796
|
+
utcOffsetMinutes(): number;
|
|
2797
|
+
warmupPeriod(): number;
|
|
2798
|
+
}
|
|
2799
|
+
|
|
2736
2800
|
export class SeparatingLines {
|
|
2737
2801
|
free(): void;
|
|
2738
2802
|
[Symbol.dispose](): void;
|
|
@@ -2744,6 +2808,37 @@ export class SeparatingLines {
|
|
|
2744
2808
|
warmupPeriod(): number;
|
|
2745
2809
|
}
|
|
2746
2810
|
|
|
2811
|
+
export class SessionHighLow {
|
|
2812
|
+
free(): void;
|
|
2813
|
+
[Symbol.dispose](): void;
|
|
2814
|
+
isReady(): boolean;
|
|
2815
|
+
constructor(utc_offset_minutes: number);
|
|
2816
|
+
reset(): void;
|
|
2817
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
2818
|
+
warmupPeriod(): number;
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2821
|
+
export class SessionRange {
|
|
2822
|
+
free(): void;
|
|
2823
|
+
[Symbol.dispose](): void;
|
|
2824
|
+
isReady(): boolean;
|
|
2825
|
+
constructor(utc_offset_minutes: number);
|
|
2826
|
+
reset(): void;
|
|
2827
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
2828
|
+
warmupPeriod(): number;
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2831
|
+
export class SessionVwap {
|
|
2832
|
+
free(): void;
|
|
2833
|
+
[Symbol.dispose](): void;
|
|
2834
|
+
isReady(): boolean;
|
|
2835
|
+
constructor(utc_offset_minutes: number);
|
|
2836
|
+
reset(): void;
|
|
2837
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): number | undefined;
|
|
2838
|
+
utcOffsetMinutes(): number;
|
|
2839
|
+
warmupPeriod(): number;
|
|
2840
|
+
}
|
|
2841
|
+
|
|
2747
2842
|
export class SharpeRatio {
|
|
2748
2843
|
free(): void;
|
|
2749
2844
|
[Symbol.dispose](): void;
|
|
@@ -3371,6 +3466,17 @@ export class TickIndex {
|
|
|
3371
3466
|
warmupPeriod(): number;
|
|
3372
3467
|
}
|
|
3373
3468
|
|
|
3469
|
+
export class TimeOfDayReturnProfile {
|
|
3470
|
+
free(): void;
|
|
3471
|
+
[Symbol.dispose](): void;
|
|
3472
|
+
isReady(): boolean;
|
|
3473
|
+
constructor(buckets: number, utc_offset_minutes: number);
|
|
3474
|
+
reset(): void;
|
|
3475
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
3476
|
+
utcOffsetMinutes(): number;
|
|
3477
|
+
warmupPeriod(): number;
|
|
3478
|
+
}
|
|
3479
|
+
|
|
3374
3480
|
export class TpoProfile {
|
|
3375
3481
|
free(): void;
|
|
3376
3482
|
[Symbol.dispose](): void;
|
|
@@ -3439,6 +3545,16 @@ export class TtmSqueeze {
|
|
|
3439
3545
|
warmupPeriod(): number;
|
|
3440
3546
|
}
|
|
3441
3547
|
|
|
3548
|
+
export class TurnOfMonth {
|
|
3549
|
+
free(): void;
|
|
3550
|
+
[Symbol.dispose](): void;
|
|
3551
|
+
isReady(): boolean;
|
|
3552
|
+
constructor(n_first: number, n_last: number, utc_offset_minutes: number);
|
|
3553
|
+
reset(): void;
|
|
3554
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): number | undefined;
|
|
3555
|
+
warmupPeriod(): number;
|
|
3556
|
+
}
|
|
3557
|
+
|
|
3442
3558
|
export class Tweezer {
|
|
3443
3559
|
free(): void;
|
|
3444
3560
|
[Symbol.dispose](): void;
|
|
@@ -3644,6 +3760,17 @@ export class VoltyStop {
|
|
|
3644
3760
|
update(high: number, low: number, close: number): number | undefined;
|
|
3645
3761
|
}
|
|
3646
3762
|
|
|
3763
|
+
export class VolumeByTimeProfile {
|
|
3764
|
+
free(): void;
|
|
3765
|
+
[Symbol.dispose](): void;
|
|
3766
|
+
isReady(): boolean;
|
|
3767
|
+
constructor(buckets: number, utc_offset_minutes: number);
|
|
3768
|
+
reset(): void;
|
|
3769
|
+
update(open: number, high: number, low: number, close: number, volume: number, timestamp: bigint): any;
|
|
3770
|
+
utcOffsetMinutes(): number;
|
|
3771
|
+
warmupPeriod(): number;
|
|
3772
|
+
}
|
|
3773
|
+
|
|
3647
3774
|
export class VolumeOscillator {
|
|
3648
3775
|
free(): void;
|
|
3649
3776
|
[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, 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
|
|
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, AverageDailyRange, 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, DayOfWeekProfile, 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, IntradayVolatilityProfile, 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, 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, RecoveryFactor, RelativeStrengthAB, RenkoBars, RenkoTrailingStop, RickshawMan, RisingThreeMethods, RogersSatchellVolatility, RollingCorrelation, RollingCovariance, RollingVWAP, RoofingFilter, SAREXT, SMA, SMI, SMMA, STC, SeasonalZScore, SeparatingLines, SessionHighLow, SessionRange, SessionVwap, 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, TimeOfDayReturnProfile, TpoProfile, TradeImbalance, TreynorRatio, Trin, 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, VwapStdDevBands, WMA, WaveTrend, WeightedClose, WilliamsAD, WilliamsFractals, WilliamsR, WoodiePivots, YangZhangVolatility, YoyoExit, ZLEMA, ZScore, ZeroLagMACD, ZigZag, installPanicHook, version
|
|
9
9
|
} from "./wickra_wasm_bg.js";
|