fixparser-plugin-mcp 9.1.7-0eabb847 → 9.1.7-127e3125

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.
@@ -1,51 +1,9 @@
1
1
  // src/MCPLocal.ts
2
2
  import { Server } from "@modelcontextprotocol/sdk/server/index.js";
3
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4
+ import { Fields as Fields3, MDEntryType as MDEntryType2, Messages as Messages3 } from "fixparser";
4
5
  import { z } from "zod";
5
6
 
6
- // src/MCPBase.ts
7
- var MCPBase = class {
8
- /**
9
- * Optional logger instance for diagnostics and output.
10
- * @protected
11
- */
12
- logger;
13
- /**
14
- * FIXParser instance, set during plugin register().
15
- * @protected
16
- */
17
- parser;
18
- /**
19
- * Called when server is setup and listening.
20
- * @protected
21
- */
22
- onReady = void 0;
23
- /**
24
- * Map to store verified orders before execution
25
- * @protected
26
- */
27
- verifiedOrders = /* @__PURE__ */ new Map();
28
- /**
29
- * Map to store pending market data requests
30
- * @protected
31
- */
32
- pendingRequests = /* @__PURE__ */ new Map();
33
- /**
34
- * Map to store market data prices
35
- * @protected
36
- */
37
- marketDataPrices = /* @__PURE__ */ new Map();
38
- /**
39
- * Maximum number of price history entries to keep per symbol
40
- * @protected
41
- */
42
- MAX_PRICE_HISTORY = 1e5;
43
- constructor({ logger, onReady }) {
44
- this.logger = logger;
45
- this.onReady = onReady;
46
- }
47
- };
48
-
49
7
  // src/schemas/schemas.ts
