wickra 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/index.d.ts +126 -0
- package/index.js +15 -1
- package/npm/darwin-arm64/package.json +2 -2
- package/npm/darwin-arm64/wickra.darwin-arm64.node +0 -0
- package/npm/darwin-x64/package.json +2 -2
- package/npm/darwin-x64/wickra.darwin-x64.node +0 -0
- package/npm/linux-arm64-gnu/package.json +2 -2
- package/npm/linux-arm64-gnu/wickra.linux-arm64-gnu.node +0 -0
- package/npm/linux-x64-gnu/package.json +2 -2
- package/npm/linux-x64-gnu/wickra.linux-x64-gnu.node +0 -0
- package/npm/win32-arm64-msvc/package.json +2 -2
- package/npm/win32-arm64-msvc/wickra.win32-arm64-msvc.node +0 -0
- package/npm/win32-x64-msvc/package.json +2 -2
- package/npm/win32-x64-msvc/wickra.win32-x64-msvc.node +0 -0
- package/package.json +8 -8
- package/wickra.darwin-arm64.node +0 -0
- package/wickra.darwin-x64.node +0 -0
- package/wickra.linux-arm64-gnu.node +0 -0
- package/wickra.linux-x64-gnu.node +0 -0
- package/wickra.win32-arm64-msvc.node +0 -0
- package/wickra.win32-x64-msvc.node +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/index.d.ts
CHANGED
|
@@ -3253,6 +3253,132 @@ export declare class AdvanceDecline {
|
|
|
3253
3253
|
isReady(): boolean
|
|
3254
3254
|
warmupPeriod(): number
|
|
3255
3255
|
}
|
|
3256
|
+
export type AdvanceDeclineRatioNode = AdvanceDeclineRatio
|
|
3257
|
+
export declare class AdvanceDeclineRatio {
|
|
3258
|
+
constructor()
|
|
3259
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3260
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3261
|
+
reset(): void
|
|
3262
|
+
isReady(): boolean
|
|
3263
|
+
warmupPeriod(): number
|
|
3264
|
+
}
|
|
3265
|
+
export type AdVolumeLineNode = AdVolumeLine
|
|
3266
|
+
export declare class AdVolumeLine {
|
|
3267
|
+
constructor()
|
|
3268
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3269
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3270
|
+
reset(): void
|
|
3271
|
+
isReady(): boolean
|
|
3272
|
+
warmupPeriod(): number
|
|
3273
|
+
}
|
|
3274
|
+
export type McClellanOscillatorNode = McClellanOscillator
|
|
3275
|
+
export declare class McClellanOscillator {
|
|
3276
|
+
constructor()
|
|
3277
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3278
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3279
|
+
reset(): void
|
|
3280
|
+
isReady(): boolean
|
|
3281
|
+
warmupPeriod(): number
|
|
3282
|
+
}
|
|
3283
|
+
export type McClellanSummationIndexNode = McClellanSummationIndex
|
|
3284
|
+
export declare class McClellanSummationIndex {
|
|
3285
|
+
constructor()
|
|
3286
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3287
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3288
|
+
reset(): void
|
|
3289
|
+
isReady(): boolean
|
|
3290
|
+
warmupPeriod(): number
|
|
3291
|
+
}
|
|
3292
|
+
export type TrinNode = Trin
|
|
3293
|
+
export declare class Trin {
|
|
3294
|
+
constructor()
|
|
3295
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3296
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3297
|
+
reset(): void
|
|
3298
|
+
isReady(): boolean
|
|
3299
|
+
warmupPeriod(): number
|
|
3300
|
+
}
|
|
3301
|
+
export type BreadthThrustNode = BreadthThrust
|
|
3302
|
+
export declare class BreadthThrust {
|
|
3303
|
+
constructor(period: number)
|
|
3304
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3305
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3306
|
+
reset(): void
|
|
3307
|
+
isReady(): boolean
|
|
3308
|
+
warmupPeriod(): number
|
|
3309
|
+
}
|
|
3310
|
+
export type NewHighsNewLowsNode = NewHighsNewLows
|
|
3311
|
+
export declare class NewHighsNewLows {
|
|
3312
|
+
constructor()
|
|
3313
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3314
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3315
|
+
reset(): void
|
|
3316
|
+
isReady(): boolean
|
|
3317
|
+
warmupPeriod(): number
|
|
3318
|
+
}
|
|
3319
|
+
export type HighLowIndexNode = HighLowIndex
|
|
3320
|
+
export declare class HighLowIndex {
|
|
3321
|
+
constructor(period: number)
|
|
3322
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3323
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3324
|
+
reset(): void
|
|
3325
|
+
isReady(): boolean
|
|
3326
|
+
warmupPeriod(): number
|
|
3327
|
+
}
|
|
3328
|
+
export type PercentAboveMaNode = PercentAboveMa
|
|
3329
|
+
export declare class PercentAboveMa {
|
|
3330
|
+
constructor()
|
|
3331
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>, aboveMa: Array<boolean>): number | null
|
|
3332
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>, aboveMa: Array<Array<boolean>>): Array<number>
|
|
3333
|
+
reset(): void
|
|
3334
|
+
isReady(): boolean
|
|
3335
|
+
warmupPeriod(): number
|
|
3336
|
+
}
|
|
3337
|
+
export type UpDownVolumeRatioNode = UpDownVolumeRatio
|
|
3338
|
+
export declare class UpDownVolumeRatio {
|
|
3339
|
+
constructor()
|
|
3340
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3341
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3342
|
+
reset(): void
|
|
3343
|
+
isReady(): boolean
|
|
3344
|
+
warmupPeriod(): number
|
|
3345
|
+
}
|
|
3346
|
+
export type BullishPercentIndexNode = BullishPercentIndex
|
|
3347
|
+
export declare class BullishPercentIndex {
|
|
3348
|
+
constructor()
|
|
3349
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>, onBuySignal: Array<boolean>): number | null
|
|
3350
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>, onBuySignal: Array<Array<boolean>>): Array<number>
|
|
3351
|
+
reset(): void
|
|
3352
|
+
isReady(): boolean
|
|
3353
|
+
warmupPeriod(): number
|
|
3354
|
+
}
|
|
3355
|
+
export type CumulativeVolumeIndexNode = CumulativeVolumeIndex
|
|
3356
|
+
export declare class CumulativeVolumeIndex {
|
|
3357
|
+
constructor()
|
|
3358
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3359
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3360
|
+
reset(): void
|
|
3361
|
+
isReady(): boolean
|
|
3362
|
+
warmupPeriod(): number
|
|
3363
|
+
}
|
|
3364
|
+
export type AbsoluteBreadthIndexNode = AbsoluteBreadthIndex
|
|
3365
|
+
export declare class AbsoluteBreadthIndex {
|
|
3366
|
+
constructor()
|
|
3367
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3368
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3369
|
+
reset(): void
|
|
3370
|
+
isReady(): boolean
|
|
3371
|
+
warmupPeriod(): number
|
|
3372
|
+
}
|
|
3373
|
+
export type TickIndexNode = TickIndex
|
|
3374
|
+
export declare class TickIndex {
|
|
3375
|
+
constructor()
|
|
3376
|
+
update(change: Array<number>, volume: Array<number>, newHigh: Array<boolean>, newLow: Array<boolean>): number | null
|
|
3377
|
+
batch(change: Array<Array<number>>, volume: Array<Array<number>>, newHigh: Array<Array<boolean>>, newLow: Array<Array<boolean>>): Array<number>
|
|
3378
|
+
reset(): void
|
|
3379
|
+
isReady(): boolean
|
|
3380
|
+
warmupPeriod(): number
|
|
3381
|
+
}
|
|
3256
3382
|
export type SharpeRatioNode = SharpeRatio
|
|
3257
3383
|
export declare class SharpeRatio {
|
|
3258
3384
|
constructor(period: number, riskFree: 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, Autocorrelation, HurstExponent, PearsonCorrelation, Beta, PairwiseBeta, 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, 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, OrderBookImbalanceTop1, OrderBookImbalanceFull, Microprice, QuotedSpread, DepthSlope, OrderBookImbalanceTopN, SignedVolume, CumulativeVolumeDelta, TradeImbalance, EffectiveSpread, RealizedSpread, KylesLambda, Footprint, FundingRate, FundingRateMean, FundingRateZScore, FundingBasis, OpenInterestDelta, OIPriceDivergence, OIWeighted, LongShortRatio, TakerBuySellRatio, LiquidationFeatures, TermStructureBasis, CalendarSpread, AdvanceDecline, SharpeRatio, SortinoRatio, CalmarRatio, OmegaRatio, MaxDrawdown, AverageDrawdown, DrawdownDuration, PainIndex, ValueAtRisk, ConditionalValueAtRisk, ProfitFactor, GainLossRatio, RecoveryFactor, KellyCriterion, TreynorRatio, InformationRatio, RenkoBars, KagiBars, PointAndFigureBars, Alpha } = 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, Autocorrelation, HurstExponent, PearsonCorrelation, Beta, PairwiseBeta, 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, 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, OrderBookImbalanceTop1, OrderBookImbalanceFull, Microprice, QuotedSpread, DepthSlope, OrderBookImbalanceTopN, SignedVolume, CumulativeVolumeDelta, TradeImbalance, 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 } = nativeBinding
|
|
314
314
|
|
|
315
315
|
module.exports.version = version
|
|
316
316
|
module.exports.SMA = SMA
|
|
@@ -618,6 +618,20 @@ module.exports.LiquidationFeatures = LiquidationFeatures
|
|
|
618
618
|
module.exports.TermStructureBasis = TermStructureBasis
|
|
619
619
|
module.exports.CalendarSpread = CalendarSpread
|
|
620
620
|
module.exports.AdvanceDecline = AdvanceDecline
|
|
621
|
+
module.exports.AdvanceDeclineRatio = AdvanceDeclineRatio
|
|
622
|
+
module.exports.AdVolumeLine = AdVolumeLine
|
|
623
|
+
module.exports.McClellanOscillator = McClellanOscillator
|
|
624
|
+
module.exports.McClellanSummationIndex = McClellanSummationIndex
|
|
625
|
+
module.exports.Trin = Trin
|
|
626
|
+
module.exports.BreadthThrust = BreadthThrust
|
|
627
|
+
module.exports.NewHighsNewLows = NewHighsNewLows
|
|
628
|
+
module.exports.HighLowIndex = HighLowIndex
|
|
629
|
+
module.exports.PercentAboveMa = PercentAboveMa
|
|
630
|
+
module.exports.UpDownVolumeRatio = UpDownVolumeRatio
|
|
631
|
+
module.exports.BullishPercentIndex = BullishPercentIndex
|
|
632
|
+
module.exports.CumulativeVolumeIndex = CumulativeVolumeIndex
|
|
633
|
+
module.exports.AbsoluteBreadthIndex = AbsoluteBreadthIndex
|
|
634
|
+
module.exports.TickIndex = TickIndex
|
|
621
635
|
module.exports.SharpeRatio = SharpeRatio
|
|
622
636
|
module.exports.SortinoRatio = SortinoRatio
|
|
623
637
|
module.exports.CalmarRatio = CalmarRatio
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra-darwin-arm64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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": [
|
|
7
7
|
"wickra.darwin-arm64.node"
|
|
8
8
|
],
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">= 18"
|
|
12
12
|
},
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra-darwin-x64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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": [
|
|
7
7
|
"wickra.darwin-x64.node"
|
|
8
8
|
],
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">= 18"
|
|
12
12
|
},
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra-linux-arm64-gnu",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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": [
|
|
7
7
|
"wickra.linux-arm64-gnu.node"
|
|
8
8
|
],
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">= 18"
|
|
12
12
|
},
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra-linux-x64-gnu",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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": [
|
|
7
7
|
"wickra.linux-x64-gnu.node"
|
|
8
8
|
],
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">= 18"
|
|
12
12
|
},
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra-win32-arm64-msvc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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": [
|
|
7
7
|
"wickra.win32-arm64-msvc.node"
|
|
8
8
|
],
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">= 18"
|
|
12
12
|
},
|
|
Binary file
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra-win32-x64-msvc",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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": [
|
|
7
7
|
"wickra.win32-x64-msvc.node"
|
|
8
8
|
],
|
|
9
|
-
"license": "
|
|
9
|
+
"license": "MIT OR Apache-2.0",
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">= 18"
|
|
12
12
|
},
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wickra",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
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",
|
|
7
7
|
"types": "index.d.ts",
|
|
8
|
-
"license": "
|
|
8
|
+
"license": "MIT OR Apache-2.0",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"trading",
|
|
11
11
|
"indicators",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"node": ">= 18"
|
|
48
48
|
},
|
|
49
49
|
"optionalDependencies": {
|
|
50
|
-
"wickra-linux-x64-gnu": "0.
|
|
51
|
-
"wickra-linux-arm64-gnu": "0.
|
|
52
|
-
"wickra-darwin-x64": "0.
|
|
53
|
-
"wickra-darwin-arm64": "0.
|
|
54
|
-
"wickra-win32-x64-msvc": "0.
|
|
55
|
-
"wickra-win32-arm64-msvc": "0.
|
|
50
|
+
"wickra-linux-x64-gnu": "0.5.0",
|
|
51
|
+
"wickra-linux-arm64-gnu": "0.5.0",
|
|
52
|
+
"wickra-darwin-x64": "0.5.0",
|
|
53
|
+
"wickra-darwin-arm64": "0.5.0",
|
|
54
|
+
"wickra-win32-x64-msvc": "0.5.0",
|
|
55
|
+
"wickra-win32-arm64-msvc": "0.5.0"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "napi build --platform --release",
|
package/wickra.darwin-arm64.node
CHANGED
|
Binary file
|
package/wickra.darwin-x64.node
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|