wickra-wasm 0.7.2 → 0.7.4

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/wickra_wasm_bg.js CHANGED
@@ -4383,6 +4383,82 @@ export class BullishPercentIndex {
4383
4383
  }
4384
4384
  if (Symbol.dispose) BullishPercentIndex.prototype[Symbol.dispose] = BullishPercentIndex.prototype.free;
4385
4385
 
4386
+ export class BurkeRatio {
4387
+ __destroy_into_raw() {
4388
+ const ptr = this.__wbg_ptr;
4389
+ this.__wbg_ptr = 0;
4390
+ BurkeRatioFinalization.unregister(this);
4391
+ return ptr;
4392
+ }
4393
+ free() {
4394
+ const ptr = this.__destroy_into_raw();
4395
+ wasm.__wbg_burkeratio_free(ptr, 0);
4396
+ }
4397
+ /**
4398
+ * @param {Float64Array} prices
4399
+ * @returns {Float64Array}
4400
+ */
4401
+ batch(prices) {
4402
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
4403
+ const len0 = WASM_VECTOR_LEN;
4404
+ const ret = wasm.burkeratio_batch(this.__wbg_ptr, ptr0, len0);
4405
+ return takeObject(ret);
4406
+ }
4407
+ /**
4408
+ * @returns {boolean}
4409
+ */
4410
+ isReady() {
4411
+ const ret = wasm.burkeratio_isReady(this.__wbg_ptr);
4412
+ return ret !== 0;
4413
+ }
4414
+ /**
4415
+ * @param {number} period
4416
+ */
4417
+ constructor(period) {
4418
+ try {
4419
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
4420
+ wasm.burkeratio_new(retptr, period);
4421
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
4422
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
4423
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
4424
+ if (r2) {
4425
+ throw takeObject(r1);
4426
+ }
4427
+ this.__wbg_ptr = r0;
4428
+ BurkeRatioFinalization.register(this, this.__wbg_ptr, this);
4429
+ return this;
4430
+ } finally {
4431
+ wasm.__wbindgen_add_to_stack_pointer(16);
4432
+ }
4433
+ }
4434
+ reset() {
4435
+ wasm.burkeratio_reset(this.__wbg_ptr);
4436
+ }
4437
+ /**
4438
+ * @param {number} value
4439
+ * @returns {number | undefined}
4440
+ */
4441
+ update(value) {
4442
+ try {
4443
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
4444
+ wasm.burkeratio_update(retptr, this.__wbg_ptr, value);
4445
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
4446
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
4447
+ return r0 === 0 ? undefined : r2;
4448
+ } finally {
4449
+ wasm.__wbindgen_add_to_stack_pointer(16);
4450
+ }
4451
+ }
4452
+ /**
4453
+ * @returns {number}
4454
+ */
4455
+ warmupPeriod() {
4456
+ const ret = wasm.burkeratio_warmupPeriod(this.__wbg_ptr);
4457
+ return ret >>> 0;
4458
+ }
4459
+ }
4460
+ if (Symbol.dispose) BurkeRatio.prototype[Symbol.dispose] = BurkeRatio.prototype.free;
4461
+
4386
4462
  export class Butterfly {
4387
4463
  __destroy_into_raw() {
4388
4464
  const ptr = this.__wbg_ptr;
@@ -6222,6 +6298,82 @@ export class Cointegration {
6222
6298
  }
6223
6299
  if (Symbol.dispose) Cointegration.prototype[Symbol.dispose] = Cointegration.prototype.free;
6224
6300
 
6301
+ export class CommonSenseRatio {
6302
+ __destroy_into_raw() {
6303
+ const ptr = this.__wbg_ptr;
6304
+ this.__wbg_ptr = 0;
6305
+ CommonSenseRatioFinalization.unregister(this);
6306
+ return ptr;
6307
+ }
6308
+ free() {
6309
+ const ptr = this.__destroy_into_raw();
6310
+ wasm.__wbg_commonsenseratio_free(ptr, 0);
6311
+ }
6312
+ /**
6313
+ * @param {Float64Array} prices
6314
+ * @returns {Float64Array}
6315
+ */
6316
+ batch(prices) {
6317
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
6318
+ const len0 = WASM_VECTOR_LEN;
6319
+ const ret = wasm.commonsenseratio_batch(this.__wbg_ptr, ptr0, len0);
6320
+ return takeObject(ret);
6321
+ }
6322
+ /**
6323
+ * @returns {boolean}
6324
+ */
6325
+ isReady() {
6326
+ const ret = wasm.commonsenseratio_isReady(this.__wbg_ptr);
6327
+ return ret !== 0;
6328
+ }
6329
+ /**
6330
+ * @param {number} period
6331
+ */
6332
+ constructor(period) {
6333
+ try {
6334
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
6335
+ wasm.commonsenseratio_new(retptr, period);
6336
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
6337
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
6338
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
6339
+ if (r2) {
6340
+ throw takeObject(r1);
6341
+ }
6342
+ this.__wbg_ptr = r0;
6343
+ CommonSenseRatioFinalization.register(this, this.__wbg_ptr, this);
6344
+ return this;
6345
+ } finally {
6346
+ wasm.__wbindgen_add_to_stack_pointer(16);
6347
+ }
6348
+ }
6349
+ reset() {
6350
+ wasm.commonsenseratio_reset(this.__wbg_ptr);
6351
+ }
6352
+ /**
6353
+ * @param {number} value
6354
+ * @returns {number | undefined}
6355
+ */
6356
+ update(value) {
6357
+ try {
6358
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
6359
+ wasm.commonsenseratio_update(retptr, this.__wbg_ptr, value);
6360
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
6361
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
6362
+ return r0 === 0 ? undefined : r2;
6363
+ } finally {
6364
+ wasm.__wbindgen_add_to_stack_pointer(16);
6365
+ }
6366
+ }
6367
+ /**
6368
+ * @returns {number}
6369
+ */
6370
+ warmupPeriod() {
6371
+ const ret = wasm.commonsenseratio_warmupPeriod(this.__wbg_ptr);
6372
+ return ret >>> 0;
6373
+ }
6374
+ }
6375
+ if (Symbol.dispose) CommonSenseRatio.prototype[Symbol.dispose] = CommonSenseRatio.prototype.free;
6376
+
6225
6377
  export class CompositeProfile {
6226
6378
  __destroy_into_raw() {
6227
6379
  const ptr = this.__wbg_ptr;
@@ -8433,6 +8585,74 @@ export class DojiStar {
8433
8585
  }
8434
8586
  if (Symbol.dispose) DojiStar.prototype[Symbol.dispose] = DojiStar.prototype.free;
8435
8587
 
8588
+ export class DollarBars {
8589
+ __destroy_into_raw() {
8590
+ const ptr = this.__wbg_ptr;
8591
+ this.__wbg_ptr = 0;
8592
+ DollarBarsFinalization.unregister(this);
8593
+ return ptr;
8594
+ }
8595
+ free() {
8596
+ const ptr = this.__destroy_into_raw();
8597
+ wasm.__wbg_dollarbars_free(ptr, 0);
8598
+ }
8599
+ /**
8600
+ * @returns {number}
8601
+ */
8602
+ dollarPerBar() {
8603
+ const ret = wasm.dollarbars_dollarPerBar(this.__wbg_ptr);
8604
+ return ret;
8605
+ }
8606
+ /**
8607
+ * @param {number} dollar_per_bar
8608
+ */
8609
+ constructor(dollar_per_bar) {
8610
+ try {
8611
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
8612
+ wasm.dollarbars_new(retptr, dollar_per_bar);
8613
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
8614
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
8615
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
8616
+ if (r2) {
8617
+ throw takeObject(r1);
8618
+ }
8619
+ this.__wbg_ptr = r0;
8620
+ DollarBarsFinalization.register(this, this.__wbg_ptr, this);
8621
+ return this;
8622
+ } finally {
8623
+ wasm.__wbindgen_add_to_stack_pointer(16);
8624
+ }
8625
+ }
8626
+ reset() {
8627
+ wasm.dollarbars_reset(this.__wbg_ptr);
8628
+ }
8629
+ /**
8630
+ * Returns an array of `{ open, high, low, close, volume, dollar }` bars completed on this candle.
8631
+ * @param {number} open
8632
+ * @param {number} high
8633
+ * @param {number} low
8634
+ * @param {number} close
8635
+ * @param {number} volume
8636
+ * @returns {Array<any>}
8637
+ */
8638
+ update(open, high, low, close, volume) {
8639
+ try {
8640
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
8641
+ wasm.dollarbars_update(retptr, this.__wbg_ptr, open, high, low, close, volume);
8642
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
8643
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
8644
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
8645
+ if (r2) {
8646
+ throw takeObject(r1);
8647
+ }
8648
+ return takeObject(r0);
8649
+ } finally {
8650
+ wasm.__wbindgen_add_to_stack_pointer(16);
8651
+ }
8652
+ }
8653
+ }
8654
+ if (Symbol.dispose) DollarBars.prototype[Symbol.dispose] = DollarBars.prototype.free;
8655
+
8436
8656
  export class Donchian {
8437
8657
  __destroy_into_raw() {
8438
8658
  const ptr = this.__wbg_ptr;
@@ -12694,6 +12914,82 @@ export class GainLossRatio {
12694
12914
  }
12695
12915
  if (Symbol.dispose) GainLossRatio.prototype[Symbol.dispose] = GainLossRatio.prototype.free;
12696
12916
 
12917
+ export class GainToPainRatio {
12918
+ __destroy_into_raw() {
12919
+ const ptr = this.__wbg_ptr;
12920
+ this.__wbg_ptr = 0;
12921
+ GainToPainRatioFinalization.unregister(this);
12922
+ return ptr;
12923
+ }
12924
+ free() {
12925
+ const ptr = this.__destroy_into_raw();
12926
+ wasm.__wbg_gaintopainratio_free(ptr, 0);
12927
+ }
12928
+ /**
12929
+ * @param {Float64Array} prices
12930
+ * @returns {Float64Array}
12931
+ */
12932
+ batch(prices) {
12933
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
12934
+ const len0 = WASM_VECTOR_LEN;
12935
+ const ret = wasm.gaintopainratio_batch(this.__wbg_ptr, ptr0, len0);
12936
+ return takeObject(ret);
12937
+ }
12938
+ /**
12939
+ * @returns {boolean}
12940
+ */
12941
+ isReady() {
12942
+ const ret = wasm.gaintopainratio_isReady(this.__wbg_ptr);
12943
+ return ret !== 0;
12944
+ }
12945
+ /**
12946
+ * @param {number} period
12947
+ */
12948
+ constructor(period) {
12949
+ try {
12950
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
12951
+ wasm.gaintopainratio_new(retptr, period);
12952
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
12953
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
12954
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
12955
+ if (r2) {
12956
+ throw takeObject(r1);
12957
+ }
12958
+ this.__wbg_ptr = r0;
12959
+ GainToPainRatioFinalization.register(this, this.__wbg_ptr, this);
12960
+ return this;
12961
+ } finally {
12962
+ wasm.__wbindgen_add_to_stack_pointer(16);
12963
+ }
12964
+ }
12965
+ reset() {
12966
+ wasm.gaintopainratio_reset(this.__wbg_ptr);
12967
+ }
12968
+ /**
12969
+ * @param {number} value
12970
+ * @returns {number | undefined}
12971
+ */
12972
+ update(value) {
12973
+ try {
12974
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
12975
+ wasm.gaintopainratio_update(retptr, this.__wbg_ptr, value);
12976
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
12977
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
12978
+ return r0 === 0 ? undefined : r2;
12979
+ } finally {
12980
+ wasm.__wbindgen_add_to_stack_pointer(16);
12981
+ }
12982
+ }
12983
+ /**
12984
+ * @returns {number}
12985
+ */
12986
+ warmupPeriod() {
12987
+ const ret = wasm.gaintopainratio_warmupPeriod(this.__wbg_ptr);
12988
+ return ret >>> 0;
12989
+ }
12990
+ }
12991
+ if (Symbol.dispose) GainToPainRatio.prototype[Symbol.dispose] = GainToPainRatio.prototype.free;
12992
+
12697
12993
  export class GapSideBySideWhite {
12698
12994
  __destroy_into_raw() {
12699
12995
  const ptr = this.__wbg_ptr;
@@ -15882,6 +16178,73 @@ export class IdenticalThreeCrows {
15882
16178
  }
15883
16179
  if (Symbol.dispose) IdenticalThreeCrows.prototype[Symbol.dispose] = IdenticalThreeCrows.prototype.free;
15884
16180
 
16181
+ export class ImbalanceBars {
16182
+ __destroy_into_raw() {
16183
+ const ptr = this.__wbg_ptr;
16184
+ this.__wbg_ptr = 0;
16185
+ ImbalanceBarsFinalization.unregister(this);
16186
+ return ptr;
16187
+ }
16188
+ free() {
16189
+ const ptr = this.__destroy_into_raw();
16190
+ wasm.__wbg_imbalancebars_free(ptr, 0);
16191
+ }
16192
+ /**
16193
+ * @param {number} threshold
16194
+ */
16195
+ constructor(threshold) {
16196
+ try {
16197
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
16198
+ wasm.imbalancebars_new(retptr, threshold);
16199
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
16200
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
16201
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
16202
+ if (r2) {
16203
+ throw takeObject(r1);
16204
+ }
16205
+ this.__wbg_ptr = r0;
16206
+ ImbalanceBarsFinalization.register(this, this.__wbg_ptr, this);
16207
+ return this;
16208
+ } finally {
16209
+ wasm.__wbindgen_add_to_stack_pointer(16);
16210
+ }
16211
+ }
16212
+ reset() {
16213
+ wasm.imbalancebars_reset(this.__wbg_ptr);
16214
+ }
16215
+ /**
16216
+ * @returns {number}
16217
+ */
16218
+ threshold() {
16219
+ const ret = wasm.imbalancebars_threshold(this.__wbg_ptr);
16220
+ return ret;
16221
+ }
16222
+ /**
16223
+ * Returns an array of `{ open, high, low, close, imbalance, direction }` bars completed on this candle.
16224
+ * @param {number} open
16225
+ * @param {number} high
16226
+ * @param {number} low
16227
+ * @param {number} close
16228
+ * @returns {Array<any>}
16229
+ */
16230
+ update(open, high, low, close) {
16231
+ try {
16232
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
16233
+ wasm.imbalancebars_update(retptr, this.__wbg_ptr, open, high, low, close);
16234
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
16235
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
16236
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
16237
+ if (r2) {
16238
+ throw takeObject(r1);
16239
+ }
16240
+ return takeObject(r0);
16241
+ } finally {
16242
+ wasm.__wbindgen_add_to_stack_pointer(16);
16243
+ }
16244
+ }
16245
+ }
16246
+ if (Symbol.dispose) ImbalanceBars.prototype[Symbol.dispose] = ImbalanceBars.prototype.free;
16247
+
15885
16248
  export class InNeck {
15886
16249
  __destroy_into_raw() {
15887
16250
  const ptr = this.__wbg_ptr;
@@ -16995,6 +17358,82 @@ export class KAMA {
16995
17358
  }
16996
17359
  if (Symbol.dispose) KAMA.prototype[Symbol.dispose] = KAMA.prototype.free;
16997
17360
 
17361
+ export class KRatio {
17362
+ __destroy_into_raw() {
17363
+ const ptr = this.__wbg_ptr;
17364
+ this.__wbg_ptr = 0;
17365
+ KRatioFinalization.unregister(this);
17366
+ return ptr;
17367
+ }
17368
+ free() {
17369
+ const ptr = this.__destroy_into_raw();
17370
+ wasm.__wbg_kratio_free(ptr, 0);
17371
+ }
17372
+ /**
17373
+ * @param {Float64Array} prices
17374
+ * @returns {Float64Array}
17375
+ */
17376
+ batch(prices) {
17377
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
17378
+ const len0 = WASM_VECTOR_LEN;
17379
+ const ret = wasm.kratio_batch(this.__wbg_ptr, ptr0, len0);
17380
+ return takeObject(ret);
17381
+ }
17382
+ /**
17383
+ * @returns {boolean}
17384
+ */
17385
+ isReady() {
17386
+ const ret = wasm.kratio_isReady(this.__wbg_ptr);
17387
+ return ret !== 0;
17388
+ }
17389
+ /**
17390
+ * @param {number} period
17391
+ */
17392
+ constructor(period) {
17393
+ try {
17394
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
17395
+ wasm.kratio_new(retptr, period);
17396
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
17397
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
17398
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
17399
+ if (r2) {
17400
+ throw takeObject(r1);
17401
+ }
17402
+ this.__wbg_ptr = r0;
17403
+ KRatioFinalization.register(this, this.__wbg_ptr, this);
17404
+ return this;
17405
+ } finally {
17406
+ wasm.__wbindgen_add_to_stack_pointer(16);
17407
+ }
17408
+ }
17409
+ reset() {
17410
+ wasm.kratio_reset(this.__wbg_ptr);
17411
+ }
17412
+ /**
17413
+ * @param {number} value
17414
+ * @returns {number | undefined}
17415
+ */
17416
+ update(value) {
17417
+ try {
17418
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
17419
+ wasm.kratio_update(retptr, this.__wbg_ptr, value);
17420
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
17421
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
17422
+ return r0 === 0 ? undefined : r2;
17423
+ } finally {
17424
+ wasm.__wbindgen_add_to_stack_pointer(16);
17425
+ }
17426
+ }
17427
+ /**
17428
+ * @returns {number}
17429
+ */
17430
+ warmupPeriod() {
17431
+ const ret = wasm.kratio_warmupPeriod(this.__wbg_ptr);
17432
+ return ret >>> 0;
17433
+ }
17434
+ }
17435
+ if (Symbol.dispose) KRatio.prototype[Symbol.dispose] = KRatio.prototype.free;
17436
+
16998
17437
  export class KST {
16999
17438
  static __wrap(ptr) {
17000
17439
  const obj = Object.create(KST.prototype);
@@ -19128,6 +19567,84 @@ export class LongShortRatio {
19128
19567
  }
19129
19568
  if (Symbol.dispose) LongShortRatio.prototype[Symbol.dispose] = LongShortRatio.prototype.free;
19130
19569
 
19570
+ export class M2Measure {
19571
+ __destroy_into_raw() {
19572
+ const ptr = this.__wbg_ptr;
19573
+ this.__wbg_ptr = 0;
19574
+ M2MeasureFinalization.unregister(this);
19575
+ return ptr;
19576
+ }
19577
+ free() {
19578
+ const ptr = this.__destroy_into_raw();
19579
+ wasm.__wbg_m2measure_free(ptr, 0);
19580
+ }
19581
+ /**
19582
+ * @param {Float64Array} prices
19583
+ * @returns {Float64Array}
19584
+ */
19585
+ batch(prices) {
19586
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
19587
+ const len0 = WASM_VECTOR_LEN;
19588
+ const ret = wasm.m2measure_batch(this.__wbg_ptr, ptr0, len0);
19589
+ return takeObject(ret);
19590
+ }
19591
+ /**
19592
+ * @returns {boolean}
19593
+ */
19594
+ isReady() {
19595
+ const ret = wasm.m2measure_isReady(this.__wbg_ptr);
19596
+ return ret !== 0;
19597
+ }
19598
+ /**
19599
+ * @param {number} period
19600
+ * @param {number} risk_free
19601
+ * @param {number} benchmark_stddev
19602
+ */
19603
+ constructor(period, risk_free, benchmark_stddev) {
19604
+ try {
19605
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
19606
+ wasm.m2measure_new(retptr, period, risk_free, benchmark_stddev);
19607
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
19608
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
19609
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
19610
+ if (r2) {
19611
+ throw takeObject(r1);
19612
+ }
19613
+ this.__wbg_ptr = r0;
19614
+ M2MeasureFinalization.register(this, this.__wbg_ptr, this);
19615
+ return this;
19616
+ } finally {
19617
+ wasm.__wbindgen_add_to_stack_pointer(16);
19618
+ }
19619
+ }
19620
+ reset() {
19621
+ wasm.m2measure_reset(this.__wbg_ptr);
19622
+ }
19623
+ /**
19624
+ * @param {number} value
19625
+ * @returns {number | undefined}
19626
+ */
19627
+ update(value) {
19628
+ try {
19629
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
19630
+ wasm.m2measure_update(retptr, this.__wbg_ptr, value);
19631
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
19632
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
19633
+ return r0 === 0 ? undefined : r2;
19634
+ } finally {
19635
+ wasm.__wbindgen_add_to_stack_pointer(16);
19636
+ }
19637
+ }
19638
+ /**
19639
+ * @returns {number}
19640
+ */
19641
+ warmupPeriod() {
19642
+ const ret = wasm.m2measure_warmupPeriod(this.__wbg_ptr);
19643
+ return ret >>> 0;
19644
+ }
19645
+ }
19646
+ if (Symbol.dispose) M2Measure.prototype[Symbol.dispose] = M2Measure.prototype.free;
19647
+
19131
19648
  export class MACD {
19132
19649
  __destroy_into_raw() {
19133
19650
  const ptr = this.__wbg_ptr;
@@ -20118,6 +20635,82 @@ export class MarketFacilitationIndex {
20118
20635
  }
20119
20636
  if (Symbol.dispose) MarketFacilitationIndex.prototype[Symbol.dispose] = MarketFacilitationIndex.prototype.free;
20120
20637
 
20638
+ export class MartinRatio {
20639
+ __destroy_into_raw() {
20640
+ const ptr = this.__wbg_ptr;
20641
+ this.__wbg_ptr = 0;
20642
+ MartinRatioFinalization.unregister(this);
20643
+ return ptr;
20644
+ }
20645
+ free() {
20646
+ const ptr = this.__destroy_into_raw();
20647
+ wasm.__wbg_martinratio_free(ptr, 0);
20648
+ }
20649
+ /**
20650
+ * @param {Float64Array} prices
20651
+ * @returns {Float64Array}
20652
+ */
20653
+ batch(prices) {
20654
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
20655
+ const len0 = WASM_VECTOR_LEN;
20656
+ const ret = wasm.martinratio_batch(this.__wbg_ptr, ptr0, len0);
20657
+ return takeObject(ret);
20658
+ }
20659
+ /**
20660
+ * @returns {boolean}
20661
+ */
20662
+ isReady() {
20663
+ const ret = wasm.martinratio_isReady(this.__wbg_ptr);
20664
+ return ret !== 0;
20665
+ }
20666
+ /**
20667
+ * @param {number} period
20668
+ */
20669
+ constructor(period) {
20670
+ try {
20671
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
20672
+ wasm.martinratio_new(retptr, period);
20673
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
20674
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
20675
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
20676
+ if (r2) {
20677
+ throw takeObject(r1);
20678
+ }
20679
+ this.__wbg_ptr = r0;
20680
+ MartinRatioFinalization.register(this, this.__wbg_ptr, this);
20681
+ return this;
20682
+ } finally {
20683
+ wasm.__wbindgen_add_to_stack_pointer(16);
20684
+ }
20685
+ }
20686
+ reset() {
20687
+ wasm.martinratio_reset(this.__wbg_ptr);
20688
+ }
20689
+ /**
20690
+ * @param {number} value
20691
+ * @returns {number | undefined}
20692
+ */
20693
+ update(value) {
20694
+ try {
20695
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
20696
+ wasm.martinratio_update(retptr, this.__wbg_ptr, value);
20697
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
20698
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
20699
+ return r0 === 0 ? undefined : r2;
20700
+ } finally {
20701
+ wasm.__wbindgen_add_to_stack_pointer(16);
20702
+ }
20703
+ }
20704
+ /**
20705
+ * @returns {number}
20706
+ */
20707
+ warmupPeriod() {
20708
+ const ret = wasm.martinratio_warmupPeriod(this.__wbg_ptr);
20709
+ return ret >>> 0;
20710
+ }
20711
+ }
20712
+ if (Symbol.dispose) MartinRatio.prototype[Symbol.dispose] = MartinRatio.prototype.free;
20713
+
20121
20714
  export class Marubozu {
20122
20715
  __destroy_into_raw() {
20123
20716
  const ptr = this.__wbg_ptr;
@@ -26815,6 +27408,91 @@ export class RWI {
26815
27408
  }
26816
27409
  if (Symbol.dispose) RWI.prototype[Symbol.dispose] = RWI.prototype.free;
26817
27410
 
27411
+ export class RangeBars {
27412
+ __destroy_into_raw() {
27413
+ const ptr = this.__wbg_ptr;
27414
+ this.__wbg_ptr = 0;
27415
+ RangeBarsFinalization.unregister(this);
27416
+ return ptr;
27417
+ }
27418
+ free() {
27419
+ const ptr = this.__destroy_into_raw();
27420
+ wasm.__wbg_rangebars_free(ptr, 0);
27421
+ }
27422
+ /**
27423
+ * @param {Float64Array} close
27424
+ * @returns {Array<any>}
27425
+ */
27426
+ batch(close) {
27427
+ try {
27428
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
27429
+ const ptr0 = passArrayF64ToWasm0(close, wasm.__wbindgen_export3);
27430
+ const len0 = WASM_VECTOR_LEN;
27431
+ wasm.rangebars_batch(retptr, this.__wbg_ptr, ptr0, len0);
27432
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
27433
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
27434
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
27435
+ if (r2) {
27436
+ throw takeObject(r1);
27437
+ }
27438
+ return takeObject(r0);
27439
+ } finally {
27440
+ wasm.__wbindgen_add_to_stack_pointer(16);
27441
+ }
27442
+ }
27443
+ /**
27444
+ * @param {number} range
27445
+ */
27446
+ constructor(range) {
27447
+ try {
27448
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
27449
+ wasm.rangebars_new(retptr, range);
27450
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
27451
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
27452
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
27453
+ if (r2) {
27454
+ throw takeObject(r1);
27455
+ }
27456
+ this.__wbg_ptr = r0;
27457
+ RangeBarsFinalization.register(this, this.__wbg_ptr, this);
27458
+ return this;
27459
+ } finally {
27460
+ wasm.__wbindgen_add_to_stack_pointer(16);
27461
+ }
27462
+ }
27463
+ /**
27464
+ * @returns {number}
27465
+ */
27466
+ range() {
27467
+ const ret = wasm.rangebars_range(this.__wbg_ptr);
27468
+ return ret;
27469
+ }
27470
+ reset() {
27471
+ wasm.rangebars_reset(this.__wbg_ptr);
27472
+ }
27473
+ /**
27474
+ * Returns an array of `{ open, close, direction }` bars completed on this close.
27475
+ * @param {number} close
27476
+ * @returns {Array<any>}
27477
+ */
27478
+ update(close) {
27479
+ try {
27480
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
27481
+ wasm.rangebars_update(retptr, this.__wbg_ptr, close);
27482
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
27483
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
27484
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
27485
+ if (r2) {
27486
+ throw takeObject(r1);
27487
+ }
27488
+ return takeObject(r0);
27489
+ } finally {
27490
+ wasm.__wbindgen_add_to_stack_pointer(16);
27491
+ }
27492
+ }
27493
+ }
27494
+ if (Symbol.dispose) RangeBars.prototype[Symbol.dispose] = RangeBars.prototype.free;
27495
+
26818
27496
  export class RealizedSpread {
26819
27497
  __destroy_into_raw() {
26820
27498
  const ptr = this.__wbg_ptr;
@@ -28390,6 +29068,73 @@ export class RoofingFilter {
28390
29068
  }
28391
29069
  if (Symbol.dispose) RoofingFilter.prototype[Symbol.dispose] = RoofingFilter.prototype.free;
28392
29070
 
29071
+ export class RunBars {
29072
+ __destroy_into_raw() {
29073
+ const ptr = this.__wbg_ptr;
29074
+ this.__wbg_ptr = 0;
29075
+ RunBarsFinalization.unregister(this);
29076
+ return ptr;
29077
+ }
29078
+ free() {
29079
+ const ptr = this.__destroy_into_raw();
29080
+ wasm.__wbg_runbars_free(ptr, 0);
29081
+ }
29082
+ /**
29083
+ * @param {number} run_length
29084
+ */
29085
+ constructor(run_length) {
29086
+ try {
29087
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
29088
+ wasm.runbars_new(retptr, run_length);
29089
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
29090
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
29091
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
29092
+ if (r2) {
29093
+ throw takeObject(r1);
29094
+ }
29095
+ this.__wbg_ptr = r0;
29096
+ RunBarsFinalization.register(this, this.__wbg_ptr, this);
29097
+ return this;
29098
+ } finally {
29099
+ wasm.__wbindgen_add_to_stack_pointer(16);
29100
+ }
29101
+ }
29102
+ reset() {
29103
+ wasm.runbars_reset(this.__wbg_ptr);
29104
+ }
29105
+ /**
29106
+ * @returns {number}
29107
+ */
29108
+ runLength() {
29109
+ const ret = wasm.runbars_runLength(this.__wbg_ptr);
29110
+ return ret >>> 0;
29111
+ }
29112
+ /**
29113
+ * Returns an array of `{ open, high, low, close, length, direction }` bars completed on this candle.
29114
+ * @param {number} open
29115
+ * @param {number} high
29116
+ * @param {number} low
29117
+ * @param {number} close
29118
+ * @returns {Array<any>}
29119
+ */
29120
+ update(open, high, low, close) {
29121
+ try {
29122
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
29123
+ wasm.runbars_update(retptr, this.__wbg_ptr, open, high, low, close);
29124
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
29125
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
29126
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
29127
+ if (r2) {
29128
+ throw takeObject(r1);
29129
+ }
29130
+ return takeObject(r0);
29131
+ } finally {
29132
+ wasm.__wbindgen_add_to_stack_pointer(16);
29133
+ }
29134
+ }
29135
+ }
29136
+ if (Symbol.dispose) RunBars.prototype[Symbol.dispose] = RunBars.prototype.free;
29137
+
28393
29138
  export class SAMPLEENT {
28394
29139
  __destroy_into_raw() {
28395
29140
  const ptr = this.__wbg_ptr;
@@ -31169,6 +31914,82 @@ export class StepTrailingStop {
31169
31914
  }
31170
31915
  if (Symbol.dispose) StepTrailingStop.prototype[Symbol.dispose] = StepTrailingStop.prototype.free;
31171
31916
 
31917
+ export class SterlingRatio {
31918
+ __destroy_into_raw() {
31919
+ const ptr = this.__wbg_ptr;
31920
+ this.__wbg_ptr = 0;
31921
+ SterlingRatioFinalization.unregister(this);
31922
+ return ptr;
31923
+ }
31924
+ free() {
31925
+ const ptr = this.__destroy_into_raw();
31926
+ wasm.__wbg_sterlingratio_free(ptr, 0);
31927
+ }
31928
+ /**
31929
+ * @param {Float64Array} prices
31930
+ * @returns {Float64Array}
31931
+ */
31932
+ batch(prices) {
31933
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
31934
+ const len0 = WASM_VECTOR_LEN;
31935
+ const ret = wasm.sterlingratio_batch(this.__wbg_ptr, ptr0, len0);
31936
+ return takeObject(ret);
31937
+ }
31938
+ /**
31939
+ * @returns {boolean}
31940
+ */
31941
+ isReady() {
31942
+ const ret = wasm.sterlingratio_isReady(this.__wbg_ptr);
31943
+ return ret !== 0;
31944
+ }
31945
+ /**
31946
+ * @param {number} period
31947
+ */
31948
+ constructor(period) {
31949
+ try {
31950
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
31951
+ wasm.sterlingratio_new(retptr, period);
31952
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
31953
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
31954
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
31955
+ if (r2) {
31956
+ throw takeObject(r1);
31957
+ }
31958
+ this.__wbg_ptr = r0;
31959
+ SterlingRatioFinalization.register(this, this.__wbg_ptr, this);
31960
+ return this;
31961
+ } finally {
31962
+ wasm.__wbindgen_add_to_stack_pointer(16);
31963
+ }
31964
+ }
31965
+ reset() {
31966
+ wasm.sterlingratio_reset(this.__wbg_ptr);
31967
+ }
31968
+ /**
31969
+ * @param {number} value
31970
+ * @returns {number | undefined}
31971
+ */
31972
+ update(value) {
31973
+ try {
31974
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
31975
+ wasm.sterlingratio_update(retptr, this.__wbg_ptr, value);
31976
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
31977
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
31978
+ return r0 === 0 ? undefined : r2;
31979
+ } finally {
31980
+ wasm.__wbindgen_add_to_stack_pointer(16);
31981
+ }
31982
+ }
31983
+ /**
31984
+ * @returns {number}
31985
+ */
31986
+ warmupPeriod() {
31987
+ const ret = wasm.sterlingratio_warmupPeriod(this.__wbg_ptr);
31988
+ return ret >>> 0;
31989
+ }
31990
+ }
31991
+ if (Symbol.dispose) SterlingRatio.prototype[Symbol.dispose] = SterlingRatio.prototype.free;
31992
+
31172
31993
  export class StickSandwich {
31173
31994
  __destroy_into_raw() {
31174
31995
  const ptr = this.__wbg_ptr;
@@ -34373,6 +35194,82 @@ export class TTM_TREND {
34373
35194
  }
34374
35195
  if (Symbol.dispose) TTM_TREND.prototype[Symbol.dispose] = TTM_TREND.prototype.free;
34375
35196
 
35197
+ export class TailRatio {
35198
+ __destroy_into_raw() {
35199
+ const ptr = this.__wbg_ptr;
35200
+ this.__wbg_ptr = 0;
35201
+ TailRatioFinalization.unregister(this);
35202
+ return ptr;
35203
+ }
35204
+ free() {
35205
+ const ptr = this.__destroy_into_raw();
35206
+ wasm.__wbg_tailratio_free(ptr, 0);
35207
+ }
35208
+ /**
35209
+ * @param {Float64Array} prices
35210
+ * @returns {Float64Array}
35211
+ */
35212
+ batch(prices) {
35213
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
35214
+ const len0 = WASM_VECTOR_LEN;
35215
+ const ret = wasm.tailratio_batch(this.__wbg_ptr, ptr0, len0);
35216
+ return takeObject(ret);
35217
+ }
35218
+ /**
35219
+ * @returns {boolean}
35220
+ */
35221
+ isReady() {
35222
+ const ret = wasm.tailratio_isReady(this.__wbg_ptr);
35223
+ return ret !== 0;
35224
+ }
35225
+ /**
35226
+ * @param {number} period
35227
+ */
35228
+ constructor(period) {
35229
+ try {
35230
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
35231
+ wasm.tailratio_new(retptr, period);
35232
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
35233
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
35234
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
35235
+ if (r2) {
35236
+ throw takeObject(r1);
35237
+ }
35238
+ this.__wbg_ptr = r0;
35239
+ TailRatioFinalization.register(this, this.__wbg_ptr, this);
35240
+ return this;
35241
+ } finally {
35242
+ wasm.__wbindgen_add_to_stack_pointer(16);
35243
+ }
35244
+ }
35245
+ reset() {
35246
+ wasm.tailratio_reset(this.__wbg_ptr);
35247
+ }
35248
+ /**
35249
+ * @param {number} value
35250
+ * @returns {number | undefined}
35251
+ */
35252
+ update(value) {
35253
+ try {
35254
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
35255
+ wasm.tailratio_update(retptr, this.__wbg_ptr, value);
35256
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
35257
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
35258
+ return r0 === 0 ? undefined : r2;
35259
+ } finally {
35260
+ wasm.__wbindgen_add_to_stack_pointer(16);
35261
+ }
35262
+ }
35263
+ /**
35264
+ * @returns {number}
35265
+ */
35266
+ warmupPeriod() {
35267
+ const ret = wasm.tailratio_warmupPeriod(this.__wbg_ptr);
35268
+ return ret >>> 0;
35269
+ }
35270
+ }
35271
+ if (Symbol.dispose) TailRatio.prototype[Symbol.dispose] = TailRatio.prototype.free;
35272
+
34376
35273
  export class TakerBuySellRatio {
34377
35274
  __destroy_into_raw() {
34378
35275
  const ptr = this.__wbg_ptr;
@@ -34949,6 +35846,91 @@ export class ThreeLineBreak {
34949
35846
  }
34950
35847
  if (Symbol.dispose) ThreeLineBreak.prototype[Symbol.dispose] = ThreeLineBreak.prototype.free;
34951
35848
 
35849
+ export class ThreeLineBreakBars {
35850
+ __destroy_into_raw() {
35851
+ const ptr = this.__wbg_ptr;
35852
+ this.__wbg_ptr = 0;
35853
+ ThreeLineBreakBarsFinalization.unregister(this);
35854
+ return ptr;
35855
+ }
35856
+ free() {
35857
+ const ptr = this.__destroy_into_raw();
35858
+ wasm.__wbg_threelinebreakbars_free(ptr, 0);
35859
+ }
35860
+ /**
35861
+ * @param {Float64Array} close
35862
+ * @returns {Array<any>}
35863
+ */
35864
+ batch(close) {
35865
+ try {
35866
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
35867
+ const ptr0 = passArrayF64ToWasm0(close, wasm.__wbindgen_export3);
35868
+ const len0 = WASM_VECTOR_LEN;
35869
+ wasm.threelinebreakbars_batch(retptr, this.__wbg_ptr, ptr0, len0);
35870
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
35871
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
35872
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
35873
+ if (r2) {
35874
+ throw takeObject(r1);
35875
+ }
35876
+ return takeObject(r0);
35877
+ } finally {
35878
+ wasm.__wbindgen_add_to_stack_pointer(16);
35879
+ }
35880
+ }
35881
+ /**
35882
+ * @returns {number}
35883
+ */
35884
+ lines() {
35885
+ const ret = wasm.threelinebreakbars_lines(this.__wbg_ptr);
35886
+ return ret >>> 0;
35887
+ }
35888
+ /**
35889
+ * @param {number} lines
35890
+ */
35891
+ constructor(lines) {
35892
+ try {
35893
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
35894
+ wasm.threelinebreakbars_new(retptr, lines);
35895
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
35896
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
35897
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
35898
+ if (r2) {
35899
+ throw takeObject(r1);
35900
+ }
35901
+ this.__wbg_ptr = r0;
35902
+ ThreeLineBreakBarsFinalization.register(this, this.__wbg_ptr, this);
35903
+ return this;
35904
+ } finally {
35905
+ wasm.__wbindgen_add_to_stack_pointer(16);
35906
+ }
35907
+ }
35908
+ reset() {
35909
+ wasm.threelinebreakbars_reset(this.__wbg_ptr);
35910
+ }
35911
+ /**
35912
+ * Returns an array of `{ open, close, direction }` bars completed on this close.
35913
+ * @param {number} close
35914
+ * @returns {Array<any>}
35915
+ */
35916
+ update(close) {
35917
+ try {
35918
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
35919
+ wasm.threelinebreakbars_update(retptr, this.__wbg_ptr, close);
35920
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
35921
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
35922
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
35923
+ if (r2) {
35924
+ throw takeObject(r1);
35925
+ }
35926
+ return takeObject(r0);
35927
+ } finally {
35928
+ wasm.__wbindgen_add_to_stack_pointer(16);
35929
+ }
35930
+ }
35931
+ }
35932
+ if (Symbol.dispose) ThreeLineBreakBars.prototype[Symbol.dispose] = ThreeLineBreakBars.prototype.free;
35933
+
34952
35934
  export class ThreeLineStrike {
34953
35935
  __destroy_into_raw() {
34954
35936
  const ptr = this.__wbg_ptr;
@@ -35399,6 +36381,74 @@ export class Thrusting {
35399
36381
  }
35400
36382
  if (Symbol.dispose) Thrusting.prototype[Symbol.dispose] = Thrusting.prototype.free;
35401
36383
 
36384
+ export class TickBars {
36385
+ __destroy_into_raw() {
36386
+ const ptr = this.__wbg_ptr;
36387
+ this.__wbg_ptr = 0;
36388
+ TickBarsFinalization.unregister(this);
36389
+ return ptr;
36390
+ }
36391
+ free() {
36392
+ const ptr = this.__destroy_into_raw();
36393
+ wasm.__wbg_tickbars_free(ptr, 0);
36394
+ }
36395
+ /**
36396
+ * @param {number} ticks
36397
+ */
36398
+ constructor(ticks) {
36399
+ try {
36400
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
36401
+ wasm.tickbars_new(retptr, ticks);
36402
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
36403
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
36404
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
36405
+ if (r2) {
36406
+ throw takeObject(r1);
36407
+ }
36408
+ this.__wbg_ptr = r0;
36409
+ TickBarsFinalization.register(this, this.__wbg_ptr, this);
36410
+ return this;
36411
+ } finally {
36412
+ wasm.__wbindgen_add_to_stack_pointer(16);
36413
+ }
36414
+ }
36415
+ reset() {
36416
+ wasm.tickbars_reset(this.__wbg_ptr);
36417
+ }
36418
+ /**
36419
+ * @returns {number}
36420
+ */
36421
+ ticks() {
36422
+ const ret = wasm.tickbars_ticks(this.__wbg_ptr);
36423
+ return ret >>> 0;
36424
+ }
36425
+ /**
36426
+ * Returns an array of `{ open, high, low, close, volume }` bars completed on this candle.
36427
+ * @param {number} open
36428
+ * @param {number} high
36429
+ * @param {number} low
36430
+ * @param {number} close
36431
+ * @param {number} volume
36432
+ * @returns {Array<any>}
36433
+ */
36434
+ update(open, high, low, close, volume) {
36435
+ try {
36436
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
36437
+ wasm.tickbars_update(retptr, this.__wbg_ptr, open, high, low, close, volume);
36438
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
36439
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
36440
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
36441
+ if (r2) {
36442
+ throw takeObject(r1);
36443
+ }
36444
+ return takeObject(r0);
36445
+ } finally {
36446
+ wasm.__wbindgen_add_to_stack_pointer(16);
36447
+ }
36448
+ }
36449
+ }
36450
+ if (Symbol.dispose) TickBars.prototype[Symbol.dispose] = TickBars.prototype.free;
36451
+
35402
36452
  export class TickIndex {
35403
36453
  __destroy_into_raw() {
35404
36454
  const ptr = this.__wbg_ptr;
@@ -37833,6 +38883,83 @@ export class UpsideGapTwoCrows {
37833
38883
  }
37834
38884
  if (Symbol.dispose) UpsideGapTwoCrows.prototype[Symbol.dispose] = UpsideGapTwoCrows.prototype.free;
37835
38885
 
38886
+ export class UpsidePotentialRatio {
38887
+ __destroy_into_raw() {
38888
+ const ptr = this.__wbg_ptr;
38889
+ this.__wbg_ptr = 0;
38890
+ UpsidePotentialRatioFinalization.unregister(this);
38891
+ return ptr;
38892
+ }
38893
+ free() {
38894
+ const ptr = this.__destroy_into_raw();
38895
+ wasm.__wbg_upsidepotentialratio_free(ptr, 0);
38896
+ }
38897
+ /**
38898
+ * @param {Float64Array} prices
38899
+ * @returns {Float64Array}
38900
+ */
38901
+ batch(prices) {
38902
+ const ptr0 = passArrayF64ToWasm0(prices, wasm.__wbindgen_export3);
38903
+ const len0 = WASM_VECTOR_LEN;
38904
+ const ret = wasm.upsidepotentialratio_batch(this.__wbg_ptr, ptr0, len0);
38905
+ return takeObject(ret);
38906
+ }
38907
+ /**
38908
+ * @returns {boolean}
38909
+ */
38910
+ isReady() {
38911
+ const ret = wasm.upsidepotentialratio_isReady(this.__wbg_ptr);
38912
+ return ret !== 0;
38913
+ }
38914
+ /**
38915
+ * @param {number} period
38916
+ * @param {number} mar
38917
+ */
38918
+ constructor(period, mar) {
38919
+ try {
38920
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
38921
+ wasm.upsidepotentialratio_new(retptr, period, mar);
38922
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
38923
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
38924
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
38925
+ if (r2) {
38926
+ throw takeObject(r1);
38927
+ }
38928
+ this.__wbg_ptr = r0;
38929
+ UpsidePotentialRatioFinalization.register(this, this.__wbg_ptr, this);
38930
+ return this;
38931
+ } finally {
38932
+ wasm.__wbindgen_add_to_stack_pointer(16);
38933
+ }
38934
+ }
38935
+ reset() {
38936
+ wasm.upsidepotentialratio_reset(this.__wbg_ptr);
38937
+ }
38938
+ /**
38939
+ * @param {number} value
38940
+ * @returns {number | undefined}
38941
+ */
38942
+ update(value) {
38943
+ try {
38944
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
38945
+ wasm.upsidepotentialratio_update(retptr, this.__wbg_ptr, value);
38946
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
38947
+ var r2 = getDataViewMemory0().getFloat64(retptr + 8 * 1, true);
38948
+ return r0 === 0 ? undefined : r2;
38949
+ } finally {
38950
+ wasm.__wbindgen_add_to_stack_pointer(16);
38951
+ }
38952
+ }
38953
+ /**
38954
+ * @returns {number}
38955
+ */
38956
+ warmupPeriod() {
38957
+ const ret = wasm.upsidepotentialratio_warmupPeriod(this.__wbg_ptr);
38958
+ return ret >>> 0;
38959
+ }
38960
+ }
38961
+ if (Symbol.dispose) UpsidePotentialRatio.prototype[Symbol.dispose] = UpsidePotentialRatio.prototype.free;
38962
+
37836
38963
  export class VIDYA {
37837
38964
  __destroy_into_raw() {
37838
38965
  const ptr = this.__wbg_ptr;
@@ -38939,6 +40066,74 @@ export class VoltyStop {
38939
40066
  }
38940
40067
  if (Symbol.dispose) VoltyStop.prototype[Symbol.dispose] = VoltyStop.prototype.free;
38941
40068
 
40069
+ export class VolumeBars {
40070
+ __destroy_into_raw() {
40071
+ const ptr = this.__wbg_ptr;
40072
+ this.__wbg_ptr = 0;
40073
+ VolumeBarsFinalization.unregister(this);
40074
+ return ptr;
40075
+ }
40076
+ free() {
40077
+ const ptr = this.__destroy_into_raw();
40078
+ wasm.__wbg_volumebars_free(ptr, 0);
40079
+ }
40080
+ /**
40081
+ * @param {number} volume_per_bar
40082
+ */
40083
+ constructor(volume_per_bar) {
40084
+ try {
40085
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
40086
+ wasm.volumebars_new(retptr, volume_per_bar);
40087
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
40088
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
40089
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
40090
+ if (r2) {
40091
+ throw takeObject(r1);
40092
+ }
40093
+ this.__wbg_ptr = r0;
40094
+ VolumeBarsFinalization.register(this, this.__wbg_ptr, this);
40095
+ return this;
40096
+ } finally {
40097
+ wasm.__wbindgen_add_to_stack_pointer(16);
40098
+ }
40099
+ }
40100
+ reset() {
40101
+ wasm.volumebars_reset(this.__wbg_ptr);
40102
+ }
40103
+ /**
40104
+ * Returns an array of `{ open, high, low, close, volume }` bars completed on this candle.
40105
+ * @param {number} open
40106
+ * @param {number} high
40107
+ * @param {number} low
40108
+ * @param {number} close
40109
+ * @param {number} volume
40110
+ * @returns {Array<any>}
40111
+ */
40112
+ update(open, high, low, close, volume) {
40113
+ try {
40114
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
40115
+ wasm.volumebars_update(retptr, this.__wbg_ptr, open, high, low, close, volume);
40116
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
40117
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
40118
+ var r2 = getDataViewMemory0().getInt32(retptr + 4 * 2, true);
40119
+ if (r2) {
40120
+ throw takeObject(r1);
40121
+ }
40122
+ return takeObject(r0);
40123
+ } finally {
40124
+ wasm.__wbindgen_add_to_stack_pointer(16);
40125
+ }
40126
+ }
40127
+ /**
40128
+ * @returns {number}
40129
+ */
40130
+ volumePerBar() {
40131
+ const ret = wasm.volumebars_volumePerBar(this.__wbg_ptr);
40132
+ return ret;
40133
+ }
40134
+ }
40135
+ if (Symbol.dispose) VolumeBars.prototype[Symbol.dispose] = VolumeBars.prototype.free;
40136
+
38942
40137
  export class VolumeByTimeProfile {
38943
40138
  __destroy_into_raw() {
38944
40139
  const ptr = this.__wbg_ptr;
@@ -41611,6 +42806,9 @@ const BreakawayFinalization = (typeof FinalizationRegistry === 'undefined')
41611
42806
  const BullishPercentIndexFinalization = (typeof FinalizationRegistry === 'undefined')
41612
42807
  ? { register: () => {}, unregister: () => {} }
41613
42808
  : new FinalizationRegistry(ptr => wasm.__wbg_bullishpercentindex_free(ptr, 1));
42809
+ const BurkeRatioFinalization = (typeof FinalizationRegistry === 'undefined')
42810
+ ? { register: () => {}, unregister: () => {} }
42811
+ : new FinalizationRegistry(ptr => wasm.__wbg_burkeratio_free(ptr, 1));
41614
42812
  const ButterflyFinalization = (typeof FinalizationRegistry === 'undefined')
41615
42813
  ? { register: () => {}, unregister: () => {} }
41616
42814
  : new FinalizationRegistry(ptr => wasm.__wbg_butterfly_free(ptr, 1));
@@ -41674,6 +42872,9 @@ const CoefficientOfVariationFinalization = (typeof FinalizationRegistry === 'und
41674
42872
  const CointegrationFinalization = (typeof FinalizationRegistry === 'undefined')
41675
42873
  ? { register: () => {}, unregister: () => {} }
41676
42874
  : new FinalizationRegistry(ptr => wasm.__wbg_cointegration_free(ptr, 1));
42875
+ const CommonSenseRatioFinalization = (typeof FinalizationRegistry === 'undefined')
42876
+ ? { register: () => {}, unregister: () => {} }
42877
+ : new FinalizationRegistry(ptr => wasm.__wbg_commonsenseratio_free(ptr, 1));
41677
42878
  const CompositeProfileFinalization = (typeof FinalizationRegistry === 'undefined')
41678
42879
  ? { register: () => {}, unregister: () => {} }
41679
42880
  : new FinalizationRegistry(ptr => wasm.__wbg_compositeprofile_free(ptr, 1));
@@ -41752,6 +42953,9 @@ const DojiFinalization = (typeof FinalizationRegistry === 'undefined')
41752
42953
  const DojiStarFinalization = (typeof FinalizationRegistry === 'undefined')
41753
42954
  ? { register: () => {}, unregister: () => {} }
41754
42955
  : new FinalizationRegistry(ptr => wasm.__wbg_dojistar_free(ptr, 1));
42956
+ const DollarBarsFinalization = (typeof FinalizationRegistry === 'undefined')
42957
+ ? { register: () => {}, unregister: () => {} }
42958
+ : new FinalizationRegistry(ptr => wasm.__wbg_dollarbars_free(ptr, 1));
41755
42959
  const DonchianFinalization = (typeof FinalizationRegistry === 'undefined')
41756
42960
  ? { register: () => {}, unregister: () => {} }
41757
42961
  : new FinalizationRegistry(ptr => wasm.__wbg_donchian_free(ptr, 1));
@@ -41911,6 +43115,9 @@ const FundingRateZScoreFinalization = (typeof FinalizationRegistry === 'undefine
41911
43115
  const GainLossRatioFinalization = (typeof FinalizationRegistry === 'undefined')
41912
43116
  ? { register: () => {}, unregister: () => {} }
41913
43117
  : new FinalizationRegistry(ptr => wasm.__wbg_gainlossratio_free(ptr, 1));
43118
+ const GainToPainRatioFinalization = (typeof FinalizationRegistry === 'undefined')
43119
+ ? { register: () => {}, unregister: () => {} }
43120
+ : new FinalizationRegistry(ptr => wasm.__wbg_gaintopainratio_free(ptr, 1));
41914
43121
  const GapSideBySideWhiteFinalization = (typeof FinalizationRegistry === 'undefined')
41915
43122
  ? { register: () => {}, unregister: () => {} }
41916
43123
  : new FinalizationRegistry(ptr => wasm.__wbg_gapsidebysidewhite_free(ptr, 1));
@@ -42025,6 +43232,9 @@ const IchimokuFinalization = (typeof FinalizationRegistry === 'undefined')
42025
43232
  const IdenticalThreeCrowsFinalization = (typeof FinalizationRegistry === 'undefined')
42026
43233
  ? { register: () => {}, unregister: () => {} }
42027
43234
  : new FinalizationRegistry(ptr => wasm.__wbg_identicalthreecrows_free(ptr, 1));
43235
+ const ImbalanceBarsFinalization = (typeof FinalizationRegistry === 'undefined')
43236
+ ? { register: () => {}, unregister: () => {} }
43237
+ : new FinalizationRegistry(ptr => wasm.__wbg_imbalancebars_free(ptr, 1));
42028
43238
  const IMIFinalization = (typeof FinalizationRegistry === 'undefined')
42029
43239
  ? { register: () => {}, unregister: () => {} }
42030
43240
  : new FinalizationRegistry(ptr => wasm.__wbg_imi_free(ptr, 1));
@@ -42064,6 +43274,9 @@ const JMAFinalization = (typeof FinalizationRegistry === 'undefined')
42064
43274
  const JumpIndicatorFinalization = (typeof FinalizationRegistry === 'undefined')
42065
43275
  ? { register: () => {}, unregister: () => {} }
42066
43276
  : new FinalizationRegistry(ptr => wasm.__wbg_jumpindicator_free(ptr, 1));
43277
+ const KRatioFinalization = (typeof FinalizationRegistry === 'undefined')
43278
+ ? { register: () => {}, unregister: () => {} }
43279
+ : new FinalizationRegistry(ptr => wasm.__wbg_kratio_free(ptr, 1));
42067
43280
  const KagiBarsFinalization = (typeof FinalizationRegistry === 'undefined')
42068
43281
  ? { register: () => {}, unregister: () => {} }
42069
43282
  : new FinalizationRegistry(ptr => wasm.__wbg_kagibars_free(ptr, 1));
@@ -42145,6 +43358,9 @@ const LongLineFinalization = (typeof FinalizationRegistry === 'undefined')
42145
43358
  const LongShortRatioFinalization = (typeof FinalizationRegistry === 'undefined')
42146
43359
  ? { register: () => {}, unregister: () => {} }
42147
43360
  : new FinalizationRegistry(ptr => wasm.__wbg_longshortratio_free(ptr, 1));
43361
+ const M2MeasureFinalization = (typeof FinalizationRegistry === 'undefined')
43362
+ ? { register: () => {}, unregister: () => {} }
43363
+ : new FinalizationRegistry(ptr => wasm.__wbg_m2measure_free(ptr, 1));
42148
43364
  const MaEnvelopeFinalization = (typeof FinalizationRegistry === 'undefined')
42149
43365
  ? { register: () => {}, unregister: () => {} }
42150
43366
  : new FinalizationRegistry(ptr => wasm.__wbg_maenvelope_free(ptr, 1));
@@ -42166,6 +43382,9 @@ const MAMAFinalization = (typeof FinalizationRegistry === 'undefined')
42166
43382
  const MarketFacilitationIndexFinalization = (typeof FinalizationRegistry === 'undefined')
42167
43383
  ? { register: () => {}, unregister: () => {} }
42168
43384
  : new FinalizationRegistry(ptr => wasm.__wbg_marketfacilitationindex_free(ptr, 1));
43385
+ const MartinRatioFinalization = (typeof FinalizationRegistry === 'undefined')
43386
+ ? { register: () => {}, unregister: () => {} }
43387
+ : new FinalizationRegistry(ptr => wasm.__wbg_martinratio_free(ptr, 1));
42169
43388
  const MarubozuFinalization = (typeof FinalizationRegistry === 'undefined')
42170
43389
  ? { register: () => {}, unregister: () => {} }
42171
43390
  : new FinalizationRegistry(ptr => wasm.__wbg_marubozu_free(ptr, 1));
@@ -42397,6 +43616,9 @@ const QuotedSpreadFinalization = (typeof FinalizationRegistry === 'undefined')
42397
43616
  const RSquaredFinalization = (typeof FinalizationRegistry === 'undefined')
42398
43617
  ? { register: () => {}, unregister: () => {} }
42399
43618
  : new FinalizationRegistry(ptr => wasm.__wbg_rsquared_free(ptr, 1));
43619
+ const RangeBarsFinalization = (typeof FinalizationRegistry === 'undefined')
43620
+ ? { register: () => {}, unregister: () => {} }
43621
+ : new FinalizationRegistry(ptr => wasm.__wbg_rangebars_free(ptr, 1));
42400
43622
  const RealizedSpreadFinalization = (typeof FinalizationRegistry === 'undefined')
42401
43623
  ? { register: () => {}, unregister: () => {} }
42402
43624
  : new FinalizationRegistry(ptr => wasm.__wbg_realizedspread_free(ptr, 1));
@@ -42481,6 +43703,9 @@ const RSIFinalization = (typeof FinalizationRegistry === 'undefined')
42481
43703
  const RSXFinalization = (typeof FinalizationRegistry === 'undefined')
42482
43704
  ? { register: () => {}, unregister: () => {} }
42483
43705
  : new FinalizationRegistry(ptr => wasm.__wbg_rsx_free(ptr, 1));
43706
+ const RunBarsFinalization = (typeof FinalizationRegistry === 'undefined')
43707
+ ? { register: () => {}, unregister: () => {} }
43708
+ : new FinalizationRegistry(ptr => wasm.__wbg_runbars_free(ptr, 1));
42484
43709
  const RVIFinalization = (typeof FinalizationRegistry === 'undefined')
42485
43710
  ? { register: () => {}, unregister: () => {} }
42486
43711
  : new FinalizationRegistry(ptr => wasm.__wbg_rvi_free(ptr, 1));
@@ -42592,6 +43817,9 @@ const StdDevFinalization = (typeof FinalizationRegistry === 'undefined')
42592
43817
  const StepTrailingStopFinalization = (typeof FinalizationRegistry === 'undefined')
42593
43818
  ? { register: () => {}, unregister: () => {} }
42594
43819
  : new FinalizationRegistry(ptr => wasm.__wbg_steptrailingstop_free(ptr, 1));
43820
+ const SterlingRatioFinalization = (typeof FinalizationRegistry === 'undefined')
43821
+ ? { register: () => {}, unregister: () => {} }
43822
+ : new FinalizationRegistry(ptr => wasm.__wbg_sterlingratio_free(ptr, 1));
42595
43823
  const StickSandwichFinalization = (typeof FinalizationRegistry === 'undefined')
42596
43824
  ? { register: () => {}, unregister: () => {} }
42597
43825
  : new FinalizationRegistry(ptr => wasm.__wbg_sticksandwich_free(ptr, 1));
@@ -42613,6 +43841,9 @@ const SuperTrendFinalization = (typeof FinalizationRegistry === 'undefined')
42613
43841
  const T3Finalization = (typeof FinalizationRegistry === 'undefined')
42614
43842
  ? { register: () => {}, unregister: () => {} }
42615
43843
  : new FinalizationRegistry(ptr => wasm.__wbg_t3_free(ptr, 1));
43844
+ const TailRatioFinalization = (typeof FinalizationRegistry === 'undefined')
43845
+ ? { register: () => {}, unregister: () => {} }
43846
+ : new FinalizationRegistry(ptr => wasm.__wbg_tailratio_free(ptr, 1));
42616
43847
  const TakerBuySellRatioFinalization = (typeof FinalizationRegistry === 'undefined')
42617
43848
  ? { register: () => {}, unregister: () => {} }
42618
43849
  : new FinalizationRegistry(ptr => wasm.__wbg_takerbuysellratio_free(ptr, 1));
@@ -42694,6 +43925,9 @@ const ThreeInsideFinalization = (typeof FinalizationRegistry === 'undefined')
42694
43925
  const ThreeLineBreakFinalization = (typeof FinalizationRegistry === 'undefined')
42695
43926
  ? { register: () => {}, unregister: () => {} }
42696
43927
  : new FinalizationRegistry(ptr => wasm.__wbg_threelinebreak_free(ptr, 1));
43928
+ const ThreeLineBreakBarsFinalization = (typeof FinalizationRegistry === 'undefined')
43929
+ ? { register: () => {}, unregister: () => {} }
43930
+ : new FinalizationRegistry(ptr => wasm.__wbg_threelinebreakbars_free(ptr, 1));
42697
43931
  const ThreeLineStrikeFinalization = (typeof FinalizationRegistry === 'undefined')
42698
43932
  ? { register: () => {}, unregister: () => {} }
42699
43933
  : new FinalizationRegistry(ptr => wasm.__wbg_threelinestrike_free(ptr, 1));
@@ -42709,6 +43943,9 @@ const ThreeStarsInSouthFinalization = (typeof FinalizationRegistry === 'undefine
42709
43943
  const ThrustingFinalization = (typeof FinalizationRegistry === 'undefined')
42710
43944
  ? { register: () => {}, unregister: () => {} }
42711
43945
  : new FinalizationRegistry(ptr => wasm.__wbg_thrusting_free(ptr, 1));
43946
+ const TickBarsFinalization = (typeof FinalizationRegistry === 'undefined')
43947
+ ? { register: () => {}, unregister: () => {} }
43948
+ : new FinalizationRegistry(ptr => wasm.__wbg_tickbars_free(ptr, 1));
42712
43949
  const TickIndexFinalization = (typeof FinalizationRegistry === 'undefined')
42713
43950
  ? { register: () => {}, unregister: () => {} }
42714
43951
  : new FinalizationRegistry(ptr => wasm.__wbg_tickindex_free(ptr, 1));
@@ -42823,6 +44060,9 @@ const UpsideGapThreeMethodsFinalization = (typeof FinalizationRegistry === 'unde
42823
44060
  const UpsideGapTwoCrowsFinalization = (typeof FinalizationRegistry === 'undefined')
42824
44061
  ? { register: () => {}, unregister: () => {} }
42825
44062
  : new FinalizationRegistry(ptr => wasm.__wbg_upsidegaptwocrows_free(ptr, 1));
44063
+ const UpsidePotentialRatioFinalization = (typeof FinalizationRegistry === 'undefined')
44064
+ ? { register: () => {}, unregister: () => {} }
44065
+ : new FinalizationRegistry(ptr => wasm.__wbg_upsidepotentialratio_free(ptr, 1));
42826
44066
  const ValueAreaFinalization = (typeof FinalizationRegistry === 'undefined')
42827
44067
  ? { register: () => {}, unregister: () => {} }
42828
44068
  : new FinalizationRegistry(ptr => wasm.__wbg_valuearea_free(ptr, 1));
@@ -42853,6 +44093,9 @@ const VolatilityRatioFinalization = (typeof FinalizationRegistry === 'undefined'
42853
44093
  const VoltyStopFinalization = (typeof FinalizationRegistry === 'undefined')
42854
44094
  ? { register: () => {}, unregister: () => {} }
42855
44095
  : new FinalizationRegistry(ptr => wasm.__wbg_voltystop_free(ptr, 1));
44096
+ const VolumeBarsFinalization = (typeof FinalizationRegistry === 'undefined')
44097
+ ? { register: () => {}, unregister: () => {} }
44098
+ : new FinalizationRegistry(ptr => wasm.__wbg_volumebars_free(ptr, 1));
42856
44099
  const VolumeByTimeProfileFinalization = (typeof FinalizationRegistry === 'undefined')
42857
44100
  ? { register: () => {}, unregister: () => {} }
42858
44101
  : new FinalizationRegistry(ptr => wasm.__wbg_volumebytimeprofile_free(ptr, 1));