n8n-nodes-twelve-data 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/LICENSE.md +19 -0
  2. package/README.md +442 -0
  3. package/dist/credentials/TwelveDataApi.credentials.d.ts +13 -0
  4. package/dist/credentials/TwelveDataApi.credentials.js +72 -0
  5. package/dist/credentials/TwelveDataApi.credentials.js.map +1 -0
  6. package/dist/icons/github.dark.svg +3 -0
  7. package/dist/icons/github.svg +3 -0
  8. package/dist/icons/twelvedata.dark.svg +29 -0
  9. package/dist/icons/twelvedata.svg +18 -0
  10. package/dist/nodes/TwelveData/TwelveData.node.d.ts +4 -0
  11. package/dist/nodes/TwelveData/TwelveData.node.js +173 -0
  12. package/dist/nodes/TwelveData/TwelveData.node.js.map +1 -0
  13. package/dist/nodes/TwelveData/TwelveData.node.json +47 -0
  14. package/dist/nodes/TwelveData/operations/advanced.d.ts +6 -0
  15. package/dist/nodes/TwelveData/operations/advanced.js +168 -0
  16. package/dist/nodes/TwelveData/operations/advanced.js.map +1 -0
  17. package/dist/nodes/TwelveData/operations/coreData.d.ts +13 -0
  18. package/dist/nodes/TwelveData/operations/coreData.js +471 -0
  19. package/dist/nodes/TwelveData/operations/coreData.js.map +1 -0
  20. package/dist/nodes/TwelveData/operations/fundamentals.d.ts +9 -0
  21. package/dist/nodes/TwelveData/operations/fundamentals.js +440 -0
  22. package/dist/nodes/TwelveData/operations/fundamentals.js.map +1 -0
  23. package/dist/nodes/TwelveData/operations/index.d.ts +6 -0
  24. package/dist/nodes/TwelveData/operations/index.js +21 -0
  25. package/dist/nodes/TwelveData/operations/index.js.map +1 -0
  26. package/dist/nodes/TwelveData/operations/marketIntelligence.d.ts +5 -0
  27. package/dist/nodes/TwelveData/operations/marketIntelligence.js +156 -0
  28. package/dist/nodes/TwelveData/operations/marketIntelligence.js.map +1 -0
  29. package/dist/nodes/TwelveData/operations/referenceData.d.ts +9 -0
  30. package/dist/nodes/TwelveData/operations/referenceData.js +451 -0
  31. package/dist/nodes/TwelveData/operations/referenceData.js.map +1 -0
  32. package/dist/nodes/TwelveData/operations/technicalIndicators.d.ts +2 -0
  33. package/dist/nodes/TwelveData/operations/technicalIndicators.js +1110 -0
  34. package/dist/nodes/TwelveData/operations/technicalIndicators.js.map +1 -0
  35. package/dist/nodes/TwelveData/parameters/common.d.ts +11 -0
  36. package/dist/nodes/TwelveData/parameters/common.js +163 -0
  37. package/dist/nodes/TwelveData/parameters/common.js.map +1 -0
  38. package/dist/nodes/TwelveData/parameters/index.d.ts +2 -0
  39. package/dist/nodes/TwelveData/parameters/index.js +21 -0
  40. package/dist/nodes/TwelveData/parameters/index.js.map +1 -0
  41. package/dist/nodes/TwelveData/parameters/indicatorParams.d.ts +31 -0
  42. package/dist/nodes/TwelveData/parameters/indicatorParams.js +575 -0
  43. package/dist/nodes/TwelveData/parameters/indicatorParams.js.map +1 -0
  44. package/dist/nodes/TwelveData/utils/errorSanitizer.d.ts +2 -0
  45. package/dist/nodes/TwelveData/utils/errorSanitizer.js +33 -0
  46. package/dist/nodes/TwelveData/utils/errorSanitizer.js.map +1 -0
  47. package/dist/package.json +69 -0
  48. package/dist/tsconfig.tsbuildinfo +1 -0
  49. package/package.json +69 -0
