wickra 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 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=396" alt="Wickra — streaming-first technical indicators" width="100%"></a>
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
  [![CI](https://github.com/wickra-lib/wickra/actions/workflows/ci.yml/badge.svg)](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 396 indicators; start at 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
- 396 streaming-first indicators across twenty-four families. Every one passes the
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 396 indicators
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/index.d.ts CHANGED
@@ -69,6 +69,14 @@ export interface HtPhasorValue {
69
69
  inphase: number
70
70
  quadrature: number
71
71
  }
72
+ export interface QqeValue {
73
+ rsiMa: number
74
+ trailingLine: number
75
+ }
76
+ export interface ElderRayValue {
77
+ bullPower: number
78
+ bearPower: number
79
+ }
72
80
  export interface StochValue {
73
81
  k: number
74
82
  d: number
@@ -872,6 +880,87 @@ export declare class Expectancy {
872
880
  isReady(): boolean
873
881
  warmupPeriod(): number
874
882
  }
883
+ export type SineWeightedMaNode = SWMA
884
+ export declare class SWMA {
885
+ constructor(period: number)
886
+ update(value: number): number | null
887
+ batch(prices: Array<number>): Array<number>
888
+ reset(): void
889
+ isReady(): boolean
890
+ warmupPeriod(): number
891
+ }
892
+ export type GeometricMaNode = GMA
893
+ export declare class GMA {
894
+ constructor(period: number)
895
+ update(value: number): number | null
896
+ batch(prices: Array<number>): Array<number>
897
+ reset(): void
898
+ isReady(): boolean
899
+ warmupPeriod(): number
900
+ }
901
+ export type EhmaNode = EHMA
902
+ export declare class EHMA {
903
+ constructor(period: number)
904
+ update(value: number): number | null
905
+ batch(prices: Array<number>): Array<number>
906
+ reset(): void
907
+ isReady(): boolean
908
+ warmupPeriod(): number
909
+ }
910
+ export type MedianMaNode = MedianMA
911
+ export declare class MedianMA {
912
+ constructor(period: number)
913
+ update(value: number): number | null
914
+ batch(prices: Array<number>): Array<number>
915
+ reset(): void
916
+ isReady(): boolean
917
+ warmupPeriod(): number
918
+ }
919
+ export type AdaptiveLaguerreFilterNode = AdaptiveLaguerre
920
+ export declare class AdaptiveLaguerre {
921
+ constructor(period: number)
922
+ update(value: number): number | null
923
+ batch(prices: Array<number>): Array<number>
924
+ reset(): void
925
+ isReady(): boolean
926
+ warmupPeriod(): number
927
+ }
928
+ export type DisparityIndexNode = DisparityIndex
929
+ export declare class DisparityIndex {
930
+ constructor(period: number)
931
+ update(value: number): number | null
932
+ batch(prices: Array<number>): Array<number>
933
+ reset(): void
934
+ isReady(): boolean
935
+ warmupPeriod(): number
936
+ }
937
+ export type FisherRsiNode = FisherRSI
938
+ export declare class FisherRSI {
939
+ constructor(period: number)
940
+ update(value: number): number | null
941
+ batch(prices: Array<number>): Array<number>
942
+ reset(): void
943
+ isReady(): boolean
944
+ warmupPeriod(): number
945
+ }
946
+ export type RsxNode = RSX
947
+ export declare class RSX {
948
+ constructor(period: number)
949
+ update(value: number): number | null
950
+ batch(prices: Array<number>): Array<number>
951
+ reset(): void
952
+ isReady(): boolean
953
+ warmupPeriod(): number
954
+ }
955
+ export type DynamicMomentumIndexNode = DynamicMomentumIndex
956
+ export declare class DynamicMomentumIndex {
957
+ constructor(period: number)
958
+ update(value: number): number | null
959
+ batch(prices: Array<number>): Array<number>
960
+ reset(): void
961
+ isReady(): boolean
962
+ warmupPeriod(): number
963
+ }
875
964
  export type JumpIndicatorNode = JumpIndicator
876
965
  export declare class JumpIndicator {
877
966
  constructor(period: number, threshold: number)
@@ -1369,6 +1458,42 @@ export declare class HighLowRange {
1369
1458
  isReady(): boolean
1370
1459
  warmupPeriod(): number
1371
1460
  }
1461
+ export type StochasticCciNode = StochasticCCI
1462
+ export declare class StochasticCCI {
1463
+ constructor(period: number)
1464
+ update(high: number, low: number, close: number): number | null
1465
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1466
+ reset(): void
1467
+ isReady(): boolean
1468
+ warmupPeriod(): number
1469
+ }
1470
+ export type ImiNode = IMI
1471
+ export declare class IMI {
1472
+ constructor(period: number)
1473
+ update(open: number, high: number, low: number, close: number): number | null
1474
+ batch(open: Array<number>, high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1475
+ reset(): void
1476
+ isReady(): boolean
1477
+ warmupPeriod(): number
1478
+ }
1479
+ export type QqeNode = QQE
1480
+ export declare class QQE {
1481
+ constructor(rsiPeriod: number, smoothing: number, factor: number)
1482
+ update(value: number): QqeValue | null
1483
+ batch(prices: Array<number>): Array<number>
1484
+ reset(): void
1485
+ isReady(): boolean
1486
+ warmupPeriod(): number
1487
+ }
1488
+ export type ElderRayNode = ElderRay
1489
+ export declare class ElderRay {
1490
+ constructor(period: number)
1491
+ update(high: number, low: number, close: number): ElderRayValue | null
1492
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1493
+ reset(): void
1494
+ isReady(): boolean
1495
+ warmupPeriod(): number
1496
+ }
1372
1497
  export type StochNode = Stochastic
1373
1498
  export declare class Stochastic {
1374
1499
  constructor(kPeriod: number, dPeriod: number)
@@ -1677,6 +1802,42 @@ export declare class T3 {
1677
1802
  isReady(): boolean
1678
1803
  warmupPeriod(): number
1679
1804
  }
1805
+ export type GeneralizedDemaNode = GD
1806
+ export declare class GD {
1807
+ constructor(period: number, v: number)
1808
+ update(value: number): number | null
1809
+ batch(prices: Array<number>): Array<number>
1810
+ reset(): void
1811
+ isReady(): boolean
1812
+ warmupPeriod(): number
1813
+ }
1814
+ export type HoltWintersNode = HoltWinters
1815
+ export declare class HoltWinters {
1816
+ constructor(alpha: number, beta: number)
1817
+ update(value: number): number | null
1818
+ batch(prices: Array<number>): Array<number>
1819
+ reset(): void
1820
+ isReady(): boolean
1821
+ warmupPeriod(): number
1822
+ }
1823
+ export type RmiNode = RMI
1824
+ export declare class RMI {
1825
+ constructor(period: number, momentum: number)
1826
+ update(value: number): number | null
1827
+ batch(prices: Array<number>): Array<number>
1828
+ reset(): void
1829
+ isReady(): boolean
1830
+ warmupPeriod(): number
1831
+ }
1832
+ export type DerivativeOscillatorNode = DerivativeOscillator
1833
+ export declare class DerivativeOscillator {
1834
+ constructor(rsiPeriod: number, smooth1: number, smooth2: number, signalPeriod: number)
1835
+ update(value: number): number | null
1836
+ batch(prices: Array<number>): Array<number>
1837
+ reset(): void
1838
+ isReady(): boolean
1839
+ warmupPeriod(): number
1840
+ }
1680
1841
  export type TsiNode = TSI
1681
1842
  export declare class TSI {
1682
1843
  constructor(long: number, short: number)
package/index.js CHANGED
@@ -310,7 +310,7 @@ if (!nativeBinding) {
310
310
  throw new Error(`Failed to load native binding`)
311
311
  }
312
312
 
313
- const { version, SMA, EMA, WMA, RSI, DEMA, TEMA, HMA, ROC, TRIX, SMMA, TRIMA, ZLEMA, MOM, CMO, DPO, StdDev, UlcerIndex, VerticalHorizontalFilter, ZScore, McGinleyDynamic, FRAMA, SuperSmoother, FisherTransform, Decycler, CenterOfGravity, CyberneticCycle, InstantaneousTrendline, EhlersStochastic, RVIVolatility, Variance, CoefficientOfVariation, Skewness, Kurtosis, StandardError, DetrendedStdDev, RSquared, MedianAbsoluteDeviation, MIDPOINT, ROCP, ROCR, ROCR100, LINEARREG_INTERCEPT, TSF, LogReturn, RealizedVolatility, RollingIqr, RollingPercentileRank, TrendLabel, WinRate, Expectancy, JumpIndicator, RegimeLabel, RollingQuantile, Autocorrelation, HurstExponent, PearsonCorrelation, Beta, PairwiseBeta, SpreadAr1Coefficient, SpearmanCorrelation, RollingCorrelation, RollingCovariance, OuHalfLife, SpreadHurst, DistanceSsd, BetaNeutralSpread, PairSpreadZScore, LeadLagCrossCorrelation, Cointegration, RelativeStrengthAB, VarianceRatio, GrangerCausality, KalmanHedgeRatio, SpreadBollingerBands, MACD, MACDFIX, MACDEXT, BollingerBands, ATR, PLUS_DM, MINUS_DM, PLUS_DI, MINUS_DI, DX, MIDPRICE, AVGPRICE, SAREXT, HT_PHASOR, CloseVsOpen, BodySizePct, WickRatio, HighLowRange, Stochastic, OBV, ADX, ADXR, CCI, WilliamsR, MFI, PSAR, Keltner, Donchian, VWAP, RollingVWAP, AwesomeOscillator, Aroon, Inertia, ConnorsRSI, LaguerreRSI, SMI, KST, PGO, RVI, AwesomeOscillatorHistogram, STC, ElderImpulse, ZeroLagMACD, CFO, APO, KAMA, EVWMA, Alligator, JMA, VIDYA, ALMA, T3, TSI, PMO, TII, ADL, VolumePriceTrend, ChaikinMoneyFlow, ChaikinOscillator, ForceIndex, NVI, PVI, VolumeOscillator, KVO, WilliamsAD, AnchoredRSI, AnchoredVWAP, DemandIndex, TSV, VZO, MarketFacilitationIndex, EaseOfMovement, SuperTrend, ChandelierExit, ChandeKrollStop, AtrTrailingStop, HiLoActivator, VoltyStop, YoyoExit, DonchianStop, PercentageTrailingStop, StepTrailingStop, RenkoTrailingStop, TypicalPrice, MedianPrice, WeightedClose, LinearRegression, LinRegSlope, AcceleratorOscillator, BalanceOfPower, ChoppinessIndex, TrueRange, ChaikinVolatility, YangZhangVolatility, RogersSatchellVolatility, GarmanKlassVolatility, ParkinsonVolatility, LinRegAngle, BollingerBandwidth, PercentB, NATR, HistoricalVolatility, AroonOscillator, WaveTrend, RWI, Vortex, MassIndex, StochRSI, UltimateOscillator, PPO, Coppock, VWMA, MaEnvelope, AccelerationBands, StarcBands, AtrBands, HurstChannel, LinRegChannel, StandardErrorBands, DoubleBollinger, TtmSqueeze, FractalChaosBands, VwapStdDevBands, ClassicPivots, FibonacciPivots, Camarilla, WoodiePivots, DemarkPivots, WilliamsFractals, ZigZag, TDSetup, TDSequential, TDDeMarker, TDREI, TDPressure, TDCombo, TDCountdown, TDLines, TDRangeProjection, TDDifferential, TDOpen, TDRiskLevel, InverseFisherTransform, DecyclerOscillator, RoofingFilter, EmpiricalModeDecomposition, HT_DCPHASE, HT_TRENDMODE, HilbertDominantCycle, AdaptiveCycle, SineWave, MAMA, FAMA, Ichimoku, HeikinAshi, ValueArea, VolumeProfile, TpoProfile, InitialBalance, OpeningRange, Doji, Hammer, InvertedHammer, HangingMan, ShootingStar, Engulfing, Harami, MorningEveningStar, ThreeSoldiersOrCrows, PiercingDarkCloud, Marubozu, Tweezer, SpinningTop, ThreeInside, ThreeOutside, TwoCrows, UpsideGapTwoCrows, IdenticalThreeCrows, ThreeLineStrike, ThreeStarsInSouth, AbandonedBaby, AdvanceBlock, BeltHold, Breakaway, Counterattack, DojiStar, DragonflyDoji, GravestoneDoji, LongLeggedDoji, RickshawMan, EveningDojiStar, MorningDojiStar, GapSideBySideWhite, HighWave, Hikkake, HikkakeModified, HomingPigeon, OnNeck, InNeck, Thrusting, SeparatingLines, Kicking, KickingByLength, LadderBottom, MatHold, MatchingLow, LongLine, ShortLine, RisingThreeMethods, FallingThreeMethods, UpsideGapThreeMethods, DownsideGapThreeMethods, StalledPattern, StickSandwich, Takuri, ClosingMarubozu, OpeningMarubozu, TasukiGap, UniqueThreeRiver, ConcealingBabySwallow, DoubleTopBottom, TripleTopBottom, HeadAndShoulders, Triangle, Wedge, FlagPennant, RectangleRange, CupAndHandle, Abcd, Gartley, Butterfly, Bat, Crab, Shark, Cypher, ThreeDrives, OrderBookImbalanceTop1, OrderBookImbalanceFull, Microprice, QuotedSpread, DepthSlope, OrderBookImbalanceTopN, SignedVolume, CumulativeVolumeDelta, TradeImbalance, OrderFlowImbalance, Vpin, AmihudIlliquidity, RollMeasure, EffectiveSpread, RealizedSpread, KylesLambda, Footprint, FundingRate, FundingRateMean, FundingRateZScore, FundingBasis, OpenInterestDelta, OIPriceDivergence, OIWeighted, LongShortRatio, TakerBuySellRatio, LiquidationFeatures, TermStructureBasis, CalendarSpread, AdvanceDecline, AdvanceDeclineRatio, AdVolumeLine, McClellanOscillator, McClellanSummationIndex, Trin, BreadthThrust, NewHighsNewLows, HighLowIndex, PercentAboveMa, UpDownVolumeRatio, BullishPercentIndex, CumulativeVolumeIndex, AbsoluteBreadthIndex, TickIndex, SharpeRatio, SortinoRatio, CalmarRatio, OmegaRatio, MaxDrawdown, AverageDrawdown, DrawdownDuration, PainIndex, ValueAtRisk, ConditionalValueAtRisk, ProfitFactor, GainLossRatio, RecoveryFactor, KellyCriterion, TreynorRatio, InformationRatio, RenkoBars, KagiBars, PointAndFigureBars, Alpha, SessionVwap, OvernightGap, SeasonalZScore, TimeOfDayReturnProfile, IntradayVolatilityProfile, VolumeByTimeProfile, DayOfWeekProfile, AverageDailyRange, TurnOfMonth, SessionHighLow, SessionRange, OvernightIntradayReturn, FibRetracement, FibExtension, FibProjection, AutoFib, GoldenPocket, FibConfluence, FibFan, FibArcs, FibChannel, FibTimeZones } = nativeBinding
313
+ const { version, SMA, EMA, WMA, RSI, DEMA, TEMA, HMA, ROC, TRIX, SMMA, TRIMA, ZLEMA, MOM, CMO, DPO, StdDev, UlcerIndex, VerticalHorizontalFilter, ZScore, McGinleyDynamic, FRAMA, SuperSmoother, FisherTransform, Decycler, CenterOfGravity, CyberneticCycle, InstantaneousTrendline, EhlersStochastic, RVIVolatility, Variance, CoefficientOfVariation, Skewness, Kurtosis, StandardError, DetrendedStdDev, RSquared, MedianAbsoluteDeviation, MIDPOINT, ROCP, ROCR, ROCR100, LINEARREG_INTERCEPT, TSF, LogReturn, RealizedVolatility, RollingIqr, RollingPercentileRank, TrendLabel, WinRate, Expectancy, SWMA, GMA, EHMA, MedianMA, AdaptiveLaguerre, DisparityIndex, FisherRSI, RSX, DynamicMomentumIndex, JumpIndicator, RegimeLabel, RollingQuantile, Autocorrelation, HurstExponent, PearsonCorrelation, Beta, PairwiseBeta, SpreadAr1Coefficient, SpearmanCorrelation, RollingCorrelation, RollingCovariance, OuHalfLife, SpreadHurst, DistanceSsd, BetaNeutralSpread, PairSpreadZScore, LeadLagCrossCorrelation, Cointegration, RelativeStrengthAB, VarianceRatio, GrangerCausality, KalmanHedgeRatio, SpreadBollingerBands, MACD, MACDFIX, MACDEXT, BollingerBands, ATR, PLUS_DM, MINUS_DM, PLUS_DI, MINUS_DI, DX, MIDPRICE, AVGPRICE, SAREXT, HT_PHASOR, CloseVsOpen, BodySizePct, WickRatio, HighLowRange, StochasticCCI, IMI, QQE, ElderRay, Stochastic, OBV, ADX, ADXR, CCI, WilliamsR, MFI, PSAR, Keltner, Donchian, VWAP, RollingVWAP, AwesomeOscillator, Aroon, Inertia, ConnorsRSI, LaguerreRSI, SMI, KST, PGO, RVI, AwesomeOscillatorHistogram, STC, ElderImpulse, ZeroLagMACD, CFO, APO, KAMA, EVWMA, Alligator, JMA, VIDYA, ALMA, T3, GD, HoltWinters, RMI, DerivativeOscillator, TSI, PMO, TII, ADL, VolumePriceTrend, ChaikinMoneyFlow, ChaikinOscillator, ForceIndex, NVI, PVI, VolumeOscillator, KVO, WilliamsAD, AnchoredRSI, AnchoredVWAP, DemandIndex, TSV, VZO, MarketFacilitationIndex, EaseOfMovement, SuperTrend, ChandelierExit, ChandeKrollStop, AtrTrailingStop, HiLoActivator, VoltyStop, YoyoExit, DonchianStop, PercentageTrailingStop, StepTrailingStop, RenkoTrailingStop, TypicalPrice, MedianPrice, WeightedClose, LinearRegression, LinRegSlope, AcceleratorOscillator, BalanceOfPower, ChoppinessIndex, TrueRange, ChaikinVolatility, YangZhangVolatility, RogersSatchellVolatility, GarmanKlassVolatility, ParkinsonVolatility, LinRegAngle, BollingerBandwidth, PercentB, NATR, HistoricalVolatility, AroonOscillator, WaveTrend, RWI, Vortex, MassIndex, StochRSI, UltimateOscillator, PPO, Coppock, VWMA, MaEnvelope, AccelerationBands, StarcBands, AtrBands, HurstChannel, LinRegChannel, StandardErrorBands, DoubleBollinger, TtmSqueeze, FractalChaosBands, VwapStdDevBands, ClassicPivots, FibonacciPivots, Camarilla, WoodiePivots, DemarkPivots, WilliamsFractals, ZigZag, TDSetup, TDSequential, TDDeMarker, TDREI, TDPressure, TDCombo, TDCountdown, TDLines, TDRangeProjection, TDDifferential, TDOpen, TDRiskLevel, InverseFisherTransform, DecyclerOscillator, RoofingFilter, EmpiricalModeDecomposition, HT_DCPHASE, HT_TRENDMODE, HilbertDominantCycle, AdaptiveCycle, SineWave, MAMA, FAMA, Ichimoku, HeikinAshi, ValueArea, VolumeProfile, TpoProfile, InitialBalance, OpeningRange, Doji, Hammer, InvertedHammer, HangingMan, ShootingStar, Engulfing, Harami, MorningEveningStar, ThreeSoldiersOrCrows, PiercingDarkCloud, Marubozu, Tweezer, SpinningTop, ThreeInside, ThreeOutside, TwoCrows, UpsideGapTwoCrows, IdenticalThreeCrows, ThreeLineStrike, ThreeStarsInSouth, AbandonedBaby, AdvanceBlock, BeltHold, Breakaway, Counterattack, DojiStar, DragonflyDoji, GravestoneDoji, LongLeggedDoji, RickshawMan, EveningDojiStar, MorningDojiStar, GapSideBySideWhite, HighWave, Hikkake, HikkakeModified, HomingPigeon, OnNeck, InNeck, Thrusting, SeparatingLines, Kicking, KickingByLength, LadderBottom, MatHold, MatchingLow, LongLine, ShortLine, RisingThreeMethods, FallingThreeMethods, UpsideGapThreeMethods, DownsideGapThreeMethods, StalledPattern, StickSandwich, Takuri, ClosingMarubozu, OpeningMarubozu, TasukiGap, UniqueThreeRiver, ConcealingBabySwallow, DoubleTopBottom, TripleTopBottom, HeadAndShoulders, Triangle, Wedge, FlagPennant, RectangleRange, CupAndHandle, Abcd, Gartley, Butterfly, Bat, Crab, Shark, Cypher, ThreeDrives, OrderBookImbalanceTop1, OrderBookImbalanceFull, Microprice, QuotedSpread, DepthSlope, OrderBookImbalanceTopN, SignedVolume, CumulativeVolumeDelta, TradeImbalance, OrderFlowImbalance, Vpin, AmihudIlliquidity, RollMeasure, EffectiveSpread, RealizedSpread, KylesLambda, Footprint, FundingRate, FundingRateMean, FundingRateZScore, FundingBasis, OpenInterestDelta, OIPriceDivergence, OIWeighted, LongShortRatio, TakerBuySellRatio, LiquidationFeatures, TermStructureBasis, CalendarSpread, AdvanceDecline, AdvanceDeclineRatio, AdVolumeLine, McClellanOscillator, McClellanSummationIndex, Trin, BreadthThrust, NewHighsNewLows, HighLowIndex, PercentAboveMa, UpDownVolumeRatio, BullishPercentIndex, CumulativeVolumeIndex, AbsoluteBreadthIndex, TickIndex, SharpeRatio, SortinoRatio, CalmarRatio, OmegaRatio, MaxDrawdown, AverageDrawdown, DrawdownDuration, PainIndex, ValueAtRisk, ConditionalValueAtRisk, ProfitFactor, GainLossRatio, RecoveryFactor, KellyCriterion, TreynorRatio, InformationRatio, RenkoBars, KagiBars, PointAndFigureBars, Alpha, SessionVwap, OvernightGap, SeasonalZScore, TimeOfDayReturnProfile, IntradayVolatilityProfile, VolumeByTimeProfile, DayOfWeekProfile, AverageDailyRange, TurnOfMonth, SessionHighLow, SessionRange, OvernightIntradayReturn, FibRetracement, FibExtension, FibProjection, AutoFib, GoldenPocket, FibConfluence, FibFan, FibArcs, FibChannel, FibTimeZones } = nativeBinding
314
314
 
315
315
  module.exports.version = version
316
316
  module.exports.SMA = SMA
@@ -363,6 +363,15 @@ module.exports.RollingPercentileRank = RollingPercentileRank
363
363
  module.exports.TrendLabel = TrendLabel
364
364
  module.exports.WinRate = WinRate
365
365
  module.exports.Expectancy = Expectancy
366
+ module.exports.SWMA = SWMA
367
+ module.exports.GMA = GMA
368
+ module.exports.EHMA = EHMA
369
+ module.exports.MedianMA = MedianMA
370
+ module.exports.AdaptiveLaguerre = AdaptiveLaguerre
371
+ module.exports.DisparityIndex = DisparityIndex
372
+ module.exports.FisherRSI = FisherRSI
373
+ module.exports.RSX = RSX
374
+ module.exports.DynamicMomentumIndex = DynamicMomentumIndex
366
375
  module.exports.JumpIndicator = JumpIndicator
367
376
  module.exports.RegimeLabel = RegimeLabel
368
377
  module.exports.RollingQuantile = RollingQuantile
@@ -405,6 +414,10 @@ module.exports.CloseVsOpen = CloseVsOpen
405
414
  module.exports.BodySizePct = BodySizePct
406
415
  module.exports.WickRatio = WickRatio
407
416
  module.exports.HighLowRange = HighLowRange
417
+ module.exports.StochasticCCI = StochasticCCI
418
+ module.exports.IMI = IMI
419
+ module.exports.QQE = QQE
420
+ module.exports.ElderRay = ElderRay
408
421
  module.exports.Stochastic = Stochastic
409
422
  module.exports.OBV = OBV
410
423
  module.exports.ADX = ADX
@@ -439,6 +452,10 @@ module.exports.JMA = JMA
439
452
  module.exports.VIDYA = VIDYA
440
453
  module.exports.ALMA = ALMA
441
454
  module.exports.T3 = T3
455
+ module.exports.GD = GD
456
+ module.exports.HoltWinters = HoltWinters
457
+ module.exports.RMI = RMI
458
+ module.exports.DerivativeOscillator = DerivativeOscillator
442
459
  module.exports.TSI = TSI
443
460
  module.exports.PMO = PMO
444
461
  module.exports.TII = TII
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-darwin-arm64",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native binding for wickra (macOS Apple Silicon). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.darwin-arm64.node",
6
6
  "files": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-darwin-x64",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native binding for wickra (macOS Intel). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.darwin-x64.node",
6
6
  "files": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-linux-arm64-gnu",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native binding for wickra (linux arm64 GNU). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.linux-arm64-gnu.node",
6
6
  "files": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-linux-x64-gnu",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native binding for wickra (linux x64 GNU). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.linux-x64-gnu.node",
6
6
  "files": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-win32-arm64-msvc",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native binding for wickra (Windows arm64 MSVC). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.win32-arm64-msvc.node",
6
6
  "files": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-win32-x64-msvc",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Native binding for wickra (Windows x64 MSVC). Installed automatically as an optional dependency of wickra on matching platforms.",
5
5
  "main": "wickra.win32-x64-msvc.node",
6
6
  "files": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "description": "Streaming-first technical indicators: incremental, fast, install-free. Node bindings powered by Rust.",
5
5
  "author": "kingchenc <support@wickra.org>",
6
6
  "main": "index.js",
@@ -47,12 +47,12 @@
47
47
  "node": ">= 18"
48
48
  },
49
49
  "optionalDependencies": {
50
- "wickra-linux-x64-gnu": "0.5.4",
51
- "wickra-linux-arm64-gnu": "0.5.4",
52
- "wickra-darwin-x64": "0.5.4",
53
- "wickra-darwin-arm64": "0.5.4",
54
- "wickra-win32-x64-msvc": "0.5.4",
55
- "wickra-win32-arm64-msvc": "0.5.4"
50
+ "wickra-linux-x64-gnu": "0.5.6",
51
+ "wickra-linux-arm64-gnu": "0.5.6",
52
+ "wickra-darwin-x64": "0.5.6",
53
+ "wickra-darwin-arm64": "0.5.6",
54
+ "wickra-win32-x64-msvc": "0.5.6",
55
+ "wickra-win32-arm64-msvc": "0.5.6"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "napi build --platform --release",
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file