wickra 0.5.5 → 0.5.7

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=403" 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=420" 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 403 indicators; start at the
51
+ every one of the 420 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,7 +136,7 @@ python -m benchmarks.compare_libraries
136
136
 
137
137
  ## Indicators
138
138
 
139
- 403 streaming-first indicators across twenty-four families. Every one passes the
139
+ 420 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).
@@ -144,8 +144,8 @@ warmup) at [docs.wickra.org](https://docs.wickra.org/Indicators-Overview).
144
144
  | Family | Indicators |
145
145
  |--------|-----------|
146
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) |
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 |
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
+ | 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, TTM Trend, Trend Strength Index, Qstick, Polarized Fractal Efficiency, Wave PM, Gator Oscillator, Kase Permission Stochastic |
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 |
151
151
  | Bands & Channels | MA Envelope, Acceleration Bands, STARC Bands, ATR Bands, Hurst Channel, LinReg Channel, Standard Error Bands, Double Bollinger Bands, TTM Squeeze, Fractal Chaos Bands, VWAP StdDev Bands |
@@ -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 403 indicators
248
+ │ ├── wickra-core/ core engine + all 420 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,22 @@ 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
+ }
80
+ export interface GatorOscillatorValue {
81
+ upper: number
82
+ lower: number
83
+ }
84
+ export interface KasePermissionStochasticValue {
85
+ fast: number
86
+ slow: number
87
+ }
72
88
  export interface StochValue {
73
89
  k: number
74
90
  d: number
@@ -917,6 +933,51 @@ export declare class AdaptiveLaguerre {
917
933
  isReady(): boolean
918
934
  warmupPeriod(): number
919
935
  }
936
+ export type DisparityIndexNode = DisparityIndex
937
+ export declare class DisparityIndex {
938
+ constructor(period: number)
939
+ update(value: number): number | null
940
+ batch(prices: Array<number>): Array<number>
941
+ reset(): void
942
+ isReady(): boolean
943
+ warmupPeriod(): number
944
+ }
945
+ export type FisherRsiNode = FisherRSI
946
+ export declare class FisherRSI {
947
+ constructor(period: number)
948
+ update(value: number): number | null
949
+ batch(prices: Array<number>): Array<number>
950
+ reset(): void
951
+ isReady(): boolean
952
+ warmupPeriod(): number
953
+ }
954
+ export type RsxNode = RSX
955
+ export declare class RSX {
956
+ constructor(period: number)
957
+ update(value: number): number | null
958
+ batch(prices: Array<number>): Array<number>
959
+ reset(): void
960
+ isReady(): boolean
961
+ warmupPeriod(): number
962
+ }
963
+ export type DynamicMomentumIndexNode = DynamicMomentumIndex
964
+ export declare class DynamicMomentumIndex {
965
+ constructor(period: number)
966
+ update(value: number): number | null
967
+ batch(prices: Array<number>): Array<number>
968
+ reset(): void
969
+ isReady(): boolean
970
+ warmupPeriod(): number
971
+ }
972
+ export type TrendStrengthIndexNode = TREND_STRENGTH_INDEX
973
+ export declare class TREND_STRENGTH_INDEX {
974
+ constructor(period: number)
975
+ update(value: number): number | null
976
+ batch(prices: Array<number>): Array<number>
977
+ reset(): void
978
+ isReady(): boolean
979
+ warmupPeriod(): number
980
+ }
920
981
  export type JumpIndicatorNode = JumpIndicator
921
982
  export declare class JumpIndicator {
922
983
  constructor(period: number, threshold: number)
@@ -1414,6 +1475,96 @@ export declare class HighLowRange {
1414
1475
  isReady(): boolean
1415
1476
  warmupPeriod(): number
1416
1477
  }
1478
+ export type StochasticCciNode = StochasticCCI
1479
+ export declare class StochasticCCI {
1480
+ constructor(period: number)
1481
+ update(high: number, low: number, close: number): number | null
1482
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1483
+ reset(): void
1484
+ isReady(): boolean
1485
+ warmupPeriod(): number
1486
+ }
1487
+ export type ImiNode = IMI
1488
+ export declare class IMI {
1489
+ constructor(period: number)
1490
+ update(open: number, high: number, low: number, close: number): number | null
1491
+ batch(open: Array<number>, high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1492
+ reset(): void
1493
+ isReady(): boolean
1494
+ warmupPeriod(): number
1495
+ }
1496
+ export type QqeNode = QQE
1497
+ export declare class QQE {
1498
+ constructor(rsiPeriod: number, smoothing: number, factor: number)
1499
+ update(value: number): QqeValue | null
1500
+ batch(prices: Array<number>): Array<number>
1501
+ reset(): void
1502
+ isReady(): boolean
1503
+ warmupPeriod(): number
1504
+ }
1505
+ export type ElderRayNode = ElderRay
1506
+ export declare class ElderRay {
1507
+ constructor(period: number)
1508
+ update(high: number, low: number, close: number): ElderRayValue | null
1509
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1510
+ reset(): void
1511
+ isReady(): boolean
1512
+ warmupPeriod(): number
1513
+ }
1514
+ export type TtmTrendNode = TTM_TREND
1515
+ export declare class TTM_TREND {
1516
+ constructor(period: number)
1517
+ update(high: number, low: number, close: number): number | null
1518
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1519
+ reset(): void
1520
+ isReady(): boolean
1521
+ warmupPeriod(): number
1522
+ }
1523
+ export type QstickNode = Qstick
1524
+ export declare class Qstick {
1525
+ constructor(period: number)
1526
+ update(open: number, close: number): number | null
1527
+ batch(open: Array<number>, close: Array<number>): Array<number>
1528
+ reset(): void
1529
+ isReady(): boolean
1530
+ warmupPeriod(): number
1531
+ }
1532
+ export type PolarizedFractalEfficiencyNode = POLARIZED_FRACTAL_EFFICIENCY
1533
+ export declare class POLARIZED_FRACTAL_EFFICIENCY {
1534
+ constructor(period: number, smoothing: number)
1535
+ update(value: number): number | null
1536
+ batch(prices: Array<number>): Array<number>
1537
+ reset(): void
1538
+ isReady(): boolean
1539
+ warmupPeriod(): number
1540
+ }
1541
+ export type WavePmNode = WAVE_PM
1542
+ export declare class WAVE_PM {
1543
+ constructor(length: number, smoothing: number)
1544
+ update(value: number): number | null
1545
+ batch(prices: Array<number>): Array<number>
1546
+ reset(): void
1547
+ isReady(): boolean
1548
+ warmupPeriod(): number
1549
+ }
1550
+ export type GatorOscillatorNode = GatorOscillator
1551
+ export declare class GatorOscillator {
1552
+ constructor(jawPeriod: number, teethPeriod: number, lipsPeriod: number)
1553
+ update(high: number, low: number, close: number): GatorOscillatorValue | null
1554
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1555
+ reset(): void
1556
+ isReady(): boolean
1557
+ warmupPeriod(): number
1558
+ }
1559
+ export type KasePermissionStochasticNode = KasePermissionStochastic
1560
+ export declare class KasePermissionStochastic {
1561
+ constructor(length: number, smooth: number)
1562
+ update(high: number, low: number, close: number): KasePermissionStochasticValue | null
1563
+ batch(high: Array<number>, low: Array<number>, close: Array<number>): Array<number>
1564
+ reset(): void
1565
+ isReady(): boolean
1566
+ warmupPeriod(): number
1567
+ }
1417
1568
  export type StochNode = Stochastic
1418
1569
  export declare class Stochastic {
1419
1570
  constructor(kPeriod: number, dPeriod: number)
@@ -1740,6 +1891,24 @@ export declare class HoltWinters {
1740
1891
  isReady(): boolean
1741
1892
  warmupPeriod(): number
1742
1893
  }
1894
+ export type RmiNode = RMI
1895
+ export declare class RMI {
1896
+ constructor(period: number, momentum: number)
1897
+ update(value: number): number | null
1898
+ batch(prices: Array<number>): Array<number>
1899
+ reset(): void
1900
+ isReady(): boolean
1901
+ warmupPeriod(): number
1902
+ }
1903
+ export type DerivativeOscillatorNode = DerivativeOscillator
1904
+ export declare class DerivativeOscillator {
1905
+ constructor(rsiPeriod: number, smooth1: number, smooth2: number, signalPeriod: number)
1906
+ update(value: number): number | null
1907
+ batch(prices: Array<number>): Array<number>
1908
+ reset(): void
1909
+ isReady(): boolean
1910
+ warmupPeriod(): number
1911
+ }
1743
1912
  export type TsiNode = TSI
1744
1913
  export declare class TSI {
1745
1914
  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, SWMA, GMA, EHMA, MedianMA, AdaptiveLaguerre, 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, GD, HoltWinters, 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, TREND_STRENGTH_INDEX, 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, TTM_TREND, Qstick, POLARIZED_FRACTAL_EFFICIENCY, WAVE_PM, GatorOscillator, KasePermissionStochastic, 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
@@ -368,6 +368,11 @@ module.exports.GMA = GMA
368
368
  module.exports.EHMA = EHMA
369
369
  module.exports.MedianMA = MedianMA
370
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
375
+ module.exports.TREND_STRENGTH_INDEX = TREND_STRENGTH_INDEX
371
376
  module.exports.JumpIndicator = JumpIndicator
372
377
  module.exports.RegimeLabel = RegimeLabel
373
378
  module.exports.RollingQuantile = RollingQuantile
@@ -410,6 +415,16 @@ module.exports.CloseVsOpen = CloseVsOpen
410
415
  module.exports.BodySizePct = BodySizePct
411
416
  module.exports.WickRatio = WickRatio
412
417
  module.exports.HighLowRange = HighLowRange
418
+ module.exports.StochasticCCI = StochasticCCI
419
+ module.exports.IMI = IMI
420
+ module.exports.QQE = QQE
421
+ module.exports.ElderRay = ElderRay
422
+ module.exports.TTM_TREND = TTM_TREND
423
+ module.exports.Qstick = Qstick
424
+ module.exports.POLARIZED_FRACTAL_EFFICIENCY = POLARIZED_FRACTAL_EFFICIENCY
425
+ module.exports.WAVE_PM = WAVE_PM
426
+ module.exports.GatorOscillator = GatorOscillator
427
+ module.exports.KasePermissionStochastic = KasePermissionStochastic
413
428
  module.exports.Stochastic = Stochastic
414
429
  module.exports.OBV = OBV
415
430
  module.exports.ADX = ADX
@@ -446,6 +461,8 @@ module.exports.ALMA = ALMA
446
461
  module.exports.T3 = T3
447
462
  module.exports.GD = GD
448
463
  module.exports.HoltWinters = HoltWinters
464
+ module.exports.RMI = RMI
465
+ module.exports.DerivativeOscillator = DerivativeOscillator
449
466
  module.exports.TSI = TSI
450
467
  module.exports.PMO = PMO
451
468
  module.exports.TII = TII
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickra-darwin-arm64",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
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.5",
3
+ "version": "0.5.7",
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.5",
3
+ "version": "0.5.7",
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.5",
3
+ "version": "0.5.7",
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.5",
3
+ "version": "0.5.7",
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.5",
3
+ "version": "0.5.7",
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.5",
3
+ "version": "0.5.7",
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.5",
51
- "wickra-linux-arm64-gnu": "0.5.5",
52
- "wickra-darwin-x64": "0.5.5",
53
- "wickra-darwin-arm64": "0.5.5",
54
- "wickra-win32-x64-msvc": "0.5.5",
55
- "wickra-win32-arm64-msvc": "0.5.5"
50
+ "wickra-linux-x64-gnu": "0.5.7",
51
+ "wickra-linux-arm64-gnu": "0.5.7",
52
+ "wickra-darwin-x64": "0.5.7",
53
+ "wickra-darwin-arm64": "0.5.7",
54
+ "wickra-win32-x64-msvc": "0.5.7",
55
+ "wickra-win32-arm64-msvc": "0.5.7"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "napi build --platform --release",
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file