@@ -0,0 +1,1110 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.technicalIndicatorsOperations = void 0;
4
+ exports.technicalIndicatorsOperations = [
5
+ {
6
+ name: 'DEMA - Double Exponential Moving Average',
7
+ value: 'dema',
8
+ action: 'Calculate DEMA indicator',
9
+ description: 'Double Exponential Moving Average - reduces lag',
10
+ routing: {
11
+ request: {
12
+ method: 'GET',
13
+ url: '/dema',
14
+ },
15
+ },
16
+ },
17
+ {
18
+ name: 'EMA - Exponential Moving Average',
19
+ value: 'ema',
20
+ action: 'Calculate EMA indicator',
21
+ description: 'Exponential Moving Average - weighted toward recent prices',
22
+ routing: {
23
+ request: {
24
+ method: 'GET',
25
+ url: '/ema',
26
+ },
27
+ },
28
+ },
29
+ {
30
+ name: 'KAMA - Kaufman Adaptive Moving Average',
31
+ value: 'kama',
32
+ action: 'Calculate KAMA indicator',
33
+ description: 'Kaufman Adaptive Moving Average - adjusts to market volatility',
34
+ routing: {
35
+ request: {
36
+ method: 'GET',
37
+ url: '/kama',
38
+ },
39
+ },
40
+ },
41
+ {
42
+ name: 'MAMA - MESA Adaptive Moving Average',
43
+ value: 'mama',
44
+ action: 'Calculate MAMA indicator',
45
+ description: 'MESA Adaptive Moving Average - adapts to price cycles',
46
+ routing: {
47
+ request: {
48
+ method: 'GET',
49
+ url: '/mama',
50
+ },
51
+ },
52
+ },
53
+ {
54
+ name: 'SMA - Simple Moving Average',
55
+ value: 'sma',
56
+ action: 'Calculate SMA indicator',
57
+ description: 'Simple Moving Average - basic price average',
58
+ routing: {
59
+ request: {
60
+ method: 'GET',
61
+ url: '/sma',
62
+ },
63
+ },
64
+ },
65
+ {
66
+ name: 'T3MA - Triple Exponential Moving Average',
67
+ value: 't3ma',
68
+ action: 'Calculate T3MA indicator',
69
+ description: 'Triple Exponential Moving Average - smoother than EMA',
70
+ routing: {
71
+ request: {
72
+ method: 'GET',
73
+ url: '/t3ma',
74
+ },
75
+ },
76
+ },
77
+ {
78
+ name: 'TEMA - Triple Exponential Moving Average',
79
+ value: 'tema',
80
+ action: 'Calculate TEMA indicator',
81
+ description: 'Triple Exponential Moving Average - reduces lag significantly',
82
+ routing: {
83
+ request: {
84
+ method: 'GET',
85
+ url: '/tema',
86
+ },
87
+ },
88
+ },
89
+ {
90
+ name: 'TRIMA - Triangular Moving Average',
91
+ value: 'trima',
92
+ action: 'Calculate TRIMA indicator',
93
+ description: 'Triangular Moving Average - double smoothed',
94
+ routing: {
95
+ request: {
96
+ method: 'GET',
97
+ url: '/trima',
98
+ },
99
+ },
100
+ },
101
+ {
102
+ name: 'WMA - Weighted Moving Average',
103
+ value: 'wma',
104
+ action: 'Calculate WMA indicator',
105
+ description: 'Weighted Moving Average - linear weighted',
106
+ routing: {
107
+ request: {
108
+ method: 'GET',
109
+ url: '/wma',
110
+ },
111
+ },
112
+ },
113
+ {
114
+ name: 'ADX - Average Directional Index',
115
+ value: 'adx',
116
+ action: 'Calculate ADX indicator',
117
+ description: 'Average Directional Index - measures trend strength',
118
+ routing: {
119
+ request: {
120
+ method: 'GET',
121
+ url: '/adx',
122
+ },
123
+ },
124
+ },
125
+ {
126
+ name: 'ADXR - Average Directional Movement Index Rating',
127
+ value: 'adxr',
128
+ action: 'Calculate ADXR indicator',
129
+ description: 'Average Directional Movement Index Rating',
130
+ routing: {
131
+ request: {
132
+ method: 'GET',
133
+ url: '/adxr',
134
+ },
135
+ },
136
+ },
137
+ {
138
+ name: 'APO - Absolute Price Oscillator',
139
+ value: 'apo',
140
+ action: 'Calculate APO indicator',
141
+ description: 'Absolute Price Oscillator - difference between two EMAs',
142
+ routing: {
143
+ request: {
144
+ method: 'GET',
145
+ url: '/apo',
146
+ },
147
+ },
148
+ },
149
+ {
150
+ name: 'CCI - Commodity Channel Index',
151
+ value: 'cci',
152
+ action: 'Calculate CCI indicator',
153
+ description: 'Commodity Channel Index - identifies overbought/oversold',
154
+ routing: {
155
+ request: {
156
+ method: 'GET',
157
+ url: '/cci',
158
+ },
159
+ },
160
+ },
161
+ {
162
+ name: 'CMO - Chande Momentum Oscillator',
163
+ value: 'cmo',
164
+ action: 'Calculate CMO indicator',
165
+ description: 'Chande Momentum Oscillator - momentum indicator',
166
+ routing: {
167
+ request: {
168
+ method: 'GET',
169
+ url: '/cmo',
170
+ },
171
+ },
172
+ },
173
+ {
174
+ name: 'DX - Directional Movement Index',
175
+ value: 'dx',
176
+ action: 'Calculate DX indicator',
177
+ description: 'Directional Movement Index',
178
+ routing: {
179
+ request: {
180
+ method: 'GET',
181
+ url: '/dx',
182
+ },
183
+ },
184
+ },
185
+ {
186
+ name: 'MACD - Moving Average Convergence Divergence',
187
+ value: 'macd',
188
+ action: 'Calculate MACD indicator',
189
+ description: 'Moving Average Convergence Divergence - trend following',
190
+ routing: {
191
+ request: {
192
+ method: 'GET',
193
+ url: '/macd',
194
+ },
195
+ },
196
+ },
197
+ {
198
+ name: 'MFI - Money Flow Index',
199
+ value: 'mfi',
200
+ action: 'Calculate MFI indicator',
201
+ description: 'Money Flow Index - volume-weighted RSI',
202
+ routing: {
203
+ request: {
204
+ method: 'GET',
205
+ url: '/mfi',
206
+ },
207
+ },
208
+ },
209
+ {
210
+ name: 'MOM - Momentum',
211
+ value: 'mom',
212
+ action: 'Calculate Momentum indicator',
213
+ description: 'Momentum - rate of price change',
214
+ routing: {
215
+ request: {
216
+ method: 'GET',
217
+ url: '/mom',
218
+ },
219
+ },
220
+ },
221
+ {
222
+ name: 'PPO - Percentage Price Oscillator',
223
+ value: 'ppo',
224
+ action: 'Calculate PPO indicator',
225
+ description: 'Percentage Price Oscillator - percentage MACD',
226
+ routing: {
227
+ request: {
228
+ method: 'GET',
229
+ url: '/ppo',
230
+ },
231
+ },
232
+ },
233
+ {
234
+ name: 'ROC - Rate of Change',
235
+ value: 'roc',
236
+ action: 'Calculate ROC indicator',
237
+ description: 'Rate of Change - percentage price change',
238
+ routing: {
239
+ request: {
240
+ method: 'GET',
241
+ url: '/roc',
242
+ },
243
+ },
244
+ },
245
+ {
246
+ name: 'RSI - Relative Strength Index',
247
+ value: 'rsi',
248
+ action: 'Calculate RSI indicator',
249
+ description: 'Relative Strength Index - momentum oscillator',
250
+ routing: {
251
+ request: {
252
+ method: 'GET',
253
+ url: '/rsi',
254
+ },
255
+ },
256
+ },
257
+ {
258
+ name: 'STOCH - Stochastic Oscillator',
259
+ value: 'stoch',
260
+ action: 'Calculate Stochastic indicator',
261
+ description: 'Stochastic Oscillator - compares closing price to range',
262
+ routing: {
263
+ request: {
264
+ method: 'GET',
265
+ url: '/stoch',
266
+ },
267
+ },
268
+ },
269
+ {
270
+ name: 'STOCHRSI - Stochastic RSI',
271
+ value: 'stochrsi',
272
+ action: 'Calculate Stochastic RSI indicator',
273
+ description: 'Stochastic RSI - stochastic of RSI',
274
+ routing: {
275
+ request: {
276
+ method: 'GET',
277
+ url: '/stochrsi',
278
+ },
279
+ },
280
+ },
281
+ {
282
+ name: 'TRIX - Triple Exponential Average',
283
+ value: 'trix',
284
+ action: 'Calculate TRIX indicator',
285
+ description: 'Triple Exponential Average - momentum oscillator',
286
+ routing: {
287
+ request: {
288
+ method: 'GET',
289
+ url: '/trix',
290
+ },
291
+ },
292
+ },
293
+ {
294
+ name: 'ULTOSC - Ultimate Oscillator',
295
+ value: 'ultosc',
296
+ action: 'Calculate Ultimate Oscillator',
297
+ description: 'Ultimate Oscillator - multi-timeframe momentum',
298
+ routing: {
299
+ request: {
300
+ method: 'GET',
301
+ url: '/ultosc',
302
+ },
303
+ },
304
+ },
305
+ {
306
+ name: 'WILLR - Williams %R',
307
+ value: 'willr',
308
+ action: 'Calculate Williams %R indicator',
309
+ description: 'Williams %R - overbought/oversold indicator',
310
+ routing: {
311
+ request: {
312
+ method: 'GET',
313
+ url: '/willr',
314
+ },
315
+ },
316
+ },
317
+ {
318
+ name: 'ATR - Average True Range',
319
+ value: 'atr',
320
+ action: 'Calculate ATR indicator',
321
+ description: 'Average True Range - measures volatility',
322
+ routing: {
323
+ request: {
324
+ method: 'GET',
325
+ url: '/atr',
326
+ },
327
+ },
328
+ },
329
+ {
330
+ name: 'BBANDS - Bollinger Bands',
331
+ value: 'bbands',
332
+ action: 'Calculate Bollinger Bands',
333
+ description: 'Bollinger Bands - volatility bands around SMA',
334
+ routing: {
335
+ request: {
336
+ method: 'GET',
337
+ url: '/bbands',
338
+ },
339
+ },
340
+ },
341
+ {
342
+ name: 'NATR - Normalized Average True Range',
343
+ value: 'natr',
344
+ action: 'Calculate NATR indicator',
345
+ description: 'Normalized Average True Range - percentage ATR',
346
+ routing: {
347
+ request: {
348
+ method: 'GET',
349
+ url: '/natr',
350
+ },
351
+ },
352
+ },
353
+ {
354
+ name: 'SUPERTREND - SuperTrend',
355
+ value: 'supertrend',
356
+ action: 'Calculate SuperTrend indicator',
357
+ description: 'SuperTrend - trend following indicator',
358
+ routing: {
359
+ request: {
360
+ method: 'GET',
361
+ url: '/supertrend',
362
+ },
363
+ },
364
+ },
365
+ {
366
+ name: 'TRANGE - True Range',
367
+ value: 'trange',
368
+ action: 'Calculate True Range',
369
+ description: 'True Range - single period volatility',
370
+ routing: {
371
+ request: {
372
+ method: 'GET',
373
+ url: '/trange',
374
+ },
375
+ },
376
+ },
377
+ {
378
+ name: 'AD - Accumulation/Distribution',
379
+ value: 'ad',
380
+ action: 'Calculate A/D indicator',
381
+ description: 'Accumulation/Distribution - volume-based indicator',
382
+ routing: {
383
+ request: {
384
+ method: 'GET',
385
+ url: '/ad',
386
+ },
387
+ },
388
+ },
389
+ {
390
+ name: 'ADOSC - Chaikin A/D Oscillator',
391
+ value: 'adosc',
392
+ action: 'Calculate Chaikin A/D Oscillator',
393
+ description: 'Chaikin A/D Oscillator - momentum of A/D line',
394
+ routing: {
395
+ request: {
396
+ method: 'GET',
397
+ url: '/adosc',
398
+ },
399
+ },
400
+ },
401
+ {
402
+ name: 'OBV - On Balance Volume',
403
+ value: 'obv',
404
+ action: 'Calculate OBV indicator',
405
+ description: 'On Balance Volume - cumulative volume indicator',
406
+ routing: {
407
+ request: {
408
+ method: 'GET',
409
+ url: '/obv',
410
+ },
411
+ },
412
+ },
413
+ {
414
+ name: 'VWAP - Volume Weighted Average Price',
415
+ value: 'vwap',
416
+ action: 'Calculate VWAP',
417
+ description: 'Volume Weighted Average Price',
418
+ routing: {
419
+ request: {
420
+ method: 'GET',
421
+ url: '/vwap',
422
+ },
423
+ },
424
+ },
425
+ {
426
+ name: 'AROON - Aroon Indicator',
427
+ value: 'aroon',
428
+ action: 'Calculate Aroon indicator',
429
+ description: 'Aroon Indicator - identifies trend changes',
430
+ routing: {
431
+ request: {
432
+ method: 'GET',
433
+ url: '/aroon',
434
+ },
435
+ },
436
+ },
437
+ {
438
+ name: 'AROONOSC - Aroon Oscillator',
439
+ value: 'aroonosc',
440
+ action: 'Calculate Aroon Oscillator',
441
+ description: 'Aroon Oscillator - difference between Aroon Up and Down',
442
+ routing: {
443
+ request: {
444
+ method: 'GET',
445
+ url: '/aroonosc',
446
+ },
447
+ },
448
+ },
449
+ {
450
+ name: 'BOP - Balance of Power',
451
+ value: 'bop',
452
+ action: 'Calculate Balance of Power',
453
+ description: 'Balance of Power - measures buying/selling pressure',
454
+ routing: {
455
+ request: {
456
+ method: 'GET',
457
+ url: '/bop',
458
+ },
459
+ },
460
+ },
461
+ {
462
+ name: 'HT_TRENDMODE - Hilbert Transform Trend Mode',
463
+ value: 'ht_trendmode',
464
+ action: 'Calculate HT Trend Mode',
465
+ description: 'Hilbert Transform - Trend vs Cycle Mode ✨ BETA',
466
+ routing: {
467
+ request: {
468
+ method: 'GET',
469
+ url: '/ht_trendmode',
470
+ },
471
+ },
472
+ },
473
+ {
474
+ name: 'MINUS_DI - Minus Directional Indicator',
475
+ value: 'minus_di',
476
+ action: 'Calculate Minus DI',
477
+ description: 'Minus Directional Indicator - downward trend strength',
478
+ routing: {
479
+ request: {
480
+ method: 'GET',
481
+ url: '/minus_di',
482
+ },
483
+ },
484
+ },
485
+ {
486
+ name: 'MINUS_DM - Minus Directional Movement',
487
+ value: 'minus_dm',
488
+ action: 'Calculate Minus DM',
489
+ description: 'Minus Directional Movement',
490
+ routing: {
491
+ request: {
492
+ method: 'GET',
493
+ url: '/minus_dm',
494
+ },
495
+ },
496
+ },
497
+ {
498
+ name: 'PLUS_DI - Plus Directional Indicator',
499
+ value: 'plus_di',
500
+ action: 'Calculate Plus DI',
501
+ description: 'Plus Directional Indicator - upward trend strength',
502
+ routing: {
503
+ request: {
504
+ method: 'GET',
505
+ url: '/plus_di',
506
+ },
507
+ },
508
+ },
509
+ {
510
+ name: 'PLUS_DM - Plus Directional Movement',
511
+ value: 'plus_dm',
512
+ action: 'Calculate Plus DM',
513
+ description: 'Plus Directional Movement',
514
+ routing: {
515
+ request: {
516
+ method: 'GET',
517
+ url: '/plus_dm',
518
+ },
519
+ },
520
+ },
521
+ {
522
+ name: 'SAR - Parabolic SAR',
523
+ value: 'sar',
524
+ action: 'Calculate Parabolic SAR',
525
+ description: 'Parabolic Stop and Reverse - trend following',
526
+ routing: {
527
+ request: {
528
+ method: 'GET',
529
+ url: '/sar',
530
+ },
531
+ },
532
+ },
533
+ {
534
+ name: 'ICHIMOKU - Ichimoku Cloud',
535
+ value: 'ichimoku',
536
+ action: 'Calculate Ichimoku Cloud',
537
+ description: 'Ichimoku Kinko Hyo - comprehensive trend indicator',
538
+ routing: {
539
+ request: {
540
+ method: 'GET',
541
+ url: '/ichimoku',
542
+ },
543
+ },
544
+ },
545
+ {
546
+ name: 'BETA - Beta Coefficient',
547
+ value: 'beta',
548
+ action: 'Calculate Beta',
549
+ description: 'Beta - measures volatility relative to market',
550
+ routing: {
551
+ request: {
552
+ method: 'GET',
553
+ url: '/beta',
554
+ },
555
+ },
556
+ },
557
+ {
558
+ name: 'CORREL - Pearson Correlation Coefficient',
559
+ value: 'correl',
560
+ action: 'Calculate Correlation',
561
+ description: 'Pearson Correlation Coefficient',
562
+ routing: {
563
+ request: {
564
+ method: 'GET',
565
+ url: '/correl',
566
+ },
567
+ },
568
+ },
569
+ {
570
+ name: 'LINEARREG - Linear Regression',
571
+ value: 'linearreg',
572
+ action: 'Calculate Linear Regression',
573
+ description: 'Linear Regression - trend line value',
574
+ routing: {
575
+ request: {
576
+ method: 'GET',
577
+ url: '/linearreg',
578
+ },
579
+ },
580
+ },
581
+ {
582
+ name: 'LINEARREG_ANGLE - Linear Regression Angle',
583
+ value: 'linearreg_angle',
584
+ action: 'Calculate Linear Regression Angle',
585
+ description: 'Linear Regression Angle in degrees',
586
+ routing: {
587
+ request: {
588
+ method: 'GET',
589
+ url: '/linearreg_angle',
590
+ },
591
+ },
592
+ },
593
+ {
594
+ name: 'LINEARREG_INTERCEPT - Linear Regression Intercept',
595
+ value: 'linearreg_intercept',
596
+ action: 'Calculate Linear Regression Intercept',
597
+ description: 'Linear Regression Intercept ✨ BETA',
598
+ routing: {
599
+ request: {
600
+ method: 'GET',
601
+ url: '/linearreg_intercept',
602
+ },
603
+ },
604
+ },
605
+ {
606
+ name: 'LINEARREG_SLOPE - Linear Regression Slope',
607
+ value: 'linearreg_slope',
608
+ action: 'Calculate Linear Regression Slope',
609
+ description: 'Linear Regression Slope',
610
+ routing: {
611
+ request: {
612
+ method: 'GET',
613
+ url: '/linearreg_slope',
614
+ },
615
+ },
616
+ },
617
+ {
618
+ name: 'STDDEV - Standard Deviation',
619
+ value: 'stddev',
620
+ action: 'Calculate Standard Deviation',
621
+ description: 'Standard Deviation - measures dispersion',
622
+ routing: {
623
+ request: {
624
+ method: 'GET',
625
+ url: '/stddev',
626
+ },
627
+ },
628
+ },
629
+ {
630
+ name: 'TSF - Time Series Forecast',
631
+ value: 'tsf',
632
+ action: 'Calculate Time Series Forecast',
633
+ description: 'Time Series Forecast - linear regression projection',
634
+ routing: {
635
+ request: {
636
+ method: 'GET',
637
+ url: '/tsf',
638
+ },
639
+ },
640
+ },
641
+ {
642
+ name: 'VAR - Variance',
643
+ value: 'var',
644
+ action: 'Calculate Variance',
645
+ description: 'Variance - measures spread',
646
+ routing: {
647
+ request: {
648
+ method: 'GET',
649
+ url: '/var',
650
+ },
651
+ },
652
+ },
653
+ {
654
+ name: 'AVGPRICE - Average Price',
655
+ value: 'avgprice',
656
+ action: 'Calculate Average Price',
657
+ description: 'Average of OHLC prices',
658
+ routing: {
659
+ request: {
660
+ method: 'GET',
661
+ url: '/avgprice',
662
+ },
663
+ },
664
+ },
665
+ {
666
+ name: 'HT_DCPERIOD - Hilbert Transform Dominant Cycle Period',
667
+ value: 'ht_dcperiod',
668
+ action: 'Calculate HT Dominant Cycle Period',
669
+ description: 'Hilbert Transform - Dominant Cycle Period ✨ BETA',
670
+ routing: {
671
+ request: {
672
+ method: 'GET',
673
+ url: '/ht_dcperiod',
674
+ },
675
+ },
676
+ },
677
+ {
678
+ name: 'HT_DCPHASE - Hilbert Transform Dominant Cycle Phase',
679
+ value: 'ht_dcphase',
680
+ action: 'Calculate HT Dominant Cycle Phase',
681
+ description: 'Hilbert Transform - Dominant Cycle Phase',
682
+ routing: {
683
+ request: {
684
+ method: 'GET',
685
+ url: '/ht_dcphase',
686
+ },
687
+ },
688
+ },
689
+ {
690
+ name: 'HT_PHASOR - Hilbert Transform Phasor Components',
691
+ value: 'ht_phasor',
692
+ action: 'Calculate HT Phasor',
693
+ description: 'Hilbert Transform - Phasor Components ✨ BETA',
694
+ routing: {
695
+ request: {
696
+ method: 'GET',
697
+ url: '/ht_phasor',
698
+ },
699
+ },
700
+ },
701
+ {
702
+ name: 'HT_SINE - Hilbert Transform SineWave',
703
+ value: 'ht_sine',
704
+ action: 'Calculate HT SineWave',
705
+ description: 'Hilbert Transform - SineWave',
706
+ routing: {
707
+ request: {
708
+ method: 'GET',
709
+ url: '/ht_sine',
710
+ },
711
+ },
712
+ },
713
+ {
714
+ name: 'HT_TRENDLINE - Hilbert Transform Instantaneous Trendline',
715
+ value: 'ht_trendline',
716
+ action: 'Calculate HT Trendline',
717
+ description: 'Hilbert Transform - Instantaneous Trendline',
718
+ routing: {
719
+ request: {
720
+ method: 'GET',
721
+ url: '/ht_trendline',
722
+ },
723
+ },
724
+ },
725
+ {
726
+ name: 'MEDPRICE - Median Price',
727
+ value: 'medprice',
728
+ action: 'Calculate Median Price',
729
+ description: 'Median Price - (High + Low) / 2',
730
+ routing: {
731
+ request: {
732
+ method: 'GET',
733
+ url: '/medprice',
734
+ },
735
+ },
736
+ },
737
+ {
738
+ name: 'MIDPOINT - Midpoint',
739
+ value: 'midpoint',
740
+ action: 'Calculate Midpoint',
741
+ description: 'Midpoint over period',
742
+ routing: {
743
+ request: {
744
+ method: 'GET',
745
+ url: '/midpoint',
746
+ },
747
+ },
748
+ },
749
+ {
750
+ name: 'MIDPRICE - Midpoint Price',
751
+ value: 'midprice',
752
+ action: 'Calculate Midpoint Price',
753
+ description: 'Midpoint Price over period',
754
+ routing: {
755
+ request: {
756
+ method: 'GET',
757
+ url: '/midprice',
758
+ },
759
+ },
760
+ },
761
+ {
762
+ name: 'PERCENT_B - Bollinger Bands %B',
763
+ value: 'percent_b',
764
+ action: 'Calculate Percent B',
765
+ description: 'Bollinger Bands %B - position within bands',
766
+ routing: {
767
+ request: {
768
+ method: 'GET',
769
+ url: '/percent_b',
770
+ },
771
+ },
772
+ },
773
+ {
774
+ name: 'PIVOT_POINTS_HL - Pivot Points High/Low',
775
+ value: 'pivot_points_hl',
776
+ action: 'Calculate Pivot Points',
777
+ description: 'Pivot Points High/Low',
778
+ routing: {
779
+ request: {
780
+ method: 'GET',
781
+ url: '/pivot_points_hl',
782
+ },
783
+ },
784
+ },
785
+ {
786
+ name: 'TYPPRICE - Typical Price',
787
+ value: 'typprice',
788
+ action: 'Calculate Typical Price',
789
+ description: 'Typical Price - (High + Low + Close) / 3',
790
+ routing: {
791
+ request: {
792
+ method: 'GET',
793
+ url: '/typprice',
794
+ },
795
+ },
796
+ },
797
+ {
798
+ name: 'WCLPRICE - Weighted Close Price',
799
+ value: 'wclprice',
800
+ action: 'Calculate Weighted Close Price',
801
+ description: 'Weighted Close Price - (High + Low + 2*Close) / 4',
802
+ routing: {
803
+ request: {
804
+ method: 'GET',
805
+ url: '/wclprice',
806
+ },
807
+ },
808
+ },
809
+ {
810
+ name: 'ACOS - Arc Cosine',
811
+ value: 'acos',
812
+ action: 'Calculate Arc Cosine',
813
+ description: 'Vector Trigonometric ACos',
814
+ routing: {
815
+ request: {
816
+ method: 'GET',
817
+ url: '/acos',
818
+ },
819
+ },
820
+ },
821
+ {
822
+ name: 'ADD - Arithmetic Add',
823
+ value: 'add',
824
+ action: 'Calculate Addition',
825
+ description: 'Vector Arithmetic Add',
826
+ routing: {
827
+ request: {
828
+ method: 'GET',
829
+ url: '/add',
830
+ },
831
+ },
832
+ },
833
+ {
834
+ name: 'ASIN - Arc Sine',
835
+ value: 'asin',
836
+ action: 'Calculate Arc Sine',
837
+ description: 'Vector Trigonometric ASin ✨ BETA',
838
+ routing: {
839
+ request: {
840
+ method: 'GET',
841
+ url: '/asin',
842
+ },
843
+ },
844
+ },
845
+ {
846
+ name: 'ATAN - Arc Tangent',
847
+ value: 'atan',
848
+ action: 'Calculate Arc Tangent',
849
+ description: 'Vector Trigonometric ATan',
850
+ routing: {
851
+ request: {
852
+ method: 'GET',
853
+ url: '/atan',
854
+ },
855
+ },
856
+ },
857
+ {
858
+ name: 'CEIL - Ceiling',
859
+ value: 'ceil',
860
+ action: 'Calculate Ceiling',
861
+ description: 'Vector Ceiling',
862
+ routing: {
863
+ request: {
864
+ method: 'GET',
865
+ url: '/ceil',
866
+ },
867
+ },
868
+ },
869
+ {
870
+ name: 'COS - Cosine',
871
+ value: 'cos',
872
+ action: 'Calculate Cosine',
873
+ description: 'Vector Trigonometric Cos ✨ BETA',
874
+ routing: {
875
+ request: {
876
+ method: 'GET',
877
+ url: '/cos',
878
+ },
879
+ },
880
+ },
881
+ {
882
+ name: 'COSH - Hyperbolic Cosine',
883
+ value: 'cosh',
884
+ action: 'Calculate Hyperbolic Cosine',
885
+ description: 'Vector Trigonometric Cosh',
886
+ routing: {
887
+ request: {
888
+ method: 'GET',
889
+ url: '/cosh',
890
+ },
891
+ },
892
+ },
893
+ {
894
+ name: 'DIV - Arithmetic Division',
895
+ value: 'div',
896
+ action: 'Calculate Division',
897
+ description: 'Vector Arithmetic Division ✨ BETA',
898
+ routing: {
899
+ request: {
900
+ method: 'GET',
901
+ url: '/div',
902
+ },
903
+ },
904
+ },
905
+ {
906
+ name: 'EXP - Exponential',
907
+ value: 'exp',
908
+ action: 'Calculate Exponential',
909
+ description: 'Vector Arithmetic Exp',
910
+ routing: {
911
+ request: {
912
+ method: 'GET',
913
+ url: '/exp',
914
+ },
915
+ },
916
+ },
917
+ {
918
+ name: 'FLOOR - Floor',
919
+ value: 'floor',
920
+ action: 'Calculate Floor',
921
+ description: 'Vector Floor',
922
+ routing: {
923
+ request: {
924
+ method: 'GET',
925
+ url: '/floor',
926
+ },
927
+ },
928
+ },
929
+ {
930
+ name: 'LN - Natural Logarithm',
931
+ value: 'ln',
932
+ action: 'Calculate Natural Log',
933
+ description: 'Vector Log Natural',
934
+ routing: {
935
+ request: {
936
+ method: 'GET',
937
+ url: '/ln',
938
+ },
939
+ },
940
+ },
941
+ {
942
+ name: 'LOG10 - Logarithm Base 10',
943
+ value: 'log10',
944
+ action: 'Calculate Log Base 10',
945
+ description: 'Vector Log10',
946
+ routing: {
947
+ request: {
948
+ method: 'GET',
949
+ url: '/log10',
950
+ },
951
+ },
952
+ },
953
+ {
954
+ name: 'MAX - Maximum Value',
955
+ value: 'max',
956
+ action: 'Calculate Maximum',
957
+ description: 'Highest value over period',
958
+ routing: {
959
+ request: {
960
+ method: 'GET',
961
+ url: '/max',
962
+ },
963
+ },
964
+ },
965
+ {
966
+ name: 'MIN - Minimum Value',
967
+ value: 'min',
968
+ action: 'Calculate Minimum',
969
+ description: 'Lowest value over period',
970
+ routing: {
971
+ request: {
972
+ method: 'GET',
973
+ url: '/min',
974
+ },
975
+ },
976
+ },
977
+ {
978
+ name: 'MINMAX - Min/Max Values',
979
+ value: 'minmax',
980
+ action: 'Calculate Min/Max',
981
+ description: 'Lowest and highest values over period',
982
+ routing: {
983
+ request: {
984
+ method: 'GET',
985
+ url: '/minmax',
986
+ },
987
+ },
988
+ },
989
+ {
990
+ name: 'MINMAXINDEX - Min/Max Index',
991
+ value: 'minmaxindex',
992
+ action: 'Calculate Min/Max Index',
993
+ description: 'Index of lowest and highest values',
994
+ routing: {
995
+ request: {
996
+ method: 'GET',
997
+ url: '/minmaxindex',
998
+ },
999
+ },
1000
+ },
1001
+ {
1002
+ name: 'MULT - Arithmetic Multiplication',
1003
+ value: 'mult',
1004
+ action: 'Calculate Multiplication',
1005
+ description: 'Vector Arithmetic Mult',
1006
+ routing: {
1007
+ request: {
1008
+ method: 'GET',
1009
+ url: '/mult',
1010
+ },
1011
+ },
1012
+ },
1013
+ {
1014
+ name: 'ROUND - Round',
1015
+ value: 'round',
1016
+ action: 'Calculate Round',
1017
+ description: 'Vector Round',
1018
+ routing: {
1019
+ request: {
1020
+ method: 'GET',
1021
+ url: '/round',
1022
+ },
1023
+ },
1024
+ },
1025
+ {
1026
+ name: 'SIN - Sine',
1027
+ value: 'sin',
1028
+ action: 'Calculate Sine',
1029
+ description: 'Vector Trigonometric Sin ✨ BETA',
1030
+ routing: {
1031
+ request: {
1032
+ method: 'GET',
1033
+ url: '/sin',
1034
+ },
1035
+ },
1036
+ },
1037
+ {
1038
+ name: 'SINH - Hyperbolic Sine',
1039
+ value: 'sinh',
1040
+ action: 'Calculate Hyperbolic Sine',
1041
+ description: 'Vector Trigonometric Sinh',
1042
+ routing: {
1043
+ request: {
1044
+ method: 'GET',
1045
+ url: '/sinh',
1046
+ },
1047
+ },
1048
+ },
1049
+ {
1050
+ name: 'SQRT - Square Root',
1051
+ value: 'sqrt',
1052
+ action: 'Calculate Square Root',
1053
+ description: 'Vector Square Root',
1054
+ routing: {
1055
+ request: {
1056
+ method: 'GET',
1057
+ url: '/sqrt',
1058
+ },
1059
+ },
1060
+ },
1061
+ {
1062
+ name: 'SUB - Arithmetic Subtraction',
1063
+ value: 'sub',
1064
+ action: 'Calculate Subtraction',
1065
+ description: 'Vector Arithmetic Sub',
1066
+ routing: {
1067
+ request: {
1068
+ method: 'GET',
1069
+ url: '/sub',
1070
+ },
1071
+ },
1072
+ },
1073
+ {
1074
+ name: 'SUM - Summation',
1075
+ value: 'sum',
1076
+ action: 'Calculate Sum',
1077
+ description: 'Summation over period',
1078
+ routing: {
1079
+ request: {
1080
+ method: 'GET',
1081
+ url: '/sum',
1082
+ },
1083
+ },
1084
+ },
1085
+ {
1086
+ name: 'TAN - Tangent',
1087
+ value: 'tan',
1088
+ action: 'Calculate Tangent',
1089
+ description: 'Vector Trigonometric Tan',
1090
+ routing: {
1091
+ request: {
1092
+ method: 'GET',
1093
+ url: '/tan',
1094
+ },
1095
+ },
1096
+ },
1097
+ {
1098
+ name: 'TANH - Hyperbolic Tangent',
1099
+ value: 'tanh',
1100
+ action: 'Calculate Hyperbolic Tangent',
1101
+ description: 'Vector Trigonometric Tanh',
1102
+ routing: {
1103
+ request: {
1104
+ method: 'GET',
1105
+ url: '/tanh',
1106
+ },
1107
+ },
1108
+ },
1109
+ ];
1110
+ //# sourceMappingURL=technicalIndicators.js.map