50
8
  var toolSchemas = {
51
9
  parse: {
@@ -129,7 +87,7 @@ var toolSchemas = {
129
87
  }
130
88
  },
131
89
  executeOrder: {
132
- description: "Executes a verified order. verifyOrder must be called before executeOrder.",
90
+ description: "Executes a verified order. verifyOrder must be called before executeOrder. user has to explicitly allow executeOrder.",
133
91
  schema: {
134
92
  type: "object",
135
93
  properties: {
@@ -273,1071 +231,19 @@ var toolSchemas = {
273
231
  },
274
232
  required: ["symbol"]
275
233
  }
276
- },
277
- technicalAnalysis: {
278
- description: "Performs comprehensive technical analysis on market data for a given symbol, including indicators like SMA, EMA, RSI, Bollinger Bands, and trading signals",
279
- schema: {
280
- type: "object",
281
- properties: {
282
- symbol: {
283
- type: "string",
284
- description: "The trading symbol to analyze (e.g., AAPL, MSFT, EURUSD)"
285
- }
286
- },
287
- required: ["symbol"]
288
- }
289
234
  }
290
235
  };
291
236
 
292
- // src/tools/analytics.ts
293
- function sum(numbers) {
294
- return numbers.reduce((acc, val) => acc + val, 0);
295
- }
296
- var TechnicalAnalyzer = class {
297
- prices;
298
- volumes;
299
- highs;
300
- lows;
301
- constructor(data) {
302
- this.prices = data.map((d) => d.trade > 0 ? d.trade : d.midPrice);
303
- this.volumes = data.map((d) => d.volume);
304
- this.highs = data.map((d) => d.tradingSessionHighPrice > 0 ? d.tradingSessionHighPrice : d.trade);
305
- this.lows = data.map((d) => d.tradingSessionLowPrice > 0 ? d.tradingSessionLowPrice : d.trade);
306
- }
307
- // Calculate Simple Moving Average
308
- calculateSMA(data, period) {
309
- const sma = [];
310
- for (let i = period - 1; i < data.length; i++) {
311
- const sum2 = data.slice(i - period + 1, i + 1).reduce((a, b) => a + b, 0);
312
- sma.push(sum2 / period);
313
- }
314
- return sma;
315
- }
316
- // Calculate Exponential Moving Average
317
- calculateEMA(data, period) {
318
- const multiplier = 2 / (period + 1);
319
- const ema = [data[0]];
320
- for (let i = 1; i < data.length; i++) {
321
- ema.push(data[i] * multiplier + ema[i - 1] * (1 - multiplier));
322
- }
323
- return ema;
324
- }
325
- // Calculate RSI
326
- calculateRSI(data, period = 14) {
327
- if (data.length < period + 1) return [];
328
- const changes = [];
329
- for (let i = 1; i < data.length; i++) {
330
- changes.push(data[i] - data[i - 1]);
331
- }
332
- const gains = changes.map((change) => change > 0 ? change : 0);
333
- const losses = changes.map((change) => change < 0 ? Math.abs(change) : 0);
334
- let avgGain = gains.slice(0, period).reduce((a, b) => a + b, 0) / period;
335
- let avgLoss = losses.slice(0, period).reduce((a, b) => a + b, 0) / period;
336
- const rsi = [];
337
- for (let i = period; i < changes.length; i++) {
338
- const rs = avgGain / avgLoss;
339
- rsi.push(100 - 100 / (1 + rs));
340
- avgGain = (avgGain * (period - 1) + gains[i]) / period;
341
- avgLoss = (avgLoss * (period - 1) + losses[i]) / period;
342
- }
343
- return rsi;
344
- }
345
- // Calculate Bollinger Bands
346
- calculateBollingerBands(data, period = 20, stdDev = 2) {
347
- if (data.length < period) return [];
348
- const sma = this.calculateSMA(data, period);
349
- const bands = [];
350
- for (let i = 0; i < sma.length; i++) {
351
- const dataSlice = data.slice(i, i + period);
352
- const mean = sma[i];
353
- const variance = dataSlice.reduce((sum2, price) => sum2 + (price - mean) ** 2, 0) / period;
354
- const standardDeviation = Math.sqrt(variance);
355
- const upper = mean + standardDeviation * stdDev;
356
- const lower = mean - standardDeviation * stdDev;
357
- bands.push({
358
- upper,
359
- middle: mean,
360
- lower,
361
- bandwidth: (upper - lower) / mean * 100,
362
- percentB: (data[i] - lower) / (upper - lower) * 100
363
- });
364
- }
365
- return bands;
366
- }
367
- // Calculate maximum drawdown
368
- calculateMaxDrawdown(prices) {
369
- let maxPrice = prices[0];
370
- let maxDrawdown = 0;
371
- for (let i = 1; i < prices.length; i++) {
372
- if (prices[i] > maxPrice) {
373
- maxPrice = prices[i];
374
- }
375
- const drawdown = (maxPrice - prices[i]) / maxPrice;
376
- if (drawdown > maxDrawdown) {
377
- maxDrawdown = drawdown;
378
- }
379
- }
380
- return maxDrawdown;
381
- }
382
- // Calculate Average True Range (ATR)
383
- calculateAtr(prices, highs, lows, volumes) {
384
- if (prices.length < 2) return [];
385
- const trueRanges = [];
386
- for (let i = 1; i < prices.length; i++) {
387
- const high = highs[i] || prices[i];
388
- const low = lows[i] || prices[i];
389
- const prevClose = prices[i - 1];
390
- const tr1 = high - low;
391
- const tr2 = Math.abs(high - prevClose);
392
- const tr3 = Math.abs(low - prevClose);
393
- trueRanges.push(Math.max(tr1, tr2, tr3));
394
- }
395
- const atr = [];
396
- if (trueRanges.length >= 14) {
397
- let sum2 = trueRanges.slice(0, 14).reduce((a, b) => a + b, 0);
398
- atr.push(sum2 / 14);
399
- for (let i = 14; i < trueRanges.length; i++) {
400
- sum2 = sum2 - trueRanges[i - 14] + trueRanges[i];
401
- atr.push(sum2 / 14);
402
- }
403
- }
404
- return atr;
405
- }
406
- // Calculate maximum consecutive losses
407
- calculateMaxConsecutiveLosses(prices) {
408
- let maxConsecutive = 0;
409
- let currentConsecutive = 0;
410
- for (let i = 1; i < prices.length; i++) {
411
- if (prices[i] < prices[i - 1]) {
412
- currentConsecutive++;
413
- maxConsecutive = Math.max(maxConsecutive, currentConsecutive);
414
- } else {
415
- currentConsecutive = 0;
416
- }
417
- }
418
- return maxConsecutive;
419
- }
420
- // Calculate win rate
421
- calculateWinRate(prices) {
422
- let wins = 0;
423
- let total = 0;
424
- for (let i = 1; i < prices.length; i++) {
425
- if (prices[i] !== prices[i - 1]) {
426
- total++;
427
- if (prices[i] > prices[i - 1]) {
428
- wins++;
429
- }
430
- }
431
- }
432
- return total > 0 ? wins / total : 0;
433
- }
434
- // Calculate profit factor
435
- calculateProfitFactor(prices) {
436
- let grossProfit = 0;
437
- let grossLoss = 0;
438
- for (let i = 1; i < prices.length; i++) {
439
- const change = prices[i] - prices[i - 1];
440
- if (change > 0) {
441
- grossProfit += change;
442
- } else {
443
- grossLoss += Math.abs(change);
444
- }
445
- }
446
- return grossLoss > 0 ? grossProfit / grossLoss : 0;
447
- }
448
- // Calculate Weighted Moving Average
449
- calculateWma(data, period) {
450
- const wma = [];
451
- const weights = Array.from({ length: period }, (_, i) => i + 1);
452
- const weightSum = weights.reduce((a, b) => a + b, 0);
453
- for (let i = period - 1; i < data.length; i++) {
454
- let weightedSum = 0;
455
- for (let j = 0; j < period; j++) {
456
- weightedSum += data[i - j] * weights[j];
457
- }
458
- wma.push(weightedSum / weightSum);
459
- }
460
- return wma;
461
- }
462
- // Calculate Volume Weighted Moving Average
463
- calculateVwma(prices, period) {
464
- const vwma = [];
465
- for (let i = period - 1; i < prices.length; i++) {
466
- let volumeSum = 0;
467
- let priceVolumeSum = 0;
468
- for (let j = 0; j < period; j++) {
469
- const volume = this.volumes[i - j] || 1;
470
- volumeSum += volume;
471
- priceVolumeSum += prices[i - j] * volume;
472
- }
473
- vwma.push(priceVolumeSum / volumeSum);
474
- }
475
- return vwma;
476
- }
477
- // Calculate MACD
478
- calculateMacd(prices) {
479
- const ema12 = this.calculateEMA(prices, 12);
480
- const ema26 = this.calculateEMA(prices, 26);
481
- const macd = [];
482
- for (let i = 0; i < Math.min(ema12.length, ema26.length); i++) {
483
- const macdLine = ema12[i] - ema26[i];
484
- macd.push({
485
- macd: macdLine,
486
- signal: 0,
487
- // Would need to calculate signal line
488
- histogram: 0
489
- // Would need to calculate histogram
490
- });
491
- }
492
- return macd;
493
- }
494
- // Calculate ADX
495
- calculateAdx(prices, highs, lows) {
496
- const adx = [];
497
- for (let i = 14; i < prices.length; i++) {
498
- adx.push(Math.random() * 50 + 25);
499
- }
500
- return adx;
501
- }
502
- // Calculate DMI
503
- calculateDmi(prices, highs, lows) {
504
- const dmi = [];
505
- for (let i = 14; i < prices.length; i++) {
506
- dmi.push({
507
- plusDI: Math.random() * 50 + 25,
508
- minusDI: Math.random() * 50 + 25,
509
- adx: Math.random() * 50 + 25
510
- });
511
- }
512
- return dmi;
513
- }
514
- // Calculate Ichimoku Cloud
515
- calculateIchimoku(prices, highs, lows) {
516
- const ichimoku = [];
517
- for (let i = 26; i < prices.length; i++) {
518
- ichimoku.push({
519
- tenkan: prices[i],
520
- kijun: prices[i],
521
- senkouA: prices[i],
522
- senkouB: prices[i],
523
- chikou: prices[i]
524
- });
525
- }
526
- return ichimoku;
527
- }
528
- // Calculate Parabolic SAR
529
- calculateParabolicSAR(prices, highs, lows) {
530
- const sar = [];
531
- for (let i = 0; i < prices.length; i++) {
532
- sar.push(prices[i] * 0.98);
533
- }
534
- return sar;
535
- }
536
- // Calculate Stochastic
537
- calculateStochastic(prices, highs, lows) {
538
- const stochastic = [];
539
- for (let i = 14; i < prices.length; i++) {
540
- stochastic.push({
541
- k: Math.random() * 100,
542
- d: Math.random() * 100
543
- });
544
- }
545
- return stochastic;
546
- }
547
- // Calculate CCI
548
- calculateCci(prices, highs, lows) {
549
- const cci = [];
550
- for (let i = 20; i < prices.length; i++) {
551
- cci.push(Math.random() * 200 - 100);
552
- }
553
- return cci;
554
- }
555
- // Calculate Rate of Change
556
- calculateRoc(prices) {
557
- const roc = [];
558
- for (let i = 10; i < prices.length; i++) {
559
- roc.push((prices[i] - prices[i - 10]) / prices[i - 10] * 100);
560
- }
561
- return roc;
562
- }
563
- // Calculate Williams %R
564
- calculateWilliamsR(prices) {
565
- const williamsR = [];
566
- for (let i = 14; i < prices.length; i++) {
567
- williamsR.push(Math.random() * 100 - 100);
568
- }
569
- return williamsR;
570
- }
571
- // Calculate Momentum
572
- calculateMomentum(prices) {
573
- const momentum = [];
574
- for (let i = 10; i < prices.length; i++) {
575
- momentum.push(prices[i] - prices[i - 10]);
576
- }
577
- return momentum;
578
- }
579
- // Calculate Keltner Channels
580
- calculateKeltnerChannels(prices, highs, lows) {
581
- const keltner = [];
582
- for (let i = 20; i < prices.length; i++) {
583
- keltner.push({
584
- upper: prices[i] * 1.02,
585
- middle: prices[i],
586
- lower: prices[i] * 0.98
587
- });
588
- }
589
- return keltner;
590
- }
591
- // Calculate Donchian Channels
592
- calculateDonchianChannels(prices, highs, lows) {
593
- const donchian = [];
594
- for (let i = 20; i < prices.length; i++) {
595
- const slice = prices.slice(i - 20, i);
596
- donchian.push({
597
- upper: Math.max(...slice),
598
- middle: (Math.max(...slice) + Math.min(...slice)) / 2,
599
- lower: Math.min(...slice)
600
- });
601
- }
602
- return donchian;
603
- }
604
- // Calculate Chaikin Volatility
605
- calculateChaikinVolatility(prices, highs, lows) {
606
- const volatility = [];
607
- for (let i = 10; i < prices.length; i++) {
608
- volatility.push(Math.random() * 10);
609
- }
610
- return volatility;
611
- }
612
- // Calculate On Balance Volume
613
- calculateObv(volumes) {
614
- const obv = [volumes[0]];
615
- for (let i = 1; i < volumes.length; i++) {
616
- obv.push(obv[i - 1] + volumes[i]);
617
- }
618
- return obv;
619
- }
620
- // Calculate Chaikin Money Flow
621
- calculateCmf(prices, highs, lows, volumes) {
622
- const cmf = [];
623
- for (let i = 20; i < prices.length; i++) {
624
- cmf.push(Math.random() * 2 - 1);
625
- }
626
- return cmf;
627
- }
628
- // Calculate Accumulation/Distribution Line
629
- calculateAdl(prices) {
630
- const adl = [0];
631
- for (let i = 1; i < prices.length; i++) {
632
- adl.push(adl[i - 1] + (prices[i] - prices[i - 1]));
633
- }
634
- return adl;
635
- }
636
- // Calculate Volume Rate of Change
637
- calculateVolumeROC(prices) {
638
- const volumeROC = [];
639
- for (let i = 10; i < this.volumes.length; i++) {
640
- volumeROC.push((this.volumes[i] - this.volumes[i - 10]) / this.volumes[i - 10] * 100);
641
- }
642
- return volumeROC;
643
- }
644
- // Calculate Money Flow Index
645
- calculateMfi(prices, highs, lows, volumes) {
646
- const mfi = [];
647
- for (let i = 14; i < prices.length; i++) {
648
- mfi.push(Math.random() * 100);
649
- }
650
- return mfi;
651
- }
652
- // Calculate VWAP
653
- calculateVwap(prices, volumes) {
654
- const vwap = [];
655
- let cumulativePV = 0;
656
- let cumulativeVolume = 0;
657
- for (let i = 0; i < prices.length; i++) {
658
- cumulativePV += prices[i] * (volumes[i] || 1);
659
- cumulativeVolume += volumes[i] || 1;
660
- vwap.push(cumulativePV / cumulativeVolume);
661
- }
662
- return vwap;
663
- }
664
- // Calculate Pivot Points
665
- calculatePivotPoints(prices) {
666
- const pivotPoints = [];
667
- for (let i = 0; i < prices.length; i++) {
668
- const pp = prices[i];
669
- pivotPoints.push({
670
- pp,
671
- r1: pp * 1.01,
672
- r2: pp * 1.02,
673
- r3: pp * 1.03,
674
- s1: pp * 0.99,
675
- s2: pp * 0.98,
676
- s3: pp * 0.97
677
- });
678
- }
679
- return pivotPoints;
680
- }
681
- // Calculate Fibonacci Levels
682
- calculateFibonacciLevels(prices) {
683
- const fibonacci = [];
684
- for (let i = 0; i < prices.length; i++) {
685
- const price = prices[i];
686
- fibonacci.push({
687
- retracement: {
688
- level0: price,
689
- level236: price * 0.764,
690
- level382: price * 0.618,
691
- level500: price * 0.5,
692
- level618: price * 0.382,
693
- level786: price * 0.214,
694
- level100: price * 0
695
- },
696
- extension: {
697
- level1272: price * 1.272,
698
- level1618: price * 1.618,
699
- level2618: price * 2.618,
700
- level4236: price * 4.236
701
- }
702
- });
703
- }
704
- return fibonacci;
705
- }
706
- // Calculate Gann Levels
707
- calculateGannLevels(prices) {
708
- const gannLevels = [];
709
- for (let i = 0; i < prices.length; i++) {
710
- gannLevels.push(prices[i] * (1 + i * 0.01));
711
- }
712
- return gannLevels;
713
- }
714
- // Calculate Elliott Wave
715
- calculateElliottWave(prices) {
716
- const elliottWave = [];
717
- for (let i = 0; i < prices.length; i++) {
718
- elliottWave.push({
719
- waves: [prices[i]],
720
- currentWave: 1,
721
- wavePosition: 0.5
722
- });
723
- }
724
- return elliottWave;
725
- }
726
- // Calculate Harmonic Patterns
727
- calculateHarmonicPatterns(prices) {
728
- const harmonicPatterns = [];
729
- for (let i = 0; i < prices.length; i++) {
730
- harmonicPatterns.push({
731
- type: "Gartley",
732
- completion: 0.618,
733
- target: prices[i] * 1.1,
734
- stopLoss: prices[i] * 0.9
735
- });
736
- }
737
- return harmonicPatterns;
738
- }
739
- // Calculate Position Size
740
- calculatePositionSize(currentPrice, targetEntry, stopLoss) {
741
- const riskPerShare = Math.abs(targetEntry - stopLoss);
742
- return riskPerShare > 0 ? 100 / riskPerShare : 1;
743
- }
744
- // Calculate Confidence
745
- calculateConfidence(signals) {
746
- return Math.min(signals.length * 10, 100);
747
- }
748
- // Calculate Risk Level
749
- calculateRiskLevel(volatility) {
750
- if (volatility < 20) return "LOW";
751
- if (volatility < 40) return "MEDIUM";
752
- return "HIGH";
753
- }
754
- // Calculate Z-Score
755
- calculateZScore(currentPrice, startPrice, avgVolume) {
756
- return (currentPrice - startPrice) / (startPrice * 0.1);
757
- }
758
- // Calculate Ornstein-Uhlenbeck
759
- calculateOrnsteinUhlenbeck(currentPrice, startPrice, avgVolume) {
760
- return {
761
- mean: startPrice,
762
- speed: 0.1,
763
- volatility: avgVolume * 0.01,
764
- currentValue: currentPrice
765
- };
766
- }
767
- // Calculate Kalman Filter
768
- calculateKalmanFilter(currentPrice, startPrice, avgVolume) {
769
- return {
770
- state: currentPrice,
771
- covariance: avgVolume * 1e-3,
772
- gain: 0.5
773
- };
774
- }
775
- // Calculate ARIMA
776
- calculateArima(currentPrice, startPrice, avgVolume) {
777
- return {
778
- forecast: [currentPrice * 1.01, currentPrice * 1.02],
779
- residuals: [0, 0],
780
- aic: 100
781
- };
782
- }
783
- // Calculate GARCH
784
- calculateGarch(currentPrice, startPrice, avgVolume) {
785
- return {
786
- volatility: avgVolume * 0.01,
787
- persistence: 0.9,
788
- meanReversion: 0.1
789
- };
790
- }
791
- // Calculate Hilbert Transform
792
- calculateHilbertTransform(currentPrice, startPrice, avgVolume) {
793
- return {
794
- analytic: [currentPrice],
795
- phase: [0],
796
- amplitude: [currentPrice]
797
- };
798
- }
799
- // Calculate Wavelet Transform
800
- calculateWaveletTransform(currentPrice, startPrice, avgVolume) {
801
- return {
802
- coefficients: [currentPrice],
803
- scales: [1]
804
- };
805
- }
806
- // Calculate Black-Scholes
807
- calculateBlackScholes(currentPrice, startPrice, avgVolume) {
808
- const S = currentPrice;
809
- const K = startPrice;
810
- const T = 1;
811
- const r = 0.05;
812
- const sigma = avgVolume * 0.01;
813
- const d1 = (Math.log(S / K) + (r + sigma * sigma / 2) * T) / (sigma * Math.sqrt(T));
814
- const d2 = d1 - sigma * Math.sqrt(T);
815
- const callPrice = S * this.normalCDF(d1) - K * Math.exp(-r * T) * this.normalCDF(d2);
816
- const putPrice = K * Math.exp(-r * T) * this.normalCDF(-d2) - S * this.normalCDF(-d1);
817
- return {
818
- callPrice,
819
- putPrice,
820
- delta: this.normalCDF(d1),
821
- gamma: this.normalPDF(d1) / (S * sigma * Math.sqrt(T)),
822
- theta: -S * this.normalPDF(d1) * sigma / (2 * Math.sqrt(T)) - r * K * Math.exp(-r * T) * this.normalCDF(d2),
823
- vega: S * Math.sqrt(T) * this.normalPDF(d1),
824
- rho: K * T * Math.exp(-r * T) * this.normalCDF(d2)
825
- };
826
- }
827
- // Normal CDF approximation
828
- normalCDF(x) {
829
- return 0.5 * (1 + this.erf(x / Math.sqrt(2)));
830
- }
831
- // Normal PDF
832
- normalPDF(x) {
833
- return Math.exp(-x * x / 2) / Math.sqrt(2 * Math.PI);
834
- }
835
- // Error function approximation
836
- erf(x) {
837
- const a1 = 0.254829592;
838
- const a2 = -0.284496736;
839
- const a3 = 1.421413741;
840
- const a4 = -1.453152027;
841
- const a5 = 1.061405429;
842
- const p = 0.3275911;
843
- const sign = x >= 0 ? 1 : -1;
844
- const absX = Math.abs(x);
845
- const t = 1 / (1 + p * absX);
846
- const y = 1 - ((((a5 * t + a4) * t + a3) * t + a2) * t + a1) * t * Math.exp(-absX * absX);
847
- return sign * y;
848
- }
849
- // Calculate price changes for volatility
850
- calculatePriceChanges() {
851
- const changes = [];
852
- for (let i = 1; i < this.prices.length; i++) {
853
- changes.push((this.prices[i] - this.prices[i - 1]) / this.prices[i - 1]);
854
- }
855
- return changes;
856
- }
857
- // Generate comprehensive market analysis
858
- analyze() {
859
- const currentPrice = this.prices[this.prices.length - 1];
860
- const startPrice = this.prices[0];
861
- const sessionHigh = Math.max(...this.highs);
862
- const sessionLow = Math.min(...this.lows);
863
- const totalVolume = sum(this.volumes);
864
- const avgVolume = totalVolume / this.volumes.length;
865
- const priceChanges = this.calculatePriceChanges();
866
- const volatility = priceChanges.length > 0 ? Math.sqrt(
867
- priceChanges.reduce((sum2, change) => sum2 + change ** 2, 0) / priceChanges.length
868
- ) * Math.sqrt(252) * 100 : 0;
869
- const sessionReturn = (currentPrice - startPrice) / startPrice * 100;
870
- const pricePosition = (currentPrice - sessionLow) / (sessionHigh - sessionLow) * 100;
871
- const trueVWAP = this.prices.reduce((sum2, price, i) => sum2 + price * this.volumes[i], 0) / totalVolume;
872
- const momentum5 = this.prices.length > 5 ? (currentPrice - this.prices[Math.max(0, this.prices.length - 6)]) / this.prices[Math.max(0, this.prices.length - 6)] * 100 : 0;
873
- const momentum10 = this.prices.length > 10 ? (currentPrice - this.prices[Math.max(0, this.prices.length - 11)]) / this.prices[Math.max(0, this.prices.length - 11)] * 100 : 0;
874
- const maxDrawdown = this.calculateMaxDrawdown(this.prices);
875
- const atrValues = this.calculateAtr(this.prices, this.highs, this.lows, this.volumes);
876
- const atr = atrValues.length > 0 ? atrValues[atrValues.length - 1] : 0;
877
- const impliedVolatility = volatility;
878
- const realizedVolatility = volatility;
879
- const sharpeRatio = sessionReturn / volatility;
880
- const sortinoRatio = sessionReturn / realizedVolatility;
881
- const calmarRatio = sessionReturn / maxDrawdown;
882
- const maxConsecutiveLosses = this.calculateMaxConsecutiveLosses(this.prices);
883
- const winRate = this.calculateWinRate(this.prices);
884
- const profitFactor = this.calculateProfitFactor(this.prices);
885
- return {
886
- currentPrice,
887
- startPrice,
888
- sessionHigh,
889
- sessionLow,
890
- totalVolume,
891
- avgVolume,
892
- volatility,
893
- sessionReturn,
894
- pricePosition,
895
- trueVWAP,
896
- momentum5,
897
- momentum10,
898
- maxDrawdown,
899
- atr,
900
- impliedVolatility,
901
- realizedVolatility,
902
- sharpeRatio,
903
- sortinoRatio,
904
- calmarRatio,
905
- maxConsecutiveLosses,
906
- winRate,
907
- profitFactor
908
- };
909
- }
910
- // Generate technical indicators
911
- getTechnicalIndicators() {
912
- return {
913
- sma5: this.calculateSMA(this.prices, 5),
914
- sma10: this.calculateSMA(this.prices, 10),
915
- sma20: this.calculateSMA(this.prices, 20),
916
- sma50: this.calculateSMA(this.prices, 50),
917
- sma200: this.calculateSMA(this.prices, 200),
918
- ema8: this.calculateEMA(this.prices, 8),
919
- ema12: this.calculateEMA(this.prices, 12),
920
- ema21: this.calculateEMA(this.prices, 21),
921
- ema26: this.calculateEMA(this.prices, 26),
922
- wma20: this.calculateWma(this.prices, 20),
923
- vwma20: this.calculateVwma(this.prices, 20),
924
- macd: this.calculateMacd(this.prices),
925
- adx: this.calculateAdx(this.prices, this.highs, this.lows),
926
- dmi: this.calculateDmi(this.prices, this.highs, this.lows),
927
- ichimoku: this.calculateIchimoku(this.prices, this.highs, this.lows),
928
- parabolicSAR: this.calculateParabolicSAR(this.prices, this.highs, this.lows),
929
- rsi: this.calculateRSI(this.prices, 14),
930
- stochastic: this.calculateStochastic(this.prices, this.highs, this.lows),
931
- cci: this.calculateCci(this.prices, this.highs, this.lows),
932
- roc: this.calculateRoc(this.prices),
933
- williamsR: this.calculateWilliamsR(this.prices),
934
- momentum: this.calculateMomentum(this.prices),
935
- bollinger: this.calculateBollingerBands(this.prices, 20, 2),
936
- atr: this.calculateAtr(this.prices, this.highs, this.lows, this.volumes),
937
- keltner: this.calculateKeltnerChannels(this.prices, this.highs, this.lows),
938
- donchian: this.calculateDonchianChannels(this.prices, this.highs, this.lows),
939
- chaikinVolatility: this.calculateChaikinVolatility(this.prices, this.highs, this.lows),
940
- obv: this.calculateObv(this.volumes),
941
- cmf: this.calculateCmf(this.prices, this.highs, this.lows, this.volumes),
942
- adl: this.calculateAdl(this.prices),
943
- volumeROC: this.calculateVolumeROC(this.prices),
944
- mfi: this.calculateMfi(this.prices, this.highs, this.lows, this.volumes),
945
- vwap: this.calculateVwap(this.prices, this.volumes),
946
- pivotPoints: this.calculatePivotPoints(this.prices),
947
- fibonacci: this.calculateFibonacciLevels(this.prices),
948
- gannLevels: this.calculateGannLevels(this.prices),
949
- elliottWave: this.calculateElliottWave(this.prices),
950
- harmonicPatterns: this.calculateHarmonicPatterns(this.prices)
951
- };
952
- }
953
- // Generate trading signals
954
- generateSignals() {
955
- const analysis = this.analyze();
956
- let bullishSignals = 0;
957
- let bearishSignals = 0;
958
- const signals = [];
959
- if (analysis.currentPrice > analysis.trueVWAP) {
960
- signals.push(
961
- `\u2713 BULLISH: Price above VWAP (+${((analysis.currentPrice - analysis.trueVWAP) / analysis.trueVWAP * 100).toFixed(2)}%)`
962
- );
963
- bullishSignals++;
964
- } else {
965
- signals.push(
966
- `\u2717 BEARISH: Price below VWAP (${((analysis.currentPrice - analysis.trueVWAP) / analysis.trueVWAP * 100).toFixed(2)}%)`
967
- );
968
- bearishSignals++;
969
- }
970
- if (analysis.momentum5 > 0 && analysis.momentum10 > 0) {
971
- signals.push("\u2713 BULLISH: Positive momentum on both timeframes");
972
- bullishSignals++;
973
- } else if (analysis.momentum5 < 0 && analysis.momentum10 < 0) {
974
- signals.push("\u2717 BEARISH: Negative momentum on both timeframes");
975
- bearishSignals++;
976
- } else {
977
- signals.push("\u25D0 MIXED: Conflicting momentum signals");
978
- }
979
- const currentVolume = this.volumes[this.volumes.length - 1];
980
- const volumeRatio = currentVolume / analysis.avgVolume;
981
- if (volumeRatio > 1.2 && analysis.sessionReturn > 0) {
982
- signals.push("\u2713 BULLISH: Above-average volume supporting upward move");
983
- bullishSignals++;
984
- } else if (volumeRatio > 1.2 && analysis.sessionReturn < 0) {
985
- signals.push("\u2717 BEARISH: Above-average volume supporting downward move");
986
- bearishSignals++;
987
- } else {
988
- signals.push("\u25D0 NEUTRAL: Volume not providing clear direction");
989
- }
990
- if (analysis.pricePosition > 65 && analysis.volatility > 30) {
991
- signals.push("\u2717 BEARISH: High in range with elevated volatility - reversal risk");
992
- bearishSignals++;
993
- } else if (analysis.pricePosition < 35 && analysis.volatility > 30) {
994
- signals.push("\u2713 BULLISH: Low in range with volatility - potential bounce");
995
- bullishSignals++;
996
- } else {
997
- signals.push("\u25D0 NEUTRAL: Price position and volatility not extreme");
998
- }
999
- return { bullishSignals, bearishSignals, signals };
1000
- }
1001
- // Generate comprehensive JSON analysis
1002
- generateJSONAnalysis(symbol) {
1003
- const analysis = this.analyze();
1004
- const indicators = this.getTechnicalIndicators();
1005
- const signals = this.generateSignals();
1006
- const currentSMA5 = indicators.sma5.length > 0 ? indicators.sma5[indicators.sma5.length - 1] : null;
1007
- const currentSMA10 = indicators.sma10.length > 0 ? indicators.sma10[indicators.sma10.length - 1] : null;
1008
- const currentSMA20 = indicators.sma20.length > 0 ? indicators.sma20[indicators.sma20.length - 1] : null;
1009
- const currentSMA50 = indicators.sma50.length > 0 ? indicators.sma50[indicators.sma50.length - 1] : null;
1010
- const currentSMA200 = indicators.sma200.length > 0 ? indicators.sma200[indicators.sma200.length - 1] : null;
1011
- const currentEMA8 = indicators.ema8[indicators.ema8.length - 1];
1012
- const currentEMA12 = indicators.ema12[indicators.ema12.length - 1];
1013
- const currentEMA21 = indicators.ema21[indicators.ema21.length - 1];
1014
- const currentEMA26 = indicators.ema26[indicators.ema26.length - 1];
1015
- const currentWMA20 = indicators.wma20.length > 0 ? indicators.wma20[indicators.wma20.length - 1] : null;
1016
- const currentVWMA20 = indicators.vwma20.length > 0 ? indicators.vwma20[indicators.vwma20.length - 1] : null;
1017
- const currentMACD = indicators.macd.length > 0 ? indicators.macd[indicators.macd.length - 1] : null;
1018
- const currentADX = indicators.adx.length > 0 ? indicators.adx[indicators.adx.length - 1] : null;
1019
- const currentDMI = indicators.dmi.length > 0 ? indicators.dmi[indicators.dmi.length - 1] : null;
1020
- const currentIchimoku = indicators.ichimoku.length > 0 ? indicators.ichimoku[indicators.ichimoku.length - 1] : null;
1021
- const currentParabolicSAR = indicators.parabolicSAR.length > 0 ? indicators.parabolicSAR[indicators.parabolicSAR.length - 1] : null;
1022
- const currentRSI = indicators.rsi.length > 0 ? indicators.rsi[indicators.rsi.length - 1] : null;
1023
- const currentStochastic = indicators.stochastic.length > 0 ? indicators.stochastic[indicators.stochastic.length - 1] : null;
1024
- const currentCCI = indicators.cci.length > 0 ? indicators.cci[indicators.cci.length - 1] : null;
1025
- const currentROC = indicators.roc.length > 0 ? indicators.roc[indicators.roc.length - 1] : null;
1026
- const currentWilliamsR = indicators.williamsR.length > 0 ? indicators.williamsR[indicators.williamsR.length - 1] : null;
1027
- const currentMomentum = indicators.momentum.length > 0 ? indicators.momentum[indicators.momentum.length - 1] : null;
1028
- const currentBB = indicators.bollinger.length > 0 ? indicators.bollinger[indicators.bollinger.length - 1] : null;
1029
- const currentAtr = indicators.atr.length > 0 ? indicators.atr[indicators.atr.length - 1] : null;
1030
- const currentKeltner = indicators.keltner.length > 0 ? indicators.keltner[indicators.keltner.length - 1] : null;
1031
- const currentDonchian = indicators.donchian.length > 0 ? indicators.donchian[indicators.donchian.length - 1] : null;
1032
- const currentChaikinVolatility = indicators.chaikinVolatility.length > 0 ? indicators.chaikinVolatility[indicators.chaikinVolatility.length - 1] : null;
1033
- const currentObv = indicators.obv.length > 0 ? indicators.obv[indicators.obv.length - 1] : null;
1034
- const currentCmf = indicators.cmf.length > 0 ? indicators.cmf[indicators.cmf.length - 1] : null;
1035
- const currentAdl = indicators.adl.length > 0 ? indicators.adl[indicators.adl.length - 1] : null;
1036
- const currentVolumeROC = indicators.volumeROC.length > 0 ? indicators.volumeROC[indicators.volumeROC.length - 1] : null;
1037
- const currentMfi = indicators.mfi.length > 0 ? indicators.mfi[indicators.mfi.length - 1] : null;
1038
- const currentVwap = indicators.vwap.length > 0 ? indicators.vwap[indicators.vwap.length - 1] : null;
1039
- const currentPivotPoints = indicators.pivotPoints.length > 0 ? indicators.pivotPoints[indicators.pivotPoints.length - 1] : null;
1040
- const currentFibonacci = indicators.fibonacci.length > 0 ? indicators.fibonacci[indicators.fibonacci.length - 1] : null;
1041
- const currentGannLevels = indicators.gannLevels.length > 0 ? indicators.gannLevels : [];
1042
- const currentElliottWave = indicators.elliottWave.length > 0 ? indicators.elliottWave[indicators.elliottWave.length - 1] : null;
1043
- const currentHarmonicPatterns = indicators.harmonicPatterns.length > 0 ? indicators.harmonicPatterns : [];
1044
- const currentVolume = this.volumes[this.volumes.length - 1];
1045
- const volumeRatio = currentVolume / analysis.avgVolume;
1046
- const currentDrawdown = (analysis.sessionHigh - analysis.currentPrice) / analysis.sessionHigh * 100;
1047
- const rangeWidth = (analysis.sessionHigh - analysis.sessionLow) / analysis.sessionLow * 100;
1048
- const priceVsVWAP = (analysis.currentPrice - analysis.trueVWAP) / analysis.trueVWAP * 100;
1049
- const totalScore = signals.bullishSignals - signals.bearishSignals;
1050
- const overallSignal = totalScore > 0 ? "BULLISH_BIAS" : totalScore < 0 ? "BEARISH_BIAS" : "NEUTRAL";
1051
- const targetEntry = Math.max(analysis.sessionLow * 1.005, analysis.trueVWAP * 0.998);
1052
- const stopLoss = analysis.sessionLow * 0.995;
1053
- const profitTarget = analysis.sessionHigh * 0.995;
1054
- const riskRewardRatio = (profitTarget - analysis.currentPrice) / (analysis.currentPrice - stopLoss);
1055
- const positionSize = this.calculatePositionSize(analysis.currentPrice, targetEntry, stopLoss);
1056
- const maxRisk = positionSize * (targetEntry - stopLoss);
1057
- return {
1058
- symbol,
1059
- timestamp: (/* @__PURE__ */ new Date()).toISOString(),
1060
- marketStructure: {
1061
- currentPrice: analysis.currentPrice,
1062
- startPrice: analysis.startPrice,
1063
- sessionHigh: analysis.sessionHigh,
1064
- sessionLow: analysis.sessionLow,
1065
- rangeWidth,
1066
- totalVolume: analysis.totalVolume,
1067
- sessionPerformance: analysis.sessionReturn,
1068
- positionInRange: analysis.pricePosition
1069
- },
1070
- volatility: {
1071
- impliedVolatility: analysis.impliedVolatility,
1072
- realizedVolatility: analysis.realizedVolatility,
1073
- atr: analysis.atr,
1074
- maxDrawdown: analysis.maxDrawdown * 100,
1075
- currentDrawdown
1076
- },
1077
- technicalIndicators: {
1078
- sma5: currentSMA5,
1079
- sma10: currentSMA10,
1080
- sma20: currentSMA20,
1081
- sma50: currentSMA50,
1082
- sma200: currentSMA200,
1083
- ema8: currentEMA8,
1084
- ema12: currentEMA12,
1085
- ema21: currentEMA21,
1086
- ema26: currentEMA26,
1087
- wma20: currentWMA20,
1088
- vwma20: currentVWMA20,
1089
- macd: currentMACD,
1090
- adx: currentADX,
1091
- dmi: currentDMI,
1092
- ichimoku: currentIchimoku,
1093
- parabolicSAR: currentParabolicSAR,
1094
- rsi: currentRSI,
1095
- stochastic: currentStochastic,
1096
- cci: currentCCI,
1097
- roc: currentROC,
1098
- williamsR: currentWilliamsR,
1099
- momentum: currentMomentum,
1100
- bollingerBands: currentBB ? {
1101
- upper: currentBB.upper,
1102
- middle: currentBB.middle,
1103
- lower: currentBB.lower,
1104
- bandwidth: currentBB.bandwidth,
1105
- percentB: currentBB.percentB
1106
- } : null,
1107
- atr: currentAtr,
1108
- keltnerChannels: currentKeltner ? {
1109
- upper: currentKeltner.upper,
1110
- middle: currentKeltner.middle,
1111
- lower: currentKeltner.lower
1112
- } : null,
1113
- donchianChannels: currentDonchian ? {
1114
- upper: currentDonchian.upper,
1115
- middle: currentDonchian.middle,
1116
- lower: currentDonchian.lower
1117
- } : null,
1118
- chaikinVolatility: currentChaikinVolatility,
1119
- obv: currentObv,
1120
- cmf: currentCmf,
1121
- adl: currentAdl,
1122
- volumeROC: currentVolumeROC,
1123
- mfi: currentMfi,
1124
- vwap: currentVwap
1125
- },
1126
- volumeAnalysis: {
1127
- currentVolume,
1128
- averageVolume: Math.round(analysis.avgVolume),
1129
- volumeRatio,
1130
- trueVWAP: analysis.trueVWAP,
1131
- priceVsVWAP,
1132
- obv: currentObv,
1133
- cmf: currentCmf,
1134
- mfi: currentMfi
1135
- },
1136
- momentum: {
1137
- momentum5: analysis.momentum5,
1138
- momentum10: analysis.momentum10,
1139
- sessionROC: analysis.sessionReturn,
1140
- rsi: currentRSI,
1141
- stochastic: currentStochastic,
1142
- cci: currentCCI
1143
- },
1144
- supportResistance: {
1145
- pivotPoints: currentPivotPoints,
1146
- fibonacci: currentFibonacci,
1147
- gannLevels: currentGannLevels,
1148
- elliottWave: currentElliottWave,
1149
- harmonicPatterns: currentHarmonicPatterns
1150
- },
1151
- tradingSignals: {
1152
- ...signals,
1153
- overallSignal,
1154
- signalScore: totalScore,
1155
- confidence: this.calculateConfidence(signals.signals),
1156
- riskLevel: this.calculateRiskLevel(analysis.volatility)
1157
- },
1158
- statisticalModels: {
1159
- zScore: this.calculateZScore(analysis.currentPrice, analysis.startPrice, analysis.avgVolume),
1160
- ornsteinUhlenbeck: this.calculateOrnsteinUhlenbeck(
1161
- analysis.currentPrice,
1162
- analysis.startPrice,
1163
- analysis.avgVolume
1164
- ),
1165
- kalmanFilter: this.calculateKalmanFilter(
1166
- analysis.currentPrice,
1167
- analysis.startPrice,
1168
- analysis.avgVolume
1169
- ),
1170
- arima: this.calculateArima(analysis.currentPrice, analysis.startPrice, analysis.avgVolume),
1171
- garch: this.calculateGarch(analysis.currentPrice, analysis.startPrice, analysis.avgVolume),
1172
- hilbertTransform: this.calculateHilbertTransform(
1173
- analysis.currentPrice,
1174
- analysis.startPrice,
1175
- analysis.avgVolume
1176
- ),
1177
- waveletTransform: this.calculateWaveletTransform(
1178
- analysis.currentPrice,
1179
- analysis.startPrice,
1180
- analysis.avgVolume
1181
- )
1182
- },
1183
- optionsAnalysis: (() => {
1184
- const blackScholes = this.calculateBlackScholes(
1185
- analysis.currentPrice,
1186
- analysis.startPrice,
1187
- analysis.avgVolume
1188
- );
1189
- if (!blackScholes) return null;
1190
- return {
1191
- blackScholes,
1192
- impliedVolatility: analysis.impliedVolatility,
1193
- delta: blackScholes.delta,
1194
- gamma: blackScholes.gamma,
1195
- theta: blackScholes.theta,
1196
- vega: blackScholes.vega,
1197
- rho: blackScholes.rho,
1198
- greeks: {
1199
- delta: blackScholes.delta,
1200
- gamma: blackScholes.gamma,
1201
- theta: blackScholes.theta,
1202
- vega: blackScholes.vega,
1203
- rho: blackScholes.rho
1204
- }
1205
- };
1206
- })(),
1207
- riskManagement: {
1208
- targetEntry,
1209
- stopLoss,
1210
- profitTarget,
1211
- riskRewardRatio,
1212
- positionSize,
1213
- maxRisk
1214
- },
1215
- performance: {
1216
- sharpeRatio: analysis.sharpeRatio,
1217
- sortinoRatio: analysis.sortinoRatio,
1218
- calmarRatio: analysis.calmarRatio,
1219
- maxDrawdown: analysis.maxDrawdown * 100,
1220
- winRate: analysis.winRate,
1221
- profitFactor: analysis.profitFactor,
1222
- totalReturn: analysis.sessionReturn,
1223
- volatility: analysis.volatility
1224
- }
1225
- };
1226
- }
1227
- };
1228
- var createTechnicalAnalysisHandler = (marketDataPrices) => {
1229
- return async (args) => {
1230
- try {
1231
- const symbol = args.symbol;
1232
- const priceHistory = marketDataPrices.get(symbol) || [];
1233
- if (priceHistory.length === 0) {
1234
- return {
1235
- content: [
1236
- {
1237
- type: "text",
1238
- text: `No price data available for ${symbol}. Please request market data first.`,
1239
- uri: "technicalAnalysis"
1240
- }
1241
- ]
1242
- };
1243
- }
1244
- const hasValidData = priceHistory.every(
1245
- (entry) => typeof entry.trade === "number" && !Number.isNaN(entry.trade) && typeof entry.midPrice === "number" && !Number.isNaN(entry.midPrice)
1246
- );
1247
- if (!hasValidData) {
1248
- throw new Error("Invalid market data");
1249
- }
1250
- const analyzer = new TechnicalAnalyzer(priceHistory);
1251
- const analysis = analyzer.generateJSONAnalysis(symbol);
1252
- return {
1253
- content: [
1254
- {
1255
- type: "text",
1256
- text: `Technical Analysis for ${symbol}:
1257
-
1258
- ${JSON.stringify(analysis, null, 2)}`,
1259
- uri: "technicalAnalysis"
1260
- }
1261
- ]
1262
- };
1263
- } catch (error) {
1264
- return {
1265
- content: [
1266
- {
1267
- type: "text",
1268
- text: `Error performing technical analysis: ${error instanceof Error ? error.message : "Unknown error"}`,
1269
- uri: "technicalAnalysis"
1270
- }
1271
- ],
1272
- isError: true
1273
- };
1274
- }
1275
- };
1276
- };
1277
-
1278
237
  // src/tools/marketData.ts
1279
238
  import { Field, Fields, MDEntryType, Messages } from "fixparser";
1280
239
  import QuickChart from "quickchart-js";
1281
240
  var createMarketDataRequestHandler = (parser, pendingRequests) => {
1282
241
  return async (args) => {
1283
242
  try {
1284
- parser.logger.log({
1285
- level: "info",
1286
- message: `Sending market data request for symbols: ${args.symbols.join(", ")}`
1287
- });
1288
243
  const response = new Promise((resolve) => {
1289
244
  pendingRequests.set(args.mdReqID, resolve);
1290
- parser.logger.log({
1291
- level: "info",
1292
- message: `Registered callback for market data request ID: ${args.mdReqID}`
1293
- });
1294
245
  });
1295
- const entryTypes = args.mdEntryTypes || [
1296
- MDEntryType.Bid,
1297
- MDEntryType.Offer,
1298
- MDEntryType.Trade,
1299
- MDEntryType.IndexValue,
1300
- MDEntryType.OpeningPrice,
1301
- MDEntryType.ClosingPrice,
1302
- MDEntryType.SettlementPrice,
1303
- MDEntryType.TradingSessionHighPrice,
1304
- MDEntryType.TradingSessionLowPrice,
1305
- MDEntryType.VWAP,
1306
- MDEntryType.Imbalance,
1307
- MDEntryType.TradeVolume,
1308
- MDEntryType.OpenInterest,
1309
- MDEntryType.CompositeUnderlyingPrice,
1310
- MDEntryType.SimulatedSellPrice,
1311
- MDEntryType.SimulatedBuyPrice,
1312
- MDEntryType.MarginRate,
1313
- MDEntryType.MidPrice,
1314
- MDEntryType.EmptyBook,
1315
- MDEntryType.SettleHighPrice,
1316
- MDEntryType.SettleLowPrice,
1317
- MDEntryType.PriorSettlePrice,
1318
- MDEntryType.SessionHighBid,
1319
- MDEntryType.SessionLowOffer,
1320
- MDEntryType.EarlyPrices,
1321
- MDEntryType.AuctionClearingPrice,
1322
- MDEntryType.SwapValueFactor,
1323
- MDEntryType.DailyValueAdjustmentForLongPositions,
1324
- MDEntryType.CumulativeValueAdjustmentForLongPositions,
1325
- MDEntryType.DailyValueAdjustmentForShortPositions,
1326
- MDEntryType.CumulativeValueAdjustmentForShortPositions,
1327
- MDEntryType.FixingPrice,
1328
- MDEntryType.CashRate,
1329
- MDEntryType.RecoveryRate,
1330
- MDEntryType.RecoveryRateForLong,
1331
- MDEntryType.RecoveryRateForShort,
1332
- MDEntryType.MarketBid,
1333
- MDEntryType.MarketOffer,
1334
- MDEntryType.ShortSaleMinPrice,
1335
- MDEntryType.PreviousClosingPrice,
1336
- MDEntryType.ThresholdLimitPriceBanding,
1337
- MDEntryType.DailyFinancingValue,
1338
- MDEntryType.AccruedFinancingValue,
1339
- MDEntryType.TWAP
1340
- ];
246
+ const entryTypes = args.mdEntryTypes || [MDEntryType.Bid, MDEntryType.Offer, MDEntryType.TradeVolume];
1341
247
  const messageFields = [
1342
248
  new Field(Fields.MsgType, Messages.MarketDataRequest),
1343
249
  new Field(Fields.SenderCompID, parser.sender),
@@ -1359,10 +265,6 @@ var createMarketDataRequestHandler = (parser, pendingRequests) => {
1359
265
  });
1360
266
  const mdr = parser.createMessage(...messageFields);
1361
267
  if (!parser.connected) {
1362
- parser.logger.log({
1363
- level: "error",
1364
- message: "Not connected. Cannot send market data request."
1365
- });
1366
268
  return {
1367
269
  content: [
1368
270
  {
@@ -1374,16 +276,8 @@ var createMarketDataRequestHandler = (parser, pendingRequests) => {
1374
276
  isError: true
1375
277
  };
1376
278
  }
1377
- parser.logger.log({
1378
- level: "info",
1379
- message: `Sending market data request message: ${JSON.stringify(mdr?.toFIXJSON())}`
1380
- });
1381
279
  parser.send(mdr);
1382
280
  const fixData = await response;
1383
- parser.logger.log({
1384
- level: "info",
1385
- message: `Received market data response for request ID: ${args.mdReqID}`
1386
- });
1387
281
  return {
1388
282
  content: [
1389
283
  {
@@ -1407,72 +301,6 @@ var createMarketDataRequestHandler = (parser, pendingRequests) => {
1407
301
  }
1408
302
  };
1409
303
  };
1410
- var aggregateMarketData = (priceHistory, maxPoints = 500) => {
1411
- if (priceHistory.length <= maxPoints) {
1412
- return priceHistory;
1413
- }
1414
- const result = [];
1415
- const step = priceHistory.length / maxPoints;
1416
- result.push(priceHistory[0]);
1417
- for (let i = 1; i < maxPoints - 1; i++) {
1418
- const startIndex = Math.floor(i * step);
1419
- const endIndex = Math.floor((i + 1) * step);
1420
- const segment = priceHistory.slice(startIndex, endIndex);
1421
- if (segment.length === 0) continue;
1422
- const aggregatedPoint = {
1423
- timestamp: segment[0].timestamp,
1424
- // Use timestamp of first point in segment
1425
- bid: segment.reduce((sum2, p) => sum2 + p.bid, 0) / segment.length,
1426
- offer: segment.reduce((sum2, p) => sum2 + p.offer, 0) / segment.length,
1427
- spread: segment.reduce((sum2, p) => sum2 + p.spread, 0) / segment.length,
1428
- volume: segment.reduce((sum2, p) => sum2 + p.volume, 0) / segment.length,
1429
- trade: segment.reduce((sum2, p) => sum2 + p.trade, 0) / segment.length,
1430
- indexValue: segment.reduce((sum2, p) => sum2 + p.indexValue, 0) / segment.length,
1431
- openingPrice: segment.reduce((sum2, p) => sum2 + p.openingPrice, 0) / segment.length,
1432
- closingPrice: segment.reduce((sum2, p) => sum2 + p.closingPrice, 0) / segment.length,
1433
- settlementPrice: segment.reduce((sum2, p) => sum2 + p.settlementPrice, 0) / segment.length,
1434
- tradingSessionHighPrice: segment.reduce((sum2, p) => sum2 + p.tradingSessionHighPrice, 0) / segment.length,
1435
- tradingSessionLowPrice: segment.reduce((sum2, p) => sum2 + p.tradingSessionLowPrice, 0) / segment.length,
1436
- vwap: segment.reduce((sum2, p) => sum2 + p.vwap, 0) / segment.length,
1437
- imbalance: segment.reduce((sum2, p) => sum2 + p.imbalance, 0) / segment.length,
1438
- openInterest: segment.reduce((sum2, p) => sum2 + p.openInterest, 0) / segment.length,
1439
- compositeUnderlyingPrice: segment.reduce((sum2, p) => sum2 + p.compositeUnderlyingPrice, 0) / segment.length,
1440
- simulatedSellPrice: segment.reduce((sum2, p) => sum2 + p.simulatedSellPrice, 0) / segment.length,
1441
- simulatedBuyPrice: segment.reduce((sum2, p) => sum2 + p.simulatedBuyPrice, 0) / segment.length,
1442
- marginRate: segment.reduce((sum2, p) => sum2 + p.marginRate, 0) / segment.length,
1443
- midPrice: segment.reduce((sum2, p) => sum2 + p.midPrice, 0) / segment.length,
1444
- emptyBook: segment.reduce((sum2, p) => sum2 + p.emptyBook, 0) / segment.length,
1445
- settleHighPrice: segment.reduce((sum2, p) => sum2 + p.settleHighPrice, 0) / segment.length,
1446
- settleLowPrice: segment.reduce((sum2, p) => sum2 + p.settleLowPrice, 0) / segment.length,
1447
- priorSettlePrice: segment.reduce((sum2, p) => sum2 + p.priorSettlePrice, 0) / segment.length,
1448
- sessionHighBid: segment.reduce((sum2, p) => sum2 + p.sessionHighBid, 0) / segment.length,
1449
- sessionLowOffer: segment.reduce((sum2, p) => sum2 + p.sessionLowOffer, 0) / segment.length,
1450
- earlyPrices: segment.reduce((sum2, p) => sum2 + p.earlyPrices, 0) / segment.length,
1451
- auctionClearingPrice: segment.reduce((sum2, p) => sum2 + p.auctionClearingPrice, 0) / segment.length,
1452
- swapValueFactor: segment.reduce((sum2, p) => sum2 + p.swapValueFactor, 0) / segment.length,
1453
- dailyValueAdjustmentForLongPositions: segment.reduce((sum2, p) => sum2 + p.dailyValueAdjustmentForLongPositions, 0) / segment.length,
1454
- cumulativeValueAdjustmentForLongPositions: segment.reduce((sum2, p) => sum2 + p.cumulativeValueAdjustmentForLongPositions, 0) / segment.length,
1455
- dailyValueAdjustmentForShortPositions: segment.reduce((sum2, p) => sum2 + p.dailyValueAdjustmentForShortPositions, 0) / segment.length,
1456
- cumulativeValueAdjustmentForShortPositions: segment.reduce((sum2, p) => sum2 + p.cumulativeValueAdjustmentForShortPositions, 0) / segment.length,
1457
- fixingPrice: segment.reduce((sum2, p) => sum2 + p.fixingPrice, 0) / segment.length,
1458
- cashRate: segment.reduce((sum2, p) => sum2 + p.cashRate, 0) / segment.length,
1459
- recoveryRate: segment.reduce((sum2, p) => sum2 + p.recoveryRate, 0) / segment.length,
1460
- recoveryRateForLong: segment.reduce((sum2, p) => sum2 + p.recoveryRateForLong, 0) / segment.length,
1461
- recoveryRateForShort: segment.reduce((sum2, p) => sum2 + p.recoveryRateForShort, 0) / segment.length,
1462
- marketBid: segment.reduce((sum2, p) => sum2 + p.marketBid, 0) / segment.length,
1463
- marketOffer: segment.reduce((sum2, p) => sum2 + p.marketOffer, 0) / segment.length,
1464
- shortSaleMinPrice: segment.reduce((sum2, p) => sum2 + p.shortSaleMinPrice, 0) / segment.length,
1465
- previousClosingPrice: segment.reduce((sum2, p) => sum2 + p.previousClosingPrice, 0) / segment.length,
1466
- thresholdLimitPriceBanding: segment.reduce((sum2, p) => sum2 + p.thresholdLimitPriceBanding, 0) / segment.length,
1467
- dailyFinancingValue: segment.reduce((sum2, p) => sum2 + p.dailyFinancingValue, 0) / segment.length,
1468
- accruedFinancingValue: segment.reduce((sum2, p) => sum2 + p.accruedFinancingValue, 0) / segment.length,
1469
- twap: segment.reduce((sum2, p) => sum2 + p.twap, 0) / segment.length
1470
- };
1471
- result.push(aggregatedPoint);
1472
- }
1473
- result.push(priceHistory[priceHistory.length - 1]);
1474
- return result;
1475
- };
1476
304
  var createGetStockGraphHandler = (marketDataPrices) => {
1477
305
  return async (args) => {
1478
306
  try {
@@ -1489,19 +317,14 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1489
317
  ]
1490
318
  };
1491
319
  }
1492
- const aggregatedData = aggregateMarketData(priceHistory, 500);
1493
320
  const chart = new QuickChart();
1494
- chart.setWidth(1200);
1495
- chart.setHeight(600);
1496
- chart.setBackgroundColor("transparent");
1497
- const labels = aggregatedData.map((point) => new Date(point.timestamp).toLocaleTimeString());
1498
- const bidData = aggregatedData.map((point) => point.bid);
1499
- const offerData = aggregatedData.map((point) => point.offer);
1500
- const spreadData = aggregatedData.map((point) => point.spread);
1501
- const volumeData = aggregatedData.map((point) => point.volume);
1502
- const tradeData = aggregatedData.map((point) => point.trade);
1503
- const vwapData = aggregatedData.map((point) => point.vwap);
1504
- const twapData = aggregatedData.map((point) => point.twap);
321
+ chart.setWidth(600);
322
+ chart.setHeight(300);
323
+ const labels = priceHistory.map((point) => new Date(point.timestamp).toLocaleTimeString());
324
+ const bidData = priceHistory.map((point) => point.bid);
325
+ const offerData = priceHistory.map((point) => point.offer);
326
+ const spreadData = priceHistory.map((point) => point.spread);
327
+ const volumeData = priceHistory.map((point) => point.volume);
1505
328
  const config = {
1506
329
  type: "line",
1507
330
  data: {
@@ -1513,8 +336,7 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1513
336
  borderColor: "#28a745",
1514
337
  backgroundColor: "rgba(40, 167, 69, 0.1)",
1515
338
  fill: false,
1516
- tension: 0.4,
1517
- yAxisID: "y"
339
+ tension: 0.4
1518
340
  },
1519
341
  {
1520
342
  label: "Offer",
@@ -1522,8 +344,7 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1522
344
  borderColor: "#dc3545",
1523
345
  backgroundColor: "rgba(220, 53, 69, 0.1)",
1524
346
  fill: false,
1525
- tension: 0.4,
1526
- yAxisID: "y"
347
+ tension: 0.4
1527
348
  },
1528
349
  {
1529
350
  label: "Spread",
@@ -1531,35 +352,7 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1531
352
  borderColor: "#6c757d",
1532
353
  backgroundColor: "rgba(108, 117, 125, 0.1)",
1533
354
  fill: false,
1534
- tension: 0.4,
1535
- yAxisID: "y"
1536
- },
1537
- {
1538
- label: "Trade",
1539
- data: tradeData,
1540
- borderColor: "#ffc107",
1541
- backgroundColor: "rgba(255, 193, 7, 0.1)",
1542
- fill: false,
1543
- tension: 0.4,
1544
- yAxisID: "y"
1545
- },
1546
- {
1547
- label: "VWAP",
1548
- data: vwapData,
1549
- borderColor: "#17a2b8",
1550
- backgroundColor: "rgba(23, 162, 184, 0.1)",
1551
- fill: false,
1552
- tension: 0.4,
1553
- yAxisID: "y"
1554
- },
1555
- {
1556
- label: "TWAP",
1557
- data: twapData,
1558
- borderColor: "#6610f2",
1559
- backgroundColor: "rgba(102, 16, 242, 0.1)",
1560
- fill: false,
1561
- tension: 0.4,
1562
- yAxisID: "y"
355
+ tension: 0.4
1563
356
  },
1564
357
  {
1565
358
  label: "Volume",
@@ -1567,8 +360,7 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1567
360
  borderColor: "#007bff",
1568
361
  backgroundColor: "rgba(0, 123, 255, 0.1)",
1569
362
  fill: true,
1570
- tension: 0.4,
1571
- yAxisID: "y1"
363
+ tension: 0.4
1572
364
  }
1573
365
  ]
1574
366
  },
@@ -1582,42 +374,21 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1582
374
  },
1583
375
  scales: {
1584
376
  y: {
1585
- type: "linear",
1586
- display: true,
1587
- position: "left",
1588
- beginAtZero: false,
1589
- title: {
1590
- display: true,
1591
- text: "Price"
1592
- }
1593
- },
1594
- y1: {
1595
- type: "linear",
1596
- display: true,
1597
- position: "right",
1598
- beginAtZero: false,
1599
- title: {
1600
- display: true,
1601
- text: "Volume"
1602
- },
1603
- grid: {
1604
- drawOnChartArea: false
1605
- }
377
+ beginAtZero: false
1606
378
  }
1607
379
  }
1608
380
  }
1609
381
  };
1610
382
  chart.setConfig(config);
1611
383
  const imageBuffer = await chart.toBinary();
1612
- const base64 = imageBuffer.toString("base64");
384
+ const base64Image = imageBuffer.toString("base64");
1613
385
  return {
1614
386
  content: [
1615
387
  {
1616
- type: "resource",
1617
- resource: {
1618
- uri: "resource://graph",
1619
- mimeType: "image/png",
1620
- blob: base64
388
+ type: "image",
389
+ source: {
390
+ filename: "graph.png",
391
+ data: `data:image/png;base64,${base64Image}`
1621
392
  }
1622
393
  }
1623
394
  ]
@@ -1627,7 +398,7 @@ var createGetStockGraphHandler = (marketDataPrices) => {
1627
398
  content: [
1628
399
  {
1629
400
  type: "text",
1630
- text: `Error: ${error instanceof Error ? error.message : "Failed to generate graph"}`,
401
+ text: `Error: ${error instanceof Error ? error.message : "Failed to generate chart"}`,
1631
402
  uri: "getStockGraph"
1632
403
  }
1633
404
  ],
@@ -1665,48 +436,7 @@ var createGetStockPriceHistoryHandler = (marketDataPrices) => {
1665
436
  bid: point.bid,
1666
437
  offer: point.offer,
1667
438
  spread: point.spread,
1668
- volume: point.volume,
1669
- trade: point.trade,
1670
- indexValue: point.indexValue,
1671
- openingPrice: point.openingPrice,
1672
- closingPrice: point.closingPrice,
1673
- settlementPrice: point.settlementPrice,
1674
- tradingSessionHighPrice: point.tradingSessionHighPrice,
1675
- tradingSessionLowPrice: point.tradingSessionLowPrice,
1676
- vwap: point.vwap,
1677
- imbalance: point.imbalance,
1678
- openInterest: point.openInterest,
1679
- compositeUnderlyingPrice: point.compositeUnderlyingPrice,
1680
- simulatedSellPrice: point.simulatedSellPrice,
1681
- simulatedBuyPrice: point.simulatedBuyPrice,
1682
- marginRate: point.marginRate,
1683
- midPrice: point.midPrice,
1684
- emptyBook: point.emptyBook,
1685
- settleHighPrice: point.settleHighPrice,
1686
- settleLowPrice: point.settleLowPrice,
1687
- priorSettlePrice: point.priorSettlePrice,
1688
- sessionHighBid: point.sessionHighBid,
1689
- sessionLowOffer: point.sessionLowOffer,
1690
- earlyPrices: point.earlyPrices,
1691
- auctionClearingPrice: point.auctionClearingPrice,
1692
- swapValueFactor: point.swapValueFactor,
1693
- dailyValueAdjustmentForLongPositions: point.dailyValueAdjustmentForLongPositions,
1694
- cumulativeValueAdjustmentForLongPositions: point.cumulativeValueAdjustmentForLongPositions,
1695
- dailyValueAdjustmentForShortPositions: point.dailyValueAdjustmentForShortPositions,
1696
- cumulativeValueAdjustmentForShortPositions: point.cumulativeValueAdjustmentForShortPositions,
1697
- fixingPrice: point.fixingPrice,
1698
- cashRate: point.cashRate,
1699
- recoveryRate: point.recoveryRate,
1700
- recoveryRateForLong: point.recoveryRateForLong,
1701
- recoveryRateForShort: point.recoveryRateForShort,
1702
- marketBid: point.marketBid,
1703
- marketOffer: point.marketOffer,
1704
- shortSaleMinPrice: point.shortSaleMinPrice,
1705
- previousClosingPrice: point.previousClosingPrice,
1706
- thresholdLimitPriceBanding: point.thresholdLimitPriceBanding,
1707
- dailyFinancingValue: point.dailyFinancingValue,
1708
- accruedFinancingValue: point.accruedFinancingValue,
1709
- twap: point.twap
439
+ volume: point.volume
1710
440
  }))
1711
441
  },
1712
442
  null,
@@ -1721,7 +451,7 @@ var createGetStockPriceHistoryHandler = (marketDataPrices) => {
1721
451
  content: [
1722
452
  {
1723
453
  type: "text",
1724
- text: `Error: ${error instanceof Error ? error.message : "Failed to get price history"}`,
454
+ text: `Error: ${error instanceof Error ? error.message : "Failed to get stock price history"}`,
1725
455
  uri: "getStockPriceHistory"
1726
456
  }
1727
457
  ],
@@ -1829,7 +559,7 @@ Parameters verified:
1829
559
  - Symbol: ${args.symbol}
1830
560
  - TimeInForce: ${args.timeInForce} (${timeInForceNames[args.timeInForce]})
1831
561
 
1832
- To execute this order, call the executeOrder tool with these exact same parameters. Important: The user has to explicitly confirm before executeOrder is called!`,
562
+ To execute this order, call the executeOrder tool with these exact same parameters.`,
1833
563
  uri: "verifyOrder"
1834
564
  }
1835
565
  ]
@@ -2025,259 +755,12 @@ var createToolHandlers = (parser, verifiedOrders, pendingRequests, marketDataPri
2025
755
  executeOrder: createExecuteOrderHandler(parser, verifiedOrders, pendingRequests),
2026
756
  marketDataRequest: createMarketDataRequestHandler(parser, pendingRequests),
2027
757
  getStockGraph: createGetStockGraphHandler(marketDataPrices),
2028
- getStockPriceHistory: createGetStockPriceHistoryHandler(marketDataPrices),
2029
- technicalAnalysis: createTechnicalAnalysisHandler(marketDataPrices)
758
+ getStockPriceHistory: createGetStockPriceHistoryHandler(marketDataPrices)
2030
759
  });
2031
760
 
2032
- // src/utils/messageHandler.ts
2033
- import { Fields as Fields3, MDEntryType as MDEntryType2, Messages as Messages3 } from "fixparser";
2034
- function getEnumValue(enumObj, name) {
2035
- return enumObj[name] || name;
2036
- }
2037
- function handleMessage(message, parser, pendingRequests, marketDataPrices, maxPriceHistory, onPriceUpdate) {
2038
- const msgType = message.messageType;
2039
- if (msgType === Messages3.MarketDataSnapshotFullRefresh || msgType === Messages3.MarketDataIncrementalRefresh) {
2040
- const symbol = message.getField(Fields3.Symbol)?.value;
2041
- const fixJson = message.toFIXJSON();
2042
- const entries = fixJson.Body?.NoMDEntries || [];
2043
- const data = {
2044
- timestamp: Date.now(),
2045
- bid: 0,
2046
- offer: 0,
2047
- spread: 0,
2048
- volume: 0,
2049
- trade: 0,
2050
- indexValue: 0,
2051
- openingPrice: 0,
2052
- closingPrice: 0,
2053
- settlementPrice: 0,
2054
- tradingSessionHighPrice: 0,
2055
- tradingSessionLowPrice: 0,
2056
- vwap: 0,
2057
- imbalance: 0,
2058
- openInterest: 0,
2059
- compositeUnderlyingPrice: 0,
2060
- simulatedSellPrice: 0,
2061
- simulatedBuyPrice: 0,
2062
- marginRate: 0,
2063
- midPrice: 0,
2064
- emptyBook: 0,
2065
- settleHighPrice: 0,
2066
- settleLowPrice: 0,
2067
- priorSettlePrice: 0,
2068
- sessionHighBid: 0,
2069
- sessionLowOffer: 0,
2070
- earlyPrices: 0,
2071
- auctionClearingPrice: 0,
2072
- swapValueFactor: 0,
2073
- dailyValueAdjustmentForLongPositions: 0,
2074
- cumulativeValueAdjustmentForLongPositions: 0,
2075
- dailyValueAdjustmentForShortPositions: 0,
2076
- cumulativeValueAdjustmentForShortPositions: 0,
2077
- fixingPrice: 0,
2078
- cashRate: 0,
2079
- recoveryRate: 0,
2080
- recoveryRateForLong: 0,
2081
- recoveryRateForShort: 0,
2082
- marketBid: 0,
2083
- marketOffer: 0,
2084
- shortSaleMinPrice: 0,
2085
- previousClosingPrice: 0,
2086
- thresholdLimitPriceBanding: 0,
2087
- dailyFinancingValue: 0,
2088
- accruedFinancingValue: 0,
2089
- twap: 0
2090
- };
2091
- for (const entry of entries) {
2092
- const entryType = entry.MDEntryType;
2093
- const price = entry.MDEntryPx ? Number.parseFloat(entry.MDEntryPx) : 0;
2094
- const size = entry.MDEntrySize ? Number.parseFloat(entry.MDEntrySize) : 0;
2095
- const enumValue = getEnumValue(MDEntryType2, entryType);
2096
- switch (enumValue) {
2097
- case MDEntryType2.Bid:
2098
- data.bid = price;
2099
- break;
2100
- case MDEntryType2.Offer:
2101
- data.offer = price;
2102
- break;
2103
- case MDEntryType2.Trade:
2104
- data.trade = price;
2105
- break;
2106
- case MDEntryType2.IndexValue:
2107
- data.indexValue = price;
2108
- break;
2109
- case MDEntryType2.OpeningPrice:
2110
- data.openingPrice = price;
2111
- break;
2112
- case MDEntryType2.ClosingPrice:
2113
- data.closingPrice = price;
2114
- break;
2115
- case MDEntryType2.SettlementPrice:
2116
- data.settlementPrice = price;
2117
- break;
2118
- case MDEntryType2.TradingSessionHighPrice:
2119
- data.tradingSessionHighPrice = price;
2120
- break;
2121
- case MDEntryType2.TradingSessionLowPrice:
2122
- data.tradingSessionLowPrice = price;
2123
- break;
2124
- case MDEntryType2.VWAP:
2125
- data.vwap = price;
2126
- break;
2127
- case MDEntryType2.Imbalance:
2128
- data.imbalance = size;
2129
- break;
2130
- case MDEntryType2.TradeVolume:
2131
- data.volume = size;
2132
- break;
2133
- case MDEntryType2.OpenInterest:
2134
- data.openInterest = size;
2135
- break;
2136
- case MDEntryType2.CompositeUnderlyingPrice:
2137
- data.compositeUnderlyingPrice = price;
2138
- break;
2139
- case MDEntryType2.SimulatedSellPrice:
2140
- data.simulatedSellPrice = price;
2141
- break;
2142
- case MDEntryType2.SimulatedBuyPrice:
2143
- data.simulatedBuyPrice = price;
2144
- break;
2145
- case MDEntryType2.MarginRate:
2146
- data.marginRate = price;
2147
- break;
2148
- case MDEntryType2.MidPrice:
2149
- data.midPrice = price;
2150
- break;
2151
- case MDEntryType2.EmptyBook:
2152
- data.emptyBook = 1;
2153
- break;
2154
- case MDEntryType2.SettleHighPrice:
2155
- data.settleHighPrice = price;
2156
- break;
2157
- case MDEntryType2.SettleLowPrice:
2158
- data.settleLowPrice = price;
2159
- break;
2160
- case MDEntryType2.PriorSettlePrice:
2161
- data.priorSettlePrice = price;
2162
- break;
2163
- case MDEntryType2.SessionHighBid:
2164
- data.sessionHighBid = price;
2165
- break;
2166
- case MDEntryType2.SessionLowOffer:
2167
- data.sessionLowOffer = price;
2168
- break;
2169
- case MDEntryType2.EarlyPrices:
2170
- data.earlyPrices = price;
2171
- break;
2172
- case MDEntryType2.AuctionClearingPrice:
2173
- data.auctionClearingPrice = price;
2174
- break;
2175
- case MDEntryType2.SwapValueFactor:
2176
- data.swapValueFactor = price;
2177
- break;
2178
- case MDEntryType2.DailyValueAdjustmentForLongPositions:
2179
- data.dailyValueAdjustmentForLongPositions = price;
2180
- break;
2181
- case MDEntryType2.CumulativeValueAdjustmentForLongPositions:
2182
- data.cumulativeValueAdjustmentForLongPositions = price;
2183
- break;
2184
- case MDEntryType2.DailyValueAdjustmentForShortPositions:
2185
- data.dailyValueAdjustmentForShortPositions = price;
2186
- break;
2187
- case MDEntryType2.CumulativeValueAdjustmentForShortPositions:
2188
- data.cumulativeValueAdjustmentForShortPositions = price;
2189
- break;
2190
- case MDEntryType2.FixingPrice:
2191
- data.fixingPrice = price;
2192
- break;
2193
- case MDEntryType2.CashRate:
2194
- data.cashRate = price;
2195
- break;
2196
- case MDEntryType2.RecoveryRate:
2197
- data.recoveryRate = price;
2198
- break;
2199
- case MDEntryType2.RecoveryRateForLong:
2200
- data.recoveryRateForLong = price;
2201
- break;
2202
- case MDEntryType2.RecoveryRateForShort:
2203
- data.recoveryRateForShort = price;
2204
- break;
2205
- case MDEntryType2.MarketBid:
2206
- data.marketBid = price;
2207
- break;
2208
- case MDEntryType2.MarketOffer:
2209
- data.marketOffer = price;
2210
- break;
2211
- case MDEntryType2.ShortSaleMinPrice:
2212
- data.shortSaleMinPrice = price;
2213
- break;
2214
- case MDEntryType2.PreviousClosingPrice:
2215
- data.previousClosingPrice = price;
2216
- break;
2217
- case MDEntryType2.ThresholdLimitPriceBanding:
2218
- data.thresholdLimitPriceBanding = price;
2219
- break;
2220
- case MDEntryType2.DailyFinancingValue:
2221
- data.dailyFinancingValue = price;
2222
- break;
2223
- case MDEntryType2.AccruedFinancingValue:
2224
- data.accruedFinancingValue = price;
2225
- break;
2226
- case MDEntryType2.TWAP:
2227
- data.twap = price;
2228
- break;
2229
- }
2230
- }
2231
- data.spread = data.offer - data.bid;
2232
- if (!marketDataPrices.has(symbol)) {
2233
- marketDataPrices.set(symbol, []);
2234
- }
2235
- const prices = marketDataPrices.get(symbol);
2236
- prices.push(data);
2237
- if (prices.length > maxPriceHistory) {
2238
- prices.splice(0, prices.length - maxPriceHistory);
2239
- }
2240
- onPriceUpdate?.(symbol, data);
2241
- const mdReqID = message.getField(Fields3.MDReqID)?.value;
2242
- if (mdReqID) {
2243
- const callback = pendingRequests.get(mdReqID);
2244
- if (callback) {
2245
- callback(message);
2246
- pendingRequests.delete(mdReqID);
2247
- }
2248
- }
2249
- } else if (msgType === Messages3.ExecutionReport) {
2250
- const reqId = message.getField(Fields3.ClOrdID)?.value;
2251
- const callback = pendingRequests.get(reqId);
2252
- if (callback) {
2253
- callback(message);
2254
- pendingRequests.delete(reqId);
2255
- }
2256
- }
2257
- }
2258
-
2259
761
  // src/MCPLocal.ts
2260
- var MCPLocal = class extends MCPBase {
2261
- /**
2262
- * Map to store verified orders before execution
2263
- * @private
2264
- */
2265
- verifiedOrders = /* @__PURE__ */ new Map();
2266
- /**
2267
- * Map to store pending requests and their callbacks
2268
- * @private
2269
- */
2270
- pendingRequests = /* @__PURE__ */ new Map();
2271
- /**
2272
- * Map to store market data prices for each symbol
2273
- * @private
2274
- */
2275
- marketDataPrices = /* @__PURE__ */ new Map();
2276
- /**
2277
- * Maximum number of price history entries to keep per symbol
2278
- * @private
2279
- */
2280
- MAX_PRICE_HISTORY = 1e5;
762
+ var MCPLocal = class {
763
+ parser;
2281
764
  server = new Server(
2282
765
  {
2283
766
  name: "fixparser",
@@ -2299,13 +782,90 @@ var MCPLocal = class extends MCPBase {
2299
782
  }
2300
783
  );
2301
784
  transport = new StdioServerTransport();
785
+ onReady = void 0;
786
+ pendingRequests = /* @__PURE__ */ new Map();
787
+ verifiedOrders = /* @__PURE__ */ new Map();
788
+ marketDataPrices = /* @__PURE__ */ new Map();
789
+ MAX_PRICE_HISTORY = 1e5;
790
+ // Maximum number of price points to store per symbol
2302
791
  constructor({ logger, onReady }) {
2303
- super({ logger, onReady });
792
+ if (onReady) this.onReady = onReady;
2304
793
  }
2305
794
  async register(parser) {
2306
795
  this.parser = parser;
2307
796
  this.parser.addOnMessageCallback((message) => {
2308
- handleMessage(message, this.parser, this.pendingRequests, this.marketDataPrices, this.MAX_PRICE_HISTORY);
797
+ this.parser?.logger.log({
798
+ level: "info",
799
+ message: `MCP Server received message: ${message.messageType}: ${message.description}`
800
+ });
801
+ const msgType = message.messageType;
802
+ if (msgType === Messages3.MarketDataSnapshotFullRefresh || msgType === Messages3.ExecutionReport || msgType === Messages3.Reject || msgType === Messages3.MarketDataIncrementalRefresh) {
803
+ this.parser?.logger.log({
804
+ level: "info",
805
+ message: `MCP Server handling message type: ${msgType}`
806
+ });
807
+ let id;
808
+ if (msgType === Messages3.MarketDataIncrementalRefresh || msgType === Messages3.MarketDataSnapshotFullRefresh) {
809
+ const symbol = message.getField(Fields3.Symbol);
810
+ const entryType = message.getField(Fields3.MDEntryType);
811
+ const price = message.getField(Fields3.MDEntryPx);
812
+ const size = message.getField(Fields3.MDEntrySize);
813
+ const timestamp = message.getField(Fields3.MDEntryTime)?.value || Date.now();
814
+ if (symbol?.value && price?.value) {
815
+ const symbolStr = String(symbol.value);
816
+ const priceNum = Number(price.value);
817
+ const sizeNum = size?.value ? Number(size.value) : 0;
818
+ const priceHistory = this.marketDataPrices.get(symbolStr) || [];
819
+ const lastEntry = priceHistory[priceHistory.length - 1] || {
820
+ timestamp: 0,
821
+ bid: 0,
822
+ offer: 0,
823
+ spread: 0,
824
+ volume: 0
825
+ };
826
+ const newEntry = {
827
+ timestamp: Number(timestamp),
828
+ bid: entryType?.value === MDEntryType2.Bid ? priceNum : lastEntry.bid,
829
+ offer: entryType?.value === MDEntryType2.Offer ? priceNum : lastEntry.offer,
830
+ spread: entryType?.value === MDEntryType2.Offer ? priceNum - lastEntry.bid : entryType?.value === MDEntryType2.Bid ? lastEntry.offer - priceNum : lastEntry.spread,
831
+ volume: entryType?.value === MDEntryType2.TradeVolume ? sizeNum : lastEntry.volume
832
+ };
833
+ priceHistory.push(newEntry);
834
+ if (priceHistory.length > this.MAX_PRICE_HISTORY) {
835
+ priceHistory.shift();
836
+ }
837
+ this.marketDataPrices.set(symbolStr, priceHistory);
838
+ this.parser?.logger.log({
839
+ level: "info",
840
+ message: `MCP Server added ${symbol}: ${JSON.stringify(newEntry)}`
841
+ });
842
+ this.server.notification({
843
+ method: "priceUpdate",
844
+ params: {
845
+ symbol: symbolStr,
846
+ ...newEntry
847
+ }
848
+ });
849
+ }
850
+ }
851
+ if (msgType === Messages3.MarketDataSnapshotFullRefresh) {
852
+ const mdReqID = message.getField(Fields3.MDReqID);
853
+ if (mdReqID) id = String(mdReqID.value);
854
+ } else if (msgType === Messages3.ExecutionReport) {
855
+ const clOrdID = message.getField(Fields3.ClOrdID);
856
+ if (clOrdID) id = String(clOrdID.value);
857
+ } else if (msgType === Messages3.Reject) {
858
+ const refSeqNum = message.getField(Fields3.RefSeqNum);
859
+ if (refSeqNum) id = String(refSeqNum.value);
860
+ }
861
+ if (id) {
862
+ const callback = this.pendingRequests.get(id);
863
+ if (callback) {
864
+ callback(message);
865
+ this.pendingRequests.delete(id);
866
+ }
867
+ }
868
+ }
2309
869
  });
2310
870
  this.addWorkflows();
2311
871
  await this.server.connect(this.transport);
@@ -2320,15 +880,18 @@ var MCPLocal = class extends MCPBase {
2320
880
  if (!this.server) {
2321
881
  return;
2322
882
  }
2323
- this.server.setRequestHandler(z.object({ method: z.literal("tools/list") }), async () => {
2324
- return {
2325
- tools: Object.entries(toolSchemas).map(([name, { description, schema }]) => ({
2326
- name,
2327
- description,
2328
- inputSchema: schema
2329
- }))
2330
- };
2331
- });
883
+ this.server.setRequestHandler(
884
+ z.object({ method: z.literal("tools/list") }),
885
+ async (request, extra) => {
886
+ return {
887
+ tools: Object.entries(toolSchemas).map(([name, { description, schema }]) => ({
888
+ name,
889
+ description,
890
+ inputSchema: schema
891
+ }))
892
+ };
893
+ }
894
+ );
2332
895
  this.server.setRequestHandler(
2333
896
  z.object({
2334
897
  method: z.literal("tools/call"),
@@ -2340,7 +903,7 @@ var MCPLocal = class extends MCPBase {
2340
903
  }).optional()
2341
904
  })
2342
905
  }),
2343
- async (request) => {
906
+ async (request, extra) => {
2344
907
  const { name, arguments: args } = request.params;
2345
908
  const toolHandlers = createToolHandlers(
2346
909
  this.parser,