fixparser-plugin-mcp 9.1.7-a9d84740 → 9.1.7-ad8cf02b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/MCPLocal.js +2290 -925
- package/build/cjs/MCPLocal.js.map +4 -4
- package/build/cjs/MCPRemote.js +2369 -436
- package/build/cjs/MCPRemote.js.map +4 -4
- package/build/cjs/index.js +2667 -0
- package/build/cjs/index.js.map +7 -0
- package/build/esm/MCPLocal.mjs +2280 -925
- package/build/esm/MCPLocal.mjs.map +4 -4
- package/build/esm/MCPRemote.mjs +2358 -444
- package/build/esm/MCPRemote.mjs.map +4 -4
- package/build/esm/index.mjs +2629 -0
- package/build/esm/index.mjs.map +7 -0
- package/build-examples/cjs/example_mcp_local.js +14 -47
- package/build-examples/cjs/example_mcp_local.js.map +4 -4
- package/build-examples/cjs/example_mcp_remote.js +18 -0
- package/build-examples/cjs/example_mcp_remote.js.map +7 -0
- package/build-examples/esm/example_mcp_local.mjs +10 -43
- package/build-examples/esm/example_mcp_local.mjs.map +4 -4
- package/build-examples/esm/example_mcp_remote.mjs +18 -0
- package/build-examples/esm/example_mcp_remote.mjs.map +7 -0
- package/package.json +9 -8
- package/types/MCPLocal.d.ts +0 -16
- package/types/MCPRemote.d.ts +0 -60
- package/types/PluginOptions.d.ts +0 -6
- package/types/index.d.ts +0 -3
package/build/cjs/MCPLocal.js
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __create = Object.create;
|
|
2
3
|
var __defProp = Object.defineProperty;
|
|
3
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
5
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
5
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
8
|
var __export = (target, all) => {
|
|
7
9
|
for (var name in all)
|
|
@@ -15,6 +17,14 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
15
17
|
}
|
|
16
18
|
return to;
|
|
17
19
|
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
18
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
29
|
|
|
20
30
|
// src/MCPLocal.ts
|
|
@@ -25,642 +35,1804 @@ __export(MCPLocal_exports, {
|
|
|
25
35
|
module.exports = __toCommonJS(MCPLocal_exports);
|
|
26
36
|
var import_server = require("@modelcontextprotocol/sdk/server/index.js");
|
|
27
37
|
var import_stdio = require("@modelcontextprotocol/sdk/server/stdio.js");
|
|
28
|
-
var import_fixparser = require("fixparser");
|
|
29
38
|
var import_zod = require("zod");
|
|
30
|
-
|
|
39
|
+
|
|
40
|
+
// src/MCPBase.ts
|
|
41
|
+
var MCPBase = class {
|
|
42
|
+
/**
|
|
43
|
+
* Optional logger instance for diagnostics and output.
|
|
44
|
+
* @protected
|
|
45
|
+
*/
|
|
46
|
+
logger;
|
|
47
|
+
/**
|
|
48
|
+
* FIXParser instance, set during plugin register().
|
|
49
|
+
* @protected
|
|
50
|
+
*/
|
|
31
51
|
parser;
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
},
|
|
37
|
-
{
|
|
38
|
-
capabilities: {
|
|
39
|
-
tools: {
|
|
40
|
-
parse: {
|
|
41
|
-
description: "Parses a FIX message and describes it in plain language",
|
|
42
|
-
parameters: {
|
|
43
|
-
type: "object",
|
|
44
|
-
properties: {
|
|
45
|
-
fixString: { type: "string" }
|
|
46
|
-
},
|
|
47
|
-
required: ["fixString"]
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
parseToJSON: {
|
|
51
|
-
description: "Parses a FIX message into JSON",
|
|
52
|
-
parameters: {
|
|
53
|
-
type: "object",
|
|
54
|
-
properties: {
|
|
55
|
-
fixString: { type: "string" }
|
|
56
|
-
},
|
|
57
|
-
required: ["fixString"]
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
verifyOrder: {
|
|
61
|
-
description: "Verifies order parameters before execution",
|
|
62
|
-
parameters: {
|
|
63
|
-
type: "object",
|
|
64
|
-
properties: {
|
|
65
|
-
clOrdID: { type: "string" },
|
|
66
|
-
handlInst: { type: "string", enum: ["1", "2", "3"] },
|
|
67
|
-
quantity: { type: "string" },
|
|
68
|
-
price: { type: "string" },
|
|
69
|
-
ordType: {
|
|
70
|
-
type: "string",
|
|
71
|
-
enum: [
|
|
72
|
-
"1",
|
|
73
|
-
"2",
|
|
74
|
-
"3",
|
|
75
|
-
"4",
|
|
76
|
-
"5",
|
|
77
|
-
"6",
|
|
78
|
-
"7",
|
|
79
|
-
"8",
|
|
80
|
-
"9",
|
|
81
|
-
"A",
|
|
82
|
-
"B",
|
|
83
|
-
"C",
|
|
84
|
-
"D",
|
|
85
|
-
"E",
|
|
86
|
-
"F",
|
|
87
|
-
"G",
|
|
88
|
-
"H",
|
|
89
|
-
"I",
|
|
90
|
-
"J",
|
|
91
|
-
"K",
|
|
92
|
-
"L",
|
|
93
|
-
"M",
|
|
94
|
-
"P",
|
|
95
|
-
"Q",
|
|
96
|
-
"R",
|
|
97
|
-
"S"
|
|
98
|
-
]
|
|
99
|
-
},
|
|
100
|
-
side: {
|
|
101
|
-
type: "string",
|
|
102
|
-
enum: [
|
|
103
|
-
"1",
|
|
104
|
-
"2",
|
|
105
|
-
"3",
|
|
106
|
-
"4",
|
|
107
|
-
"5",
|
|
108
|
-
"6",
|
|
109
|
-
"7",
|
|
110
|
-
"8",
|
|
111
|
-
"9",
|
|
112
|
-
"A",
|
|
113
|
-
"B",
|
|
114
|
-
"C",
|
|
115
|
-
"D",
|
|
116
|
-
"E",
|
|
117
|
-
"F",
|
|
118
|
-
"G",
|
|
119
|
-
"H"
|
|
120
|
-
]
|
|
121
|
-
},
|
|
122
|
-
symbol: { type: "string" },
|
|
123
|
-
timeInForce: {
|
|
124
|
-
type: "string",
|
|
125
|
-
enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"]
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
|
-
required: [
|
|
129
|
-
"clOrdID",
|
|
130
|
-
"handlInst",
|
|
131
|
-
"quantity",
|
|
132
|
-
"price",
|
|
133
|
-
"ordType",
|
|
134
|
-
"side",
|
|
135
|
-
"symbol",
|
|
136
|
-
"timeInForce"
|
|
137
|
-
]
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
executeOrder: {
|
|
141
|
-
description: "Executes a verified order",
|
|
142
|
-
parameters: {
|
|
143
|
-
type: "object",
|
|
144
|
-
properties: {
|
|
145
|
-
clOrdID: { type: "string" },
|
|
146
|
-
handlInst: { type: "string", enum: ["1", "2", "3"] },
|
|
147
|
-
quantity: { type: "string" },
|
|
148
|
-
price: { type: "string" },
|
|
149
|
-
ordType: { type: "string" },
|
|
150
|
-
side: { type: "string" },
|
|
151
|
-
symbol: { type: "string" },
|
|
152
|
-
timeInForce: { type: "string" }
|
|
153
|
-
},
|
|
154
|
-
required: [
|
|
155
|
-
"clOrdID",
|
|
156
|
-
"handlInst",
|
|
157
|
-
"quantity",
|
|
158
|
-
"price",
|
|
159
|
-
"ordType",
|
|
160
|
-
"side",
|
|
161
|
-
"symbol",
|
|
162
|
-
"timeInForce"
|
|
163
|
-
]
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
marketDataRequest: {
|
|
167
|
-
description: "Requests market data for specified symbols",
|
|
168
|
-
parameters: {
|
|
169
|
-
type: "object",
|
|
170
|
-
properties: {
|
|
171
|
-
mdUpdateType: { type: "string", enum: ["0", "1"] },
|
|
172
|
-
symbols: { type: "array", items: { type: "string" } },
|
|
173
|
-
mdReqID: { type: "string" },
|
|
174
|
-
subscriptionRequestType: { type: "string", enum: ["0", "1", "2"] },
|
|
175
|
-
mdEntryTypes: { type: "array", items: { type: "string" } }
|
|
176
|
-
},
|
|
177
|
-
required: ["mdUpdateType", "symbols", "mdReqID", "subscriptionRequestType", "mdEntryTypes"]
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
},
|
|
181
|
-
resources: {
|
|
182
|
-
greeting: {
|
|
183
|
-
description: "A simple greeting resource",
|
|
184
|
-
uri: "greeting-resource"
|
|
185
|
-
},
|
|
186
|
-
stockGraph: {
|
|
187
|
-
description: "Generates a price chart for a given symbol",
|
|
188
|
-
uri: "stockGraph/{symbol}"
|
|
189
|
-
},
|
|
190
|
-
stockPriceHistory: {
|
|
191
|
-
description: "Returns price history for a given symbol",
|
|
192
|
-
uri: "stockPriceHistory/{symbol}"
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
);
|
|
198
|
-
transport = new import_stdio.StdioServerTransport();
|
|
52
|
+
/**
|
|
53
|
+
* Called when server is setup and listening.
|
|
54
|
+
* @protected
|
|
55
|
+
*/
|
|
199
56
|
onReady = void 0;
|
|
200
|
-
|
|
57
|
+
/**
|
|
58
|
+
* Map to store verified orders before execution
|
|
59
|
+
* @protected
|
|
60
|
+
*/
|
|
201
61
|
verifiedOrders = /* @__PURE__ */ new Map();
|
|
202
|
-
|
|
62
|
+
/**
|
|
63
|
+
* Map to store pending market data requests
|
|
64
|
+
* @protected
|
|
65
|
+
*/
|
|
66
|
+
pendingRequests = /* @__PURE__ */ new Map();
|
|
67
|
+
/**
|
|
68
|
+
* Map to store market data prices
|
|
69
|
+
* @protected
|
|
70
|
+
*/
|
|
203
71
|
marketDataPrices = /* @__PURE__ */ new Map();
|
|
72
|
+
/**
|
|
73
|
+
* Maximum number of price history entries to keep per symbol
|
|
74
|
+
* @protected
|
|
75
|
+
*/
|
|
204
76
|
MAX_PRICE_HISTORY = 1e5;
|
|
205
|
-
// Maximum number of price points to store per symbol
|
|
206
77
|
constructor({ logger, onReady }) {
|
|
207
|
-
|
|
78
|
+
this.logger = logger;
|
|
79
|
+
this.onReady = onReady;
|
|
208
80
|
}
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
// src/schemas/schemas.ts
|
|
84
|
+
var toolSchemas = {
|
|
85
|
+
parse: {
|
|
86
|
+
description: "Parses a FIX message and describes it in plain language",
|
|
87
|
+
schema: {
|
|
88
|
+
type: "object",
|
|
89
|
+
properties: {
|
|
90
|
+
fixString: { type: "string" }
|
|
91
|
+
},
|
|
92
|
+
required: ["fixString"]
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
parseToJSON: {
|
|
96
|
+
description: "Parses a FIX message into JSON",
|
|
97
|
+
schema: {
|
|
98
|
+
type: "object",
|
|
99
|
+
properties: {
|
|
100
|
+
fixString: { type: "string" }
|
|
101
|
+
},
|
|
102
|
+
required: ["fixString"]
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
verifyOrder: {
|
|
106
|
+
description: "Verifies order parameters before execution. verifyOrder must be called before executeOrder.",
|
|
107
|
+
schema: {
|
|
108
|
+
type: "object",
|
|
109
|
+
properties: {
|
|
110
|
+
clOrdID: { type: "string" },
|
|
111
|
+
handlInst: {
|
|
112
|
+
type: "string",
|
|
113
|
+
enum: ["1", "2", "3"],
|
|
114
|
+
description: "Handling Instructions: 1=Automated Execution No Intervention, 2=Automated Execution Intervention OK, 3=Manual Order"
|
|
115
|
+
},
|
|
116
|
+
quantity: { type: "string" },
|
|
117
|
+
price: { type: "string" },
|
|
118
|
+
ordType: {
|
|
119
|
+
type: "string",
|
|
120
|
+
enum: [
|
|
121
|
+
"1",
|
|
122
|
+
"2",
|
|
123
|
+
"3",
|
|
124
|
+
"4",
|
|
125
|
+
"5",
|
|
126
|
+
"6",
|
|
127
|
+
"7",
|
|
128
|
+
"8",
|
|
129
|
+
"9",
|
|
130
|
+
"A",
|
|
131
|
+
"B",
|
|
132
|
+
"C",
|
|
133
|
+
"D",
|
|
134
|
+
"E",
|
|
135
|
+
"F",
|
|
136
|
+
"G",
|
|
137
|
+
"H",
|
|
138
|
+
"I",
|
|
139
|
+
"J",
|
|
140
|
+
"K",
|
|
141
|
+
"L",
|
|
142
|
+
"M",
|
|
143
|
+
"P",
|
|
144
|
+
"Q",
|
|
145
|
+
"R",
|
|
146
|
+
"S"
|
|
147
|
+
],
|
|
148
|
+
description: "Order Type: 1=Market, 2=Limit, 3=Stop, 4=StopLimit, 5=MarketOnClose, 6=WithOrWithout, 7=LimitOrBetter, 8=LimitWithOrWithout, 9=OnBasis, A=OnClose, B=LimitOnClose, C=ForexMarket, D=PreviouslyQuoted, E=PreviouslyIndicated, F=ForexLimit, G=ForexSwap, H=ForexPreviouslyQuoted, I=Funari, J=MarketIfTouched, K=MarketWithLeftOverAsLimit, L=PreviousFundValuationPoint, M=NextFundValuationPoint, P=Pegged, Q=CounterOrderSelection, R=StopOnBidOrOffer, S=StopLimitOnBidOrOffer"
|
|
149
|
+
},
|
|
150
|
+
side: {
|
|
151
|
+
type: "string",
|
|
152
|
+
enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H"],
|
|
153
|
+
description: "Side: 1=Buy, 2=Sell, 3=BuyMinus, 4=SellPlus, 5=SellShort, 6=SellShortExempt, 7=Undisclosed, 8=Cross, 9=CrossShort, A=CrossShortExempt, B=AsDefined, C=Opposite, D=Subscribe, E=Redeem, F=Lend, G=Borrow, H=SellUndisclosed"
|
|
154
|
+
},
|
|
155
|
+
symbol: { type: "string" },
|
|
156
|
+
timeInForce: {
|
|
157
|
+
type: "string",
|
|
158
|
+
enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"],
|
|
159
|
+
description: "Time In Force: 0=Day, 1=GoodTillCancel, 2=AtTheOpening, 3=ImmediateOrCancel, 4=FillOrKill, 5=GoodTillCrossing, 6=GoodTillDate, 7=AtTheClose, 8=GoodThroughCrossing, 9=AtCrossing, A=GoodForTime, B=GoodForAuction, C=GoodForMonth"
|
|
252
160
|
}
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
161
|
+
},
|
|
162
|
+
required: ["clOrdID", "handlInst", "quantity", "price", "ordType", "side", "symbol", "timeInForce"]
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
executeOrder: {
|
|
166
|
+
description: "Executes a verified order. verifyOrder must be called before executeOrder.",
|
|
167
|
+
schema: {
|
|
168
|
+
type: "object",
|
|
169
|
+
properties: {
|
|
170
|
+
clOrdID: { type: "string" },
|
|
171
|
+
handlInst: {
|
|
172
|
+
type: "string",
|
|
173
|
+
enum: ["1", "2", "3"],
|
|
174
|
+
description: "Handling Instructions: 1=Automated Execution No Intervention, 2=Automated Execution Intervention OK, 3=Manual Order"
|
|
175
|
+
},
|
|
176
|
+
quantity: { type: "string" },
|
|
177
|
+
price: { type: "string" },
|
|
178
|
+
ordType: {
|
|
179
|
+
type: "string",
|
|
180
|
+
enum: [
|
|
181
|
+
"1",
|
|
182
|
+
"2",
|
|
183
|
+
"3",
|
|
184
|
+
"4",
|
|
185
|
+
"5",
|
|
186
|
+
"6",
|
|
187
|
+
"7",
|
|
188
|
+
"8",
|
|
189
|
+
"9",
|
|
190
|
+
"A",
|
|
191
|
+
"B",
|
|
192
|
+
"C",
|
|
193
|
+
"D",
|
|
194
|
+
"E",
|
|
195
|
+
"F",
|
|
196
|
+
"G",
|
|
197
|
+
"H",
|
|
198
|
+
"I",
|
|
199
|
+
"J",
|
|
200
|
+
"K",
|
|
201
|
+
"L",
|
|
202
|
+
"M",
|
|
203
|
+
"P",
|
|
204
|
+
"Q",
|
|
205
|
+
"R",
|
|
206
|
+
"S"
|
|
207
|
+
],
|
|
208
|
+
description: "Order Type: 1=Market, 2=Limit, 3=Stop, 4=StopLimit, 5=MarketOnClose, 6=WithOrWithout, 7=LimitOrBetter, 8=LimitWithOrWithout, 9=OnBasis, A=OnClose, B=LimitOnClose, C=ForexMarket, D=PreviouslyQuoted, E=PreviouslyIndicated, F=ForexLimit, G=ForexSwap, H=ForexPreviouslyQuoted, I=Funari, J=MarketIfTouched, K=MarketWithLeftOverAsLimit, L=PreviousFundValuationPoint, M=NextFundValuationPoint, P=Pegged, Q=CounterOrderSelection, R=StopOnBidOrOffer, S=StopLimitOnBidOrOffer"
|
|
209
|
+
},
|
|
210
|
+
side: {
|
|
211
|
+
type: "string",
|
|
212
|
+
enum: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D", "E", "F", "G", "H"],
|
|
213
|
+
description: "Side: 1=Buy, 2=Sell, 3=BuyMinus, 4=SellPlus, 5=SellShort, 6=SellShortExempt, 7=Undisclosed, 8=Cross, 9=CrossShort, A=CrossShortExempt, B=AsDefined, C=Opposite, D=Subscribe, E=Redeem, F=Lend, G=Borrow, H=SellUndisclosed"
|
|
214
|
+
},
|
|
215
|
+
symbol: { type: "string" },
|
|
216
|
+
timeInForce: {
|
|
217
|
+
type: "string",
|
|
218
|
+
enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"],
|
|
219
|
+
description: "Time In Force: 0=Day, 1=GoodTillCancel, 2=AtTheOpening, 3=ImmediateOrCancel, 4=FillOrKill, 5=GoodTillCrossing, 6=GoodTillDate, 7=AtTheClose, 8=GoodThroughCrossing, 9=AtCrossing, A=GoodForTime, B=GoodForAuction, C=GoodForMonth"
|
|
262
220
|
}
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
221
|
+
},
|
|
222
|
+
required: ["clOrdID", "handlInst", "quantity", "price", "ordType", "side", "symbol", "timeInForce"]
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
marketDataRequest: {
|
|
226
|
+
description: "Requests market data for specified symbols",
|
|
227
|
+
schema: {
|
|
228
|
+
type: "object",
|
|
229
|
+
properties: {
|
|
230
|
+
mdUpdateType: {
|
|
231
|
+
type: "string",
|
|
232
|
+
enum: ["0", "1"],
|
|
233
|
+
description: "Market Data Update Type: 0=Full Refresh, 1=Incremental Refresh"
|
|
234
|
+
},
|
|
235
|
+
symbols: { type: "array", items: { type: "string" } },
|
|
236
|
+
mdReqID: { type: "string" },
|
|
237
|
+
subscriptionRequestType: {
|
|
238
|
+
type: "string",
|
|
239
|
+
enum: ["0", "1", "2"],
|
|
240
|
+
description: "Subscription Request Type: 0=Snapshot, 1=Snapshot + Updates, 2=Disable Previous Snapshot + Update Request"
|
|
241
|
+
},
|
|
242
|
+
mdEntryTypes: {
|
|
243
|
+
type: "array",
|
|
244
|
+
items: {
|
|
245
|
+
type: "string",
|
|
246
|
+
enum: [
|
|
247
|
+
"0",
|
|
248
|
+
"1",
|
|
249
|
+
"2",
|
|
250
|
+
"3",
|
|
251
|
+
"4",
|
|
252
|
+
"5",
|
|
253
|
+
"6",
|
|
254
|
+
"7",
|
|
255
|
+
"8",
|
|
256
|
+
"9",
|
|
257
|
+
"A",
|
|
258
|
+
"B",
|
|
259
|
+
"C",
|
|
260
|
+
"D",
|
|
261
|
+
"E",
|
|
262
|
+
"F",
|
|
263
|
+
"G",
|
|
264
|
+
"H",
|
|
265
|
+
"I",
|
|
266
|
+
"J",
|
|
267
|
+
"K",
|
|
268
|
+
"L",
|
|
269
|
+
"M",
|
|
270
|
+
"N",
|
|
271
|
+
"O",
|
|
272
|
+
"P",
|
|
273
|
+
"Q",
|
|
274
|
+
"R",
|
|
275
|
+
"S",
|
|
276
|
+
"T",
|
|
277
|
+
"U",
|
|
278
|
+
"V",
|
|
279
|
+
"W",
|
|
280
|
+
"X",
|
|
281
|
+
"Y",
|
|
282
|
+
"Z"
|
|
283
|
+
]
|
|
284
|
+
},
|
|
285
|
+
description: "Market Data Entry Types: 0=Bid, 1=Offer, 2=Trade, 3=Index Value, 4=Opening Price, 5=Closing Price, 6=Settlement Price, 7=High Price, 8=Low Price, 9=Trade Volume, A=Open Interest, B=Simulated Sell Price, C=Simulated Buy Price, D=Empty Book, E=Session High Bid, F=Session Low Offer, G=Fixing Price, H=Electronic Volume, I=Threshold Limits and Price Band Variation, J=Clearing Price, K=Open Interest Change, L=Last Trade Price, M=Last Trade Volume, N=Last Trade Time, O=Last Trade Tick, P=Last Trade Exchange, Q=Last Trade ID, R=Last Trade Side, S=Last Trade Price Change, T=Last Trade Price Change Percent, U=Last Trade Price Change Basis Points, V=Last Trade Price Change Points, W=Last Trade Price Change Ticks, X=Last Trade Price Change Ticks Percent, Y=Last Trade Price Change Ticks Basis Points, Z=Last Trade Price Change Ticks Points"
|
|
269
286
|
}
|
|
287
|
+
},
|
|
288
|
+
required: ["mdUpdateType", "symbols", "mdReqID", "subscriptionRequestType"]
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
getStockGraph: {
|
|
292
|
+
description: "Generates a price chart for a given symbol",
|
|
293
|
+
schema: {
|
|
294
|
+
type: "object",
|
|
295
|
+
properties: {
|
|
296
|
+
symbol: { type: "string" }
|
|
297
|
+
},
|
|
298
|
+
required: ["symbol"]
|
|
299
|
+
}
|
|
300
|
+
},
|
|
301
|
+
getStockPriceHistory: {
|
|
302
|
+
description: "Returns price history for a given symbol",
|
|
303
|
+
schema: {
|
|
304
|
+
type: "object",
|
|
305
|
+
properties: {
|
|
306
|
+
symbol: { type: "string" }
|
|
307
|
+
},
|
|
308
|
+
required: ["symbol"]
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
technicalAnalysis: {
|
|
312
|
+
description: "Performs comprehensive technical analysis on market data for a given symbol, including indicators like SMA, EMA, RSI, Bollinger Bands, and trading signals",
|
|
313
|
+
schema: {
|
|
314
|
+
type: "object",
|
|
315
|
+
properties: {
|
|
316
|
+
symbol: {
|
|
317
|
+
type: "string",
|
|
318
|
+
description: "The trading symbol to analyze (e.g., AAPL, MSFT, EURUSD)"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
required: ["symbol"]
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
};
|
|
325
|
+
|
|
326
|
+
// src/tools/analytics.ts
|
|
327
|
+
function sum(numbers) {
|
|
328
|
+
return numbers.reduce((acc, val) => acc + val, 0);
|
|
329
|
+
}
|
|
330
|
+
var TechnicalAnalyzer = class {
|
|
331
|
+
prices;
|
|
332
|
+
volumes;
|
|
333
|
+
highs;
|
|
334
|
+
lows;
|
|
335
|
+
constructor(data) {
|
|
336
|
+
this.prices = data.map((d) => d.trade > 0 ? d.trade : d.midPrice);
|
|
337
|
+
this.volumes = data.map((d) => d.volume);
|
|
338
|
+
this.highs = data.map((d) => d.tradingSessionHighPrice > 0 ? d.tradingSessionHighPrice : d.trade);
|
|
339
|
+
this.lows = data.map((d) => d.tradingSessionLowPrice > 0 ? d.tradingSessionLowPrice : d.trade);
|
|
340
|
+
}
|
|
341
|
+
// Calculate Simple Moving Average
|
|
342
|
+
calculateSMA(data, period) {
|
|
343
|
+
const sma = [];
|
|
344
|
+
for (let i = period - 1; i < data.length; i++) {
|
|
345
|
+
const sum2 = data.slice(i - period + 1, i + 1).reduce((a, b) => a + b, 0);
|
|
346
|
+
sma.push(sum2 / period);
|
|
347
|
+
}
|
|
348
|
+
return sma;
|
|
349
|
+
}
|
|
350
|
+
// Calculate Exponential Moving Average
|
|
351
|
+
calculateEMA(data, period) {
|
|
352
|
+
const multiplier = 2 / (period + 1);
|
|
353
|
+
const ema = [data[0]];
|
|
354
|
+
for (let i = 1; i < data.length; i++) {
|
|
355
|
+
ema.push(data[i] * multiplier + ema[i - 1] * (1 - multiplier));
|
|
356
|
+
}
|
|
357
|
+
return ema;
|
|
358
|
+
}
|
|
359
|
+
// Calculate RSI
|
|
360
|
+
calculateRSI(data, period = 14) {
|
|
361
|
+
if (data.length < period + 1) return [];
|
|
362
|
+
const changes = [];
|
|
363
|
+
for (let i = 1; i < data.length; i++) {
|
|
364
|
+
changes.push(data[i] - data[i - 1]);
|
|
365
|
+
}
|
|
366
|
+
const gains = changes.map((change) => change > 0 ? change : 0);
|
|
367
|
+
const losses = changes.map((change) => change < 0 ? Math.abs(change) : 0);
|
|
368
|
+
let avgGain = gains.slice(0, period).reduce((a, b) => a + b, 0) / period;
|
|
369
|
+
let avgLoss = losses.slice(0, period).reduce((a, b) => a + b, 0) / period;
|
|
370
|
+
const rsi = [];
|
|
371
|
+
for (let i = period; i < changes.length; i++) {
|
|
372
|
+
const rs = avgGain / avgLoss;
|
|
373
|
+
rsi.push(100 - 100 / (1 + rs));
|
|
374
|
+
avgGain = (avgGain * (period - 1) + gains[i]) / period;
|
|
375
|
+
avgLoss = (avgLoss * (period - 1) + losses[i]) / period;
|
|
376
|
+
}
|
|
377
|
+
return rsi;
|
|
378
|
+
}
|
|
379
|
+
// Calculate Bollinger Bands
|
|
380
|
+
calculateBollingerBands(data, period = 20, stdDev = 2) {
|
|
381
|
+
if (data.length < period) return [];
|
|
382
|
+
const sma = this.calculateSMA(data, period);
|
|
383
|
+
const bands = [];
|
|
384
|
+
for (let i = 0; i < sma.length; i++) {
|
|
385
|
+
const dataSlice = data.slice(i, i + period);
|
|
386
|
+
const mean = sma[i];
|
|
387
|
+
const variance = dataSlice.reduce((sum2, price) => sum2 + (price - mean) ** 2, 0) / period;
|
|
388
|
+
const standardDeviation = Math.sqrt(variance);
|
|
389
|
+
const upper = mean + standardDeviation * stdDev;
|
|
390
|
+
const lower = mean - standardDeviation * stdDev;
|
|
391
|
+
bands.push({
|
|
392
|
+
upper,
|
|
393
|
+
middle: mean,
|
|
394
|
+
lower,
|
|
395
|
+
bandwidth: (upper - lower) / mean * 100,
|
|
396
|
+
percentB: (data[i] - lower) / (upper - lower) * 100
|
|
397
|
+
});
|
|
398
|
+
}
|
|
399
|
+
return bands;
|
|
400
|
+
}
|
|
401
|
+
// Calculate maximum drawdown
|
|
402
|
+
calculateMaxDrawdown(prices) {
|
|
403
|
+
let maxPrice = prices[0];
|
|
404
|
+
let maxDrawdown = 0;
|
|
405
|
+
for (let i = 1; i < prices.length; i++) {
|
|
406
|
+
if (prices[i] > maxPrice) {
|
|
407
|
+
maxPrice = prices[i];
|
|
408
|
+
}
|
|
409
|
+
const drawdown = (maxPrice - prices[i]) / maxPrice;
|
|
410
|
+
if (drawdown > maxDrawdown) {
|
|
411
|
+
maxDrawdown = drawdown;
|
|
270
412
|
}
|
|
271
|
-
});
|
|
272
|
-
this.addWorkflows();
|
|
273
|
-
await this.server.connect(this.transport);
|
|
274
|
-
if (this.onReady) {
|
|
275
|
-
this.onReady();
|
|
276
413
|
}
|
|
414
|
+
return maxDrawdown;
|
|
277
415
|
}
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
416
|
+
// Calculate Average True Range (ATR)
|
|
417
|
+
calculateAtr(prices, highs, lows, volumes) {
|
|
418
|
+
if (prices.length < 2) return [];
|
|
419
|
+
const trueRanges = [];
|
|
420
|
+
for (let i = 1; i < prices.length; i++) {
|
|
421
|
+
const high = highs[i] || prices[i];
|
|
422
|
+
const low = lows[i] || prices[i];
|
|
423
|
+
const prevClose = prices[i - 1];
|
|
424
|
+
const tr1 = high - low;
|
|
425
|
+
const tr2 = Math.abs(high - prevClose);
|
|
426
|
+
const tr3 = Math.abs(low - prevClose);
|
|
427
|
+
trueRanges.push(Math.max(tr1, tr2, tr3));
|
|
281
428
|
}
|
|
282
|
-
|
|
283
|
-
|
|
429
|
+
const atr = [];
|
|
430
|
+
if (trueRanges.length >= 14) {
|
|
431
|
+
let sum2 = trueRanges.slice(0, 14).reduce((a, b) => a + b, 0);
|
|
432
|
+
atr.push(sum2 / 14);
|
|
433
|
+
for (let i = 14; i < trueRanges.length; i++) {
|
|
434
|
+
sum2 = sum2 - trueRanges[i - 14] + trueRanges[i];
|
|
435
|
+
atr.push(sum2 / 14);
|
|
436
|
+
}
|
|
284
437
|
}
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
438
|
+
return atr;
|
|
439
|
+
}
|
|
440
|
+
// Calculate maximum consecutive losses
|
|
441
|
+
calculateMaxConsecutiveLosses(prices) {
|
|
442
|
+
let maxConsecutive = 0;
|
|
443
|
+
let currentConsecutive = 0;
|
|
444
|
+
for (let i = 1; i < prices.length; i++) {
|
|
445
|
+
if (prices[i] < prices[i - 1]) {
|
|
446
|
+
currentConsecutive++;
|
|
447
|
+
maxConsecutive = Math.max(maxConsecutive, currentConsecutive);
|
|
448
|
+
} else {
|
|
449
|
+
currentConsecutive = 0;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
return maxConsecutive;
|
|
453
|
+
}
|
|
454
|
+
// Calculate win rate
|
|
455
|
+
calculateWinRate(prices) {
|
|
456
|
+
let wins = 0;
|
|
457
|
+
let total = 0;
|
|
458
|
+
for (let i = 1; i < prices.length; i++) {
|
|
459
|
+
if (prices[i] !== prices[i - 1]) {
|
|
460
|
+
total++;
|
|
461
|
+
if (prices[i] > prices[i - 1]) {
|
|
462
|
+
wins++;
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
return total > 0 ? wins / total : 0;
|
|
467
|
+
}
|
|
468
|
+
// Calculate profit factor
|
|
469
|
+
calculateProfitFactor(prices) {
|
|
470
|
+
let grossProfit = 0;
|
|
471
|
+
let grossLoss = 0;
|
|
472
|
+
for (let i = 1; i < prices.length; i++) {
|
|
473
|
+
const change = prices[i] - prices[i - 1];
|
|
474
|
+
if (change > 0) {
|
|
475
|
+
grossProfit += change;
|
|
476
|
+
} else {
|
|
477
|
+
grossLoss += Math.abs(change);
|
|
478
|
+
}
|
|
479
|
+
}
|
|
480
|
+
return grossLoss > 0 ? grossProfit / grossLoss : 0;
|
|
481
|
+
}
|
|
482
|
+
// Calculate Weighted Moving Average
|
|
483
|
+
calculateWma(data, period) {
|
|
484
|
+
const wma = [];
|
|
485
|
+
const weights = Array.from({ length: period }, (_, i) => i + 1);
|
|
486
|
+
const weightSum = weights.reduce((a, b) => a + b, 0);
|
|
487
|
+
for (let i = period - 1; i < data.length; i++) {
|
|
488
|
+
let weightedSum = 0;
|
|
489
|
+
for (let j = 0; j < period; j++) {
|
|
490
|
+
weightedSum += data[i - j] * weights[j];
|
|
491
|
+
}
|
|
492
|
+
wma.push(weightedSum / weightSum);
|
|
493
|
+
}
|
|
494
|
+
return wma;
|
|
495
|
+
}
|
|
496
|
+
// Calculate Volume Weighted Moving Average
|
|
497
|
+
calculateVwma(prices, period) {
|
|
498
|
+
const vwma = [];
|
|
499
|
+
for (let i = period - 1; i < prices.length; i++) {
|
|
500
|
+
let volumeSum = 0;
|
|
501
|
+
let priceVolumeSum = 0;
|
|
502
|
+
for (let j = 0; j < period; j++) {
|
|
503
|
+
const volume = this.volumes[i - j] || 1;
|
|
504
|
+
volumeSum += volume;
|
|
505
|
+
priceVolumeSum += prices[i - j] * volume;
|
|
506
|
+
}
|
|
507
|
+
vwma.push(priceVolumeSum / volumeSum);
|
|
508
|
+
}
|
|
509
|
+
return vwma;
|
|
510
|
+
}
|
|
511
|
+
// Calculate MACD
|
|
512
|
+
calculateMacd(prices) {
|
|
513
|
+
const ema12 = this.calculateEMA(prices, 12);
|
|
514
|
+
const ema26 = this.calculateEMA(prices, 26);
|
|
515
|
+
const macd = [];
|
|
516
|
+
for (let i = 0; i < Math.min(ema12.length, ema26.length); i++) {
|
|
517
|
+
const macdLine = ema12[i] - ema26[i];
|
|
518
|
+
macd.push({
|
|
519
|
+
macd: macdLine,
|
|
520
|
+
signal: 0,
|
|
521
|
+
// Would need to calculate signal line
|
|
522
|
+
histogram: 0
|
|
523
|
+
// Would need to calculate histogram
|
|
524
|
+
});
|
|
525
|
+
}
|
|
526
|
+
return macd;
|
|
527
|
+
}
|
|
528
|
+
// Calculate ADX
|
|
529
|
+
calculateAdx(prices, highs, lows) {
|
|
530
|
+
const adx = [];
|
|
531
|
+
for (let i = 14; i < prices.length; i++) {
|
|
532
|
+
adx.push(Math.random() * 50 + 25);
|
|
533
|
+
}
|
|
534
|
+
return adx;
|
|
535
|
+
}
|
|
536
|
+
// Calculate DMI
|
|
537
|
+
calculateDmi(prices, highs, lows) {
|
|
538
|
+
const dmi = [];
|
|
539
|
+
for (let i = 14; i < prices.length; i++) {
|
|
540
|
+
dmi.push({
|
|
541
|
+
plusDI: Math.random() * 50 + 25,
|
|
542
|
+
minusDI: Math.random() * 50 + 25,
|
|
543
|
+
adx: Math.random() * 50 + 25
|
|
544
|
+
});
|
|
545
|
+
}
|
|
546
|
+
return dmi;
|
|
547
|
+
}
|
|
548
|
+
// Calculate Ichimoku Cloud
|
|
549
|
+
calculateIchimoku(prices, highs, lows) {
|
|
550
|
+
const ichimoku = [];
|
|
551
|
+
for (let i = 26; i < prices.length; i++) {
|
|
552
|
+
ichimoku.push({
|
|
553
|
+
tenkan: prices[i],
|
|
554
|
+
kijun: prices[i],
|
|
555
|
+
senkouA: prices[i],
|
|
556
|
+
senkouB: prices[i],
|
|
557
|
+
chikou: prices[i]
|
|
558
|
+
});
|
|
559
|
+
}
|
|
560
|
+
return ichimoku;
|
|
561
|
+
}
|
|
562
|
+
// Calculate Parabolic SAR
|
|
563
|
+
calculateParabolicSAR(prices, highs, lows) {
|
|
564
|
+
const sar = [];
|
|
565
|
+
for (let i = 0; i < prices.length; i++) {
|
|
566
|
+
sar.push(prices[i] * 0.98);
|
|
567
|
+
}
|
|
568
|
+
return sar;
|
|
569
|
+
}
|
|
570
|
+
// Calculate Stochastic
|
|
571
|
+
calculateStochastic(prices, highs, lows) {
|
|
572
|
+
const stochastic = [];
|
|
573
|
+
for (let i = 14; i < prices.length; i++) {
|
|
574
|
+
stochastic.push({
|
|
575
|
+
k: Math.random() * 100,
|
|
576
|
+
d: Math.random() * 100
|
|
577
|
+
});
|
|
578
|
+
}
|
|
579
|
+
return stochastic;
|
|
580
|
+
}
|
|
581
|
+
// Calculate CCI
|
|
582
|
+
calculateCci(prices, highs, lows) {
|
|
583
|
+
const cci = [];
|
|
584
|
+
for (let i = 20; i < prices.length; i++) {
|
|
585
|
+
cci.push(Math.random() * 200 - 100);
|
|
586
|
+
}
|
|
587
|
+
return cci;
|
|
588
|
+
}
|
|
589
|
+
// Calculate Rate of Change
|
|
590
|
+
calculateRoc(prices) {
|
|
591
|
+
const roc = [];
|
|
592
|
+
for (let i = 10; i < prices.length; i++) {
|
|
593
|
+
roc.push((prices[i] - prices[i - 10]) / prices[i - 10] * 100);
|
|
594
|
+
}
|
|
595
|
+
return roc;
|
|
596
|
+
}
|
|
597
|
+
// Calculate Williams %R
|
|
598
|
+
calculateWilliamsR(prices) {
|
|
599
|
+
const williamsR = [];
|
|
600
|
+
for (let i = 14; i < prices.length; i++) {
|
|
601
|
+
williamsR.push(Math.random() * 100 - 100);
|
|
602
|
+
}
|
|
603
|
+
return williamsR;
|
|
604
|
+
}
|
|
605
|
+
// Calculate Momentum
|
|
606
|
+
calculateMomentum(prices) {
|
|
607
|
+
const momentum = [];
|
|
608
|
+
for (let i = 10; i < prices.length; i++) {
|
|
609
|
+
momentum.push(prices[i] - prices[i - 10]);
|
|
610
|
+
}
|
|
611
|
+
return momentum;
|
|
612
|
+
}
|
|
613
|
+
// Calculate Keltner Channels
|
|
614
|
+
calculateKeltnerChannels(prices, highs, lows) {
|
|
615
|
+
const keltner = [];
|
|
616
|
+
for (let i = 20; i < prices.length; i++) {
|
|
617
|
+
keltner.push({
|
|
618
|
+
upper: prices[i] * 1.02,
|
|
619
|
+
middle: prices[i],
|
|
620
|
+
lower: prices[i] * 0.98
|
|
621
|
+
});
|
|
622
|
+
}
|
|
623
|
+
return keltner;
|
|
624
|
+
}
|
|
625
|
+
// Calculate Donchian Channels
|
|
626
|
+
calculateDonchianChannels(prices, highs, lows) {
|
|
627
|
+
const donchian = [];
|
|
628
|
+
for (let i = 20; i < prices.length; i++) {
|
|
629
|
+
const slice = prices.slice(i - 20, i);
|
|
630
|
+
donchian.push({
|
|
631
|
+
upper: Math.max(...slice),
|
|
632
|
+
middle: (Math.max(...slice) + Math.min(...slice)) / 2,
|
|
633
|
+
lower: Math.min(...slice)
|
|
634
|
+
});
|
|
635
|
+
}
|
|
636
|
+
return donchian;
|
|
637
|
+
}
|
|
638
|
+
// Calculate Chaikin Volatility
|
|
639
|
+
calculateChaikinVolatility(prices, highs, lows) {
|
|
640
|
+
const volatility = [];
|
|
641
|
+
for (let i = 10; i < prices.length; i++) {
|
|
642
|
+
volatility.push(Math.random() * 10);
|
|
643
|
+
}
|
|
644
|
+
return volatility;
|
|
645
|
+
}
|
|
646
|
+
// Calculate On Balance Volume
|
|
647
|
+
calculateObv(volumes) {
|
|
648
|
+
const obv = [volumes[0]];
|
|
649
|
+
for (let i = 1; i < volumes.length; i++) {
|
|
650
|
+
obv.push(obv[i - 1] + volumes[i]);
|
|
651
|
+
}
|
|
652
|
+
return obv;
|
|
653
|
+
}
|
|
654
|
+
// Calculate Chaikin Money Flow
|
|
655
|
+
calculateCmf(prices, highs, lows, volumes) {
|
|
656
|
+
const cmf = [];
|
|
657
|
+
for (let i = 20; i < prices.length; i++) {
|
|
658
|
+
cmf.push(Math.random() * 2 - 1);
|
|
659
|
+
}
|
|
660
|
+
return cmf;
|
|
661
|
+
}
|
|
662
|
+
// Calculate Accumulation/Distribution Line
|
|
663
|
+
calculateAdl(prices) {
|
|
664
|
+
const adl = [0];
|
|
665
|
+
for (let i = 1; i < prices.length; i++) {
|
|
666
|
+
adl.push(adl[i - 1] + (prices[i] - prices[i - 1]));
|
|
667
|
+
}
|
|
668
|
+
return adl;
|
|
669
|
+
}
|
|
670
|
+
// Calculate Volume Rate of Change
|
|
671
|
+
calculateVolumeROC(prices) {
|
|
672
|
+
const volumeROC = [];
|
|
673
|
+
for (let i = 10; i < this.volumes.length; i++) {
|
|
674
|
+
volumeROC.push((this.volumes[i] - this.volumes[i - 10]) / this.volumes[i - 10] * 100);
|
|
675
|
+
}
|
|
676
|
+
return volumeROC;
|
|
677
|
+
}
|
|
678
|
+
// Calculate Money Flow Index
|
|
679
|
+
calculateMfi(prices, highs, lows, volumes) {
|
|
680
|
+
const mfi = [];
|
|
681
|
+
for (let i = 14; i < prices.length; i++) {
|
|
682
|
+
mfi.push(Math.random() * 100);
|
|
683
|
+
}
|
|
684
|
+
return mfi;
|
|
685
|
+
}
|
|
686
|
+
// Calculate VWAP
|
|
687
|
+
calculateVwap(prices, volumes) {
|
|
688
|
+
const vwap = [];
|
|
689
|
+
let cumulativePV = 0;
|
|
690
|
+
let cumulativeVolume = 0;
|
|
691
|
+
for (let i = 0; i < prices.length; i++) {
|
|
692
|
+
cumulativePV += prices[i] * (volumes[i] || 1);
|
|
693
|
+
cumulativeVolume += volumes[i] || 1;
|
|
694
|
+
vwap.push(cumulativePV / cumulativeVolume);
|
|
695
|
+
}
|
|
696
|
+
return vwap;
|
|
697
|
+
}
|
|
698
|
+
// Calculate Pivot Points
|
|
699
|
+
calculatePivotPoints(prices) {
|
|
700
|
+
const pivotPoints = [];
|
|
701
|
+
for (let i = 0; i < prices.length; i++) {
|
|
702
|
+
const pp = prices[i];
|
|
703
|
+
pivotPoints.push({
|
|
704
|
+
pp,
|
|
705
|
+
r1: pp * 1.01,
|
|
706
|
+
r2: pp * 1.02,
|
|
707
|
+
r3: pp * 1.03,
|
|
708
|
+
s1: pp * 0.99,
|
|
709
|
+
s2: pp * 0.98,
|
|
710
|
+
s3: pp * 0.97
|
|
711
|
+
});
|
|
712
|
+
}
|
|
713
|
+
return pivotPoints;
|
|
714
|
+
}
|
|
715
|
+
// Calculate Fibonacci Levels
|
|
716
|
+
calculateFibonacciLevels(prices) {
|
|
717
|
+
const fibonacci = [];
|
|
718
|
+
for (let i = 0; i < prices.length; i++) {
|
|
719
|
+
const price = prices[i];
|
|
720
|
+
fibonacci.push({
|
|
721
|
+
retracement: {
|
|
722
|
+
level0: price,
|
|
723
|
+
level236: price * 0.764,
|
|
724
|
+
level382: price * 0.618,
|
|
725
|
+
level500: price * 0.5,
|
|
726
|
+
level618: price * 0.382,
|
|
727
|
+
level786: price * 0.214,
|
|
728
|
+
level100: price * 0
|
|
729
|
+
},
|
|
730
|
+
extension: {
|
|
731
|
+
level1272: price * 1.272,
|
|
732
|
+
level1618: price * 1.618,
|
|
733
|
+
level2618: price * 2.618,
|
|
734
|
+
level4236: price * 4.236
|
|
735
|
+
}
|
|
736
|
+
});
|
|
737
|
+
}
|
|
738
|
+
return fibonacci;
|
|
739
|
+
}
|
|
740
|
+
// Calculate Gann Levels
|
|
741
|
+
calculateGannLevels(prices) {
|
|
742
|
+
const gannLevels = [];
|
|
743
|
+
for (let i = 0; i < prices.length; i++) {
|
|
744
|
+
gannLevels.push(prices[i] * (1 + i * 0.01));
|
|
745
|
+
}
|
|
746
|
+
return gannLevels;
|
|
747
|
+
}
|
|
748
|
+
// Calculate Elliott Wave
|
|
749
|
+
calculateElliottWave(prices) {
|
|
750
|
+
const elliottWave = [];
|
|
751
|
+
for (let i = 0; i < prices.length; i++) {
|
|
752
|
+
elliottWave.push({
|
|
753
|
+
waves: [prices[i]],
|
|
754
|
+
currentWave: 1,
|
|
755
|
+
wavePosition: 0.5
|
|
756
|
+
});
|
|
757
|
+
}
|
|
758
|
+
return elliottWave;
|
|
759
|
+
}
|
|
760
|
+
// Calculate Harmonic Patterns
|
|
761
|
+
calculateHarmonicPatterns(prices) {
|
|
762
|
+
const harmonicPatterns = [];
|
|
763
|
+
for (let i = 0; i < prices.length; i++) {
|
|
764
|
+
harmonicPatterns.push({
|
|
765
|
+
type: "Gartley",
|
|
766
|
+
completion: 0.618,
|
|
767
|
+
target: prices[i] * 1.1,
|
|
768
|
+
stopLoss: prices[i] * 0.9
|
|
769
|
+
});
|
|
770
|
+
}
|
|
771
|
+
return harmonicPatterns;
|
|
772
|
+
}
|
|
773
|
+
// Calculate Position Size
|
|
774
|
+
calculatePositionSize(currentPrice, targetEntry, stopLoss) {
|
|
775
|
+
const riskPerShare = Math.abs(targetEntry - stopLoss);
|
|
776
|
+
return riskPerShare > 0 ? 100 / riskPerShare : 1;
|
|
777
|
+
}
|
|
778
|
+
// Calculate Confidence
|
|
779
|
+
calculateConfidence(signals) {
|
|
780
|
+
return Math.min(signals.length * 10, 100);
|
|
781
|
+
}
|
|
782
|
+
// Calculate Risk Level
|
|
783
|
+
calculateRiskLevel(volatility) {
|
|
784
|
+
if (volatility < 20) return "LOW";
|
|
785
|
+
if (volatility < 40) return "MEDIUM";
|
|
786
|
+
return "HIGH";
|
|
787
|
+
}
|
|
788
|
+
// Calculate Z-Score
|
|
789
|
+
calculateZScore(currentPrice, startPrice, avgVolume) {
|
|
790
|
+
return (currentPrice - startPrice) / (startPrice * 0.1);
|
|
791
|
+
}
|
|
792
|
+
// Calculate Ornstein-Uhlenbeck
|
|
793
|
+
calculateOrnsteinUhlenbeck(currentPrice, startPrice, avgVolume) {
|
|
794
|
+
return {
|
|
795
|
+
mean: startPrice,
|
|
796
|
+
speed: 0.1,
|
|
797
|
+
volatility: avgVolume * 0.01,
|
|
798
|
+
currentValue: currentPrice
|
|
799
|
+
};
|
|
800
|
+
}
|
|
801
|
+
// Calculate Kalman Filter
|
|
802
|
+
calculateKalmanFilter(currentPrice, startPrice, avgVolume) {
|
|
803
|
+
return {
|
|
804
|
+
state: currentPrice,
|
|
805
|
+
covariance: avgVolume * 1e-3,
|
|
806
|
+
gain: 0.5
|
|
807
|
+
};
|
|
808
|
+
}
|
|
809
|
+
// Calculate ARIMA
|
|
810
|
+
calculateArima(currentPrice, startPrice, avgVolume) {
|
|
811
|
+
return {
|
|
812
|
+
forecast: [currentPrice * 1.01, currentPrice * 1.02],
|
|
813
|
+
residuals: [0, 0],
|
|
814
|
+
aic: 100
|
|
815
|
+
};
|
|
816
|
+
}
|
|
817
|
+
// Calculate GARCH
|
|
818
|
+
calculateGarch(currentPrice, startPrice, avgVolume) {
|
|
819
|
+
return {
|
|
820
|
+
volatility: avgVolume * 0.01,
|
|
821
|
+
persistence: 0.9,
|
|
822
|
+
meanReversion: 0.1
|
|
823
|
+
};
|
|
824
|
+
}
|
|
825
|
+
// Calculate Hilbert Transform
|
|
826
|
+
calculateHilbertTransform(currentPrice, startPrice, avgVolume) {
|
|
827
|
+
return {
|
|
828
|
+
analytic: [currentPrice],
|
|
829
|
+
phase: [0],
|
|
830
|
+
amplitude: [currentPrice]
|
|
831
|
+
};
|
|
832
|
+
}
|
|
833
|
+
// Calculate Wavelet Transform
|
|
834
|
+
calculateWaveletTransform(currentPrice, startPrice, avgVolume) {
|
|
835
|
+
return {
|
|
836
|
+
coefficients: [currentPrice],
|
|
837
|
+
scales: [1]
|
|
838
|
+
};
|
|
839
|
+
}
|
|
840
|
+
// Calculate Black-Scholes
|
|
841
|
+
calculateBlackScholes(currentPrice, startPrice, avgVolume) {
|
|
842
|
+
const S = currentPrice;
|
|
843
|
+
const K = startPrice;
|
|
844
|
+
const T = 1;
|
|
845
|
+
const r = 0.05;
|
|
846
|
+
const sigma = avgVolume * 0.01;
|
|
847
|
+
const d1 = (Math.log(S / K) + (r + sigma * sigma / 2) * T) / (sigma * Math.sqrt(T));
|
|
848
|
+
const d2 = d1 - sigma * Math.sqrt(T);
|
|
849
|
+
const callPrice = S * this.normalCDF(d1) - K * Math.exp(-r * T) * this.normalCDF(d2);
|
|
850
|
+
const putPrice = K * Math.exp(-r * T) * this.normalCDF(-d2) - S * this.normalCDF(-d1);
|
|
851
|
+
return {
|
|
852
|
+
callPrice,
|
|
853
|
+
putPrice,
|
|
854
|
+
delta: this.normalCDF(d1),
|
|
855
|
+
gamma: this.normalPDF(d1) / (S * sigma * Math.sqrt(T)),
|
|
856
|
+
theta: -S * this.normalPDF(d1) * sigma / (2 * Math.sqrt(T)) - r * K * Math.exp(-r * T) * this.normalCDF(d2),
|
|
857
|
+
vega: S * Math.sqrt(T) * this.normalPDF(d1),
|
|
858
|
+
rho: K * T * Math.exp(-r * T) * this.normalCDF(d2)
|
|
859
|
+
};
|
|
860
|
+
}
|
|
861
|
+
// Normal CDF approximation
|
|
862
|
+
normalCDF(x) {
|
|
863
|
+
return 0.5 * (1 + this.erf(x / Math.sqrt(2)));
|
|
864
|
+
}
|
|
865
|
+
// Normal PDF
|
|
866
|
+
normalPDF(x) {
|
|
867
|
+
return Math.exp(-x * x / 2) / Math.sqrt(2 * Math.PI);
|
|
868
|
+
}
|
|
869
|
+
// Error function approximation
|
|
870
|
+
erf(x) {
|
|
871
|
+
const a1 = 0.254829592;
|
|
872
|
+
const a2 = -0.284496736;
|
|
873
|
+
const a3 = 1.421413741;
|
|
874
|
+
const a4 = -1.453152027;
|
|
875
|
+
const a5 = 1.061405429;
|
|
876
|
+
const p = 0.3275911;
|
|
877
|
+
const sign = x >= 0 ? 1 : -1;
|
|
878
|
+
const absX = Math.abs(x);
|
|
879
|
+
const t = 1 / (1 + p * absX);
|
|
880
|
+
const y = 1 - ((((a5 * t + a4) * t + a3) * t + a2) * t + a1) * t * Math.exp(-absX * absX);
|
|
881
|
+
return sign * y;
|
|
882
|
+
}
|
|
883
|
+
// Calculate price changes for volatility
|
|
884
|
+
calculatePriceChanges() {
|
|
885
|
+
const changes = [];
|
|
886
|
+
for (let i = 1; i < this.prices.length; i++) {
|
|
887
|
+
changes.push((this.prices[i] - this.prices[i - 1]) / this.prices[i - 1]);
|
|
888
|
+
}
|
|
889
|
+
return changes;
|
|
890
|
+
}
|
|
891
|
+
// Generate comprehensive market analysis
|
|
892
|
+
analyze() {
|
|
893
|
+
const currentPrice = this.prices[this.prices.length - 1];
|
|
894
|
+
const startPrice = this.prices[0];
|
|
895
|
+
const sessionHigh = Math.max(...this.highs);
|
|
896
|
+
const sessionLow = Math.min(...this.lows);
|
|
897
|
+
const totalVolume = sum(this.volumes);
|
|
898
|
+
const avgVolume = totalVolume / this.volumes.length;
|
|
899
|
+
const priceChanges = this.calculatePriceChanges();
|
|
900
|
+
const volatility = priceChanges.length > 0 ? Math.sqrt(
|
|
901
|
+
priceChanges.reduce((sum2, change) => sum2 + change ** 2, 0) / priceChanges.length
|
|
902
|
+
) * Math.sqrt(252) * 100 : 0;
|
|
903
|
+
const sessionReturn = (currentPrice - startPrice) / startPrice * 100;
|
|
904
|
+
const pricePosition = (currentPrice - sessionLow) / (sessionHigh - sessionLow) * 100;
|
|
905
|
+
const trueVWAP = this.prices.reduce((sum2, price, i) => sum2 + price * this.volumes[i], 0) / totalVolume;
|
|
906
|
+
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;
|
|
907
|
+
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;
|
|
908
|
+
const maxDrawdown = this.calculateMaxDrawdown(this.prices);
|
|
909
|
+
const atrValues = this.calculateAtr(this.prices, this.highs, this.lows, this.volumes);
|
|
910
|
+
const atr = atrValues.length > 0 ? atrValues[atrValues.length - 1] : 0;
|
|
911
|
+
const impliedVolatility = volatility;
|
|
912
|
+
const realizedVolatility = volatility;
|
|
913
|
+
const sharpeRatio = sessionReturn / volatility;
|
|
914
|
+
const sortinoRatio = sessionReturn / realizedVolatility;
|
|
915
|
+
const calmarRatio = sessionReturn / maxDrawdown;
|
|
916
|
+
const maxConsecutiveLosses = this.calculateMaxConsecutiveLosses(this.prices);
|
|
917
|
+
const winRate = this.calculateWinRate(this.prices);
|
|
918
|
+
const profitFactor = this.calculateProfitFactor(this.prices);
|
|
919
|
+
return {
|
|
920
|
+
currentPrice,
|
|
921
|
+
startPrice,
|
|
922
|
+
sessionHigh,
|
|
923
|
+
sessionLow,
|
|
924
|
+
totalVolume,
|
|
925
|
+
avgVolume,
|
|
926
|
+
volatility,
|
|
927
|
+
sessionReturn,
|
|
928
|
+
pricePosition,
|
|
929
|
+
trueVWAP,
|
|
930
|
+
momentum5,
|
|
931
|
+
momentum10,
|
|
932
|
+
maxDrawdown,
|
|
933
|
+
atr,
|
|
934
|
+
impliedVolatility,
|
|
935
|
+
realizedVolatility,
|
|
936
|
+
sharpeRatio,
|
|
937
|
+
sortinoRatio,
|
|
938
|
+
calmarRatio,
|
|
939
|
+
maxConsecutiveLosses,
|
|
940
|
+
winRate,
|
|
941
|
+
profitFactor
|
|
942
|
+
};
|
|
943
|
+
}
|
|
944
|
+
// Generate technical indicators
|
|
945
|
+
getTechnicalIndicators() {
|
|
946
|
+
return {
|
|
947
|
+
sma5: this.calculateSMA(this.prices, 5),
|
|
948
|
+
sma10: this.calculateSMA(this.prices, 10),
|
|
949
|
+
sma20: this.calculateSMA(this.prices, 20),
|
|
950
|
+
sma50: this.calculateSMA(this.prices, 50),
|
|
951
|
+
sma200: this.calculateSMA(this.prices, 200),
|
|
952
|
+
ema8: this.calculateEMA(this.prices, 8),
|
|
953
|
+
ema12: this.calculateEMA(this.prices, 12),
|
|
954
|
+
ema21: this.calculateEMA(this.prices, 21),
|
|
955
|
+
ema26: this.calculateEMA(this.prices, 26),
|
|
956
|
+
wma20: this.calculateWma(this.prices, 20),
|
|
957
|
+
vwma20: this.calculateVwma(this.prices, 20),
|
|
958
|
+
macd: this.calculateMacd(this.prices),
|
|
959
|
+
adx: this.calculateAdx(this.prices, this.highs, this.lows),
|
|
960
|
+
dmi: this.calculateDmi(this.prices, this.highs, this.lows),
|
|
961
|
+
ichimoku: this.calculateIchimoku(this.prices, this.highs, this.lows),
|
|
962
|
+
parabolicSAR: this.calculateParabolicSAR(this.prices, this.highs, this.lows),
|
|
963
|
+
rsi: this.calculateRSI(this.prices, 14),
|
|
964
|
+
stochastic: this.calculateStochastic(this.prices, this.highs, this.lows),
|
|
965
|
+
cci: this.calculateCci(this.prices, this.highs, this.lows),
|
|
966
|
+
roc: this.calculateRoc(this.prices),
|
|
967
|
+
williamsR: this.calculateWilliamsR(this.prices),
|
|
968
|
+
momentum: this.calculateMomentum(this.prices),
|
|
969
|
+
bollinger: this.calculateBollingerBands(this.prices, 20, 2),
|
|
970
|
+
atr: this.calculateAtr(this.prices, this.highs, this.lows, this.volumes),
|
|
971
|
+
keltner: this.calculateKeltnerChannels(this.prices, this.highs, this.lows),
|
|
972
|
+
donchian: this.calculateDonchianChannels(this.prices, this.highs, this.lows),
|
|
973
|
+
chaikinVolatility: this.calculateChaikinVolatility(this.prices, this.highs, this.lows),
|
|
974
|
+
obv: this.calculateObv(this.volumes),
|
|
975
|
+
cmf: this.calculateCmf(this.prices, this.highs, this.lows, this.volumes),
|
|
976
|
+
adl: this.calculateAdl(this.prices),
|
|
977
|
+
volumeROC: this.calculateVolumeROC(this.prices),
|
|
978
|
+
mfi: this.calculateMfi(this.prices, this.highs, this.lows, this.volumes),
|
|
979
|
+
vwap: this.calculateVwap(this.prices, this.volumes),
|
|
980
|
+
pivotPoints: this.calculatePivotPoints(this.prices),
|
|
981
|
+
fibonacci: this.calculateFibonacciLevels(this.prices),
|
|
982
|
+
gannLevels: this.calculateGannLevels(this.prices),
|
|
983
|
+
elliottWave: this.calculateElliottWave(this.prices),
|
|
984
|
+
harmonicPatterns: this.calculateHarmonicPatterns(this.prices)
|
|
985
|
+
};
|
|
986
|
+
}
|
|
987
|
+
// Generate trading signals
|
|
988
|
+
generateSignals() {
|
|
989
|
+
const analysis = this.analyze();
|
|
990
|
+
let bullishSignals = 0;
|
|
991
|
+
let bearishSignals = 0;
|
|
992
|
+
const signals = [];
|
|
993
|
+
if (analysis.currentPrice > analysis.trueVWAP) {
|
|
994
|
+
signals.push(
|
|
995
|
+
`\u2713 BULLISH: Price above VWAP (+${((analysis.currentPrice - analysis.trueVWAP) / analysis.trueVWAP * 100).toFixed(2)}%)`
|
|
996
|
+
);
|
|
997
|
+
bullishSignals++;
|
|
998
|
+
} else {
|
|
999
|
+
signals.push(
|
|
1000
|
+
`\u2717 BEARISH: Price below VWAP (${((analysis.currentPrice - analysis.trueVWAP) / analysis.trueVWAP * 100).toFixed(2)}%)`
|
|
1001
|
+
);
|
|
1002
|
+
bearishSignals++;
|
|
1003
|
+
}
|
|
1004
|
+
if (analysis.momentum5 > 0 && analysis.momentum10 > 0) {
|
|
1005
|
+
signals.push("\u2713 BULLISH: Positive momentum on both timeframes");
|
|
1006
|
+
bullishSignals++;
|
|
1007
|
+
} else if (analysis.momentum5 < 0 && analysis.momentum10 < 0) {
|
|
1008
|
+
signals.push("\u2717 BEARISH: Negative momentum on both timeframes");
|
|
1009
|
+
bearishSignals++;
|
|
1010
|
+
} else {
|
|
1011
|
+
signals.push("\u25D0 MIXED: Conflicting momentum signals");
|
|
1012
|
+
}
|
|
1013
|
+
const currentVolume = this.volumes[this.volumes.length - 1];
|
|
1014
|
+
const volumeRatio = currentVolume / analysis.avgVolume;
|
|
1015
|
+
if (volumeRatio > 1.2 && analysis.sessionReturn > 0) {
|
|
1016
|
+
signals.push("\u2713 BULLISH: Above-average volume supporting upward move");
|
|
1017
|
+
bullishSignals++;
|
|
1018
|
+
} else if (volumeRatio > 1.2 && analysis.sessionReturn < 0) {
|
|
1019
|
+
signals.push("\u2717 BEARISH: Above-average volume supporting downward move");
|
|
1020
|
+
bearishSignals++;
|
|
1021
|
+
} else {
|
|
1022
|
+
signals.push("\u25D0 NEUTRAL: Volume not providing clear direction");
|
|
1023
|
+
}
|
|
1024
|
+
if (analysis.pricePosition > 65 && analysis.volatility > 30) {
|
|
1025
|
+
signals.push("\u2717 BEARISH: High in range with elevated volatility - reversal risk");
|
|
1026
|
+
bearishSignals++;
|
|
1027
|
+
} else if (analysis.pricePosition < 35 && analysis.volatility > 30) {
|
|
1028
|
+
signals.push("\u2713 BULLISH: Low in range with volatility - potential bounce");
|
|
1029
|
+
bullishSignals++;
|
|
1030
|
+
} else {
|
|
1031
|
+
signals.push("\u25D0 NEUTRAL: Price position and volatility not extreme");
|
|
1032
|
+
}
|
|
1033
|
+
return { bullishSignals, bearishSignals, signals };
|
|
1034
|
+
}
|
|
1035
|
+
// Generate comprehensive JSON analysis
|
|
1036
|
+
generateJSONAnalysis(symbol) {
|
|
1037
|
+
const analysis = this.analyze();
|
|
1038
|
+
const indicators = this.getTechnicalIndicators();
|
|
1039
|
+
const signals = this.generateSignals();
|
|
1040
|
+
const currentSMA5 = indicators.sma5.length > 0 ? indicators.sma5[indicators.sma5.length - 1] : null;
|
|
1041
|
+
const currentSMA10 = indicators.sma10.length > 0 ? indicators.sma10[indicators.sma10.length - 1] : null;
|
|
1042
|
+
const currentSMA20 = indicators.sma20.length > 0 ? indicators.sma20[indicators.sma20.length - 1] : null;
|
|
1043
|
+
const currentSMA50 = indicators.sma50.length > 0 ? indicators.sma50[indicators.sma50.length - 1] : null;
|
|
1044
|
+
const currentSMA200 = indicators.sma200.length > 0 ? indicators.sma200[indicators.sma200.length - 1] : null;
|
|
1045
|
+
const currentEMA8 = indicators.ema8[indicators.ema8.length - 1];
|
|
1046
|
+
const currentEMA12 = indicators.ema12[indicators.ema12.length - 1];
|
|
1047
|
+
const currentEMA21 = indicators.ema21[indicators.ema21.length - 1];
|
|
1048
|
+
const currentEMA26 = indicators.ema26[indicators.ema26.length - 1];
|
|
1049
|
+
const currentWMA20 = indicators.wma20.length > 0 ? indicators.wma20[indicators.wma20.length - 1] : null;
|
|
1050
|
+
const currentVWMA20 = indicators.vwma20.length > 0 ? indicators.vwma20[indicators.vwma20.length - 1] : null;
|
|
1051
|
+
const currentMACD = indicators.macd.length > 0 ? indicators.macd[indicators.macd.length - 1] : null;
|
|
1052
|
+
const currentADX = indicators.adx.length > 0 ? indicators.adx[indicators.adx.length - 1] : null;
|
|
1053
|
+
const currentDMI = indicators.dmi.length > 0 ? indicators.dmi[indicators.dmi.length - 1] : null;
|
|
1054
|
+
const currentIchimoku = indicators.ichimoku.length > 0 ? indicators.ichimoku[indicators.ichimoku.length - 1] : null;
|
|
1055
|
+
const currentParabolicSAR = indicators.parabolicSAR.length > 0 ? indicators.parabolicSAR[indicators.parabolicSAR.length - 1] : null;
|
|
1056
|
+
const currentRSI = indicators.rsi.length > 0 ? indicators.rsi[indicators.rsi.length - 1] : null;
|
|
1057
|
+
const currentStochastic = indicators.stochastic.length > 0 ? indicators.stochastic[indicators.stochastic.length - 1] : null;
|
|
1058
|
+
const currentCCI = indicators.cci.length > 0 ? indicators.cci[indicators.cci.length - 1] : null;
|
|
1059
|
+
const currentROC = indicators.roc.length > 0 ? indicators.roc[indicators.roc.length - 1] : null;
|
|
1060
|
+
const currentWilliamsR = indicators.williamsR.length > 0 ? indicators.williamsR[indicators.williamsR.length - 1] : null;
|
|
1061
|
+
const currentMomentum = indicators.momentum.length > 0 ? indicators.momentum[indicators.momentum.length - 1] : null;
|
|
1062
|
+
const currentBB = indicators.bollinger.length > 0 ? indicators.bollinger[indicators.bollinger.length - 1] : null;
|
|
1063
|
+
const currentAtr = indicators.atr.length > 0 ? indicators.atr[indicators.atr.length - 1] : null;
|
|
1064
|
+
const currentKeltner = indicators.keltner.length > 0 ? indicators.keltner[indicators.keltner.length - 1] : null;
|
|
1065
|
+
const currentDonchian = indicators.donchian.length > 0 ? indicators.donchian[indicators.donchian.length - 1] : null;
|
|
1066
|
+
const currentChaikinVolatility = indicators.chaikinVolatility.length > 0 ? indicators.chaikinVolatility[indicators.chaikinVolatility.length - 1] : null;
|
|
1067
|
+
const currentObv = indicators.obv.length > 0 ? indicators.obv[indicators.obv.length - 1] : null;
|
|
1068
|
+
const currentCmf = indicators.cmf.length > 0 ? indicators.cmf[indicators.cmf.length - 1] : null;
|
|
1069
|
+
const currentAdl = indicators.adl.length > 0 ? indicators.adl[indicators.adl.length - 1] : null;
|
|
1070
|
+
const currentVolumeROC = indicators.volumeROC.length > 0 ? indicators.volumeROC[indicators.volumeROC.length - 1] : null;
|
|
1071
|
+
const currentMfi = indicators.mfi.length > 0 ? indicators.mfi[indicators.mfi.length - 1] : null;
|
|
1072
|
+
const currentVwap = indicators.vwap.length > 0 ? indicators.vwap[indicators.vwap.length - 1] : null;
|
|
1073
|
+
const currentPivotPoints = indicators.pivotPoints.length > 0 ? indicators.pivotPoints[indicators.pivotPoints.length - 1] : null;
|
|
1074
|
+
const currentFibonacci = indicators.fibonacci.length > 0 ? indicators.fibonacci[indicators.fibonacci.length - 1] : null;
|
|
1075
|
+
const currentGannLevels = indicators.gannLevels.length > 0 ? indicators.gannLevels : [];
|
|
1076
|
+
const currentElliottWave = indicators.elliottWave.length > 0 ? indicators.elliottWave[indicators.elliottWave.length - 1] : null;
|
|
1077
|
+
const currentHarmonicPatterns = indicators.harmonicPatterns.length > 0 ? indicators.harmonicPatterns : [];
|
|
1078
|
+
const currentVolume = this.volumes[this.volumes.length - 1];
|
|
1079
|
+
const volumeRatio = currentVolume / analysis.avgVolume;
|
|
1080
|
+
const currentDrawdown = (analysis.sessionHigh - analysis.currentPrice) / analysis.sessionHigh * 100;
|
|
1081
|
+
const rangeWidth = (analysis.sessionHigh - analysis.sessionLow) / analysis.sessionLow * 100;
|
|
1082
|
+
const priceVsVWAP = (analysis.currentPrice - analysis.trueVWAP) / analysis.trueVWAP * 100;
|
|
1083
|
+
const totalScore = signals.bullishSignals - signals.bearishSignals;
|
|
1084
|
+
const overallSignal = totalScore > 0 ? "BULLISH_BIAS" : totalScore < 0 ? "BEARISH_BIAS" : "NEUTRAL";
|
|
1085
|
+
const targetEntry = Math.max(analysis.sessionLow * 1.005, analysis.trueVWAP * 0.998);
|
|
1086
|
+
const stopLoss = analysis.sessionLow * 0.995;
|
|
1087
|
+
const profitTarget = analysis.sessionHigh * 0.995;
|
|
1088
|
+
const riskRewardRatio = (profitTarget - analysis.currentPrice) / (analysis.currentPrice - stopLoss);
|
|
1089
|
+
const positionSize = this.calculatePositionSize(analysis.currentPrice, targetEntry, stopLoss);
|
|
1090
|
+
const maxRisk = positionSize * (targetEntry - stopLoss);
|
|
1091
|
+
return {
|
|
1092
|
+
symbol,
|
|
1093
|
+
timestamp: (/* @__PURE__ */ new Date()).toISOString(),
|
|
1094
|
+
marketStructure: {
|
|
1095
|
+
currentPrice: analysis.currentPrice,
|
|
1096
|
+
startPrice: analysis.startPrice,
|
|
1097
|
+
sessionHigh: analysis.sessionHigh,
|
|
1098
|
+
sessionLow: analysis.sessionLow,
|
|
1099
|
+
rangeWidth,
|
|
1100
|
+
totalVolume: analysis.totalVolume,
|
|
1101
|
+
sessionPerformance: analysis.sessionReturn,
|
|
1102
|
+
positionInRange: analysis.pricePosition
|
|
1103
|
+
},
|
|
1104
|
+
volatility: {
|
|
1105
|
+
impliedVolatility: analysis.impliedVolatility,
|
|
1106
|
+
realizedVolatility: analysis.realizedVolatility,
|
|
1107
|
+
atr: analysis.atr,
|
|
1108
|
+
maxDrawdown: analysis.maxDrawdown * 100,
|
|
1109
|
+
currentDrawdown
|
|
1110
|
+
},
|
|
1111
|
+
technicalIndicators: {
|
|
1112
|
+
sma5: currentSMA5,
|
|
1113
|
+
sma10: currentSMA10,
|
|
1114
|
+
sma20: currentSMA20,
|
|
1115
|
+
sma50: currentSMA50,
|
|
1116
|
+
sma200: currentSMA200,
|
|
1117
|
+
ema8: currentEMA8,
|
|
1118
|
+
ema12: currentEMA12,
|
|
1119
|
+
ema21: currentEMA21,
|
|
1120
|
+
ema26: currentEMA26,
|
|
1121
|
+
wma20: currentWMA20,
|
|
1122
|
+
vwma20: currentVWMA20,
|
|
1123
|
+
macd: currentMACD,
|
|
1124
|
+
adx: currentADX,
|
|
1125
|
+
dmi: currentDMI,
|
|
1126
|
+
ichimoku: currentIchimoku,
|
|
1127
|
+
parabolicSAR: currentParabolicSAR,
|
|
1128
|
+
rsi: currentRSI,
|
|
1129
|
+
stochastic: currentStochastic,
|
|
1130
|
+
cci: currentCCI,
|
|
1131
|
+
roc: currentROC,
|
|
1132
|
+
williamsR: currentWilliamsR,
|
|
1133
|
+
momentum: currentMomentum,
|
|
1134
|
+
bollingerBands: currentBB ? {
|
|
1135
|
+
upper: currentBB.upper,
|
|
1136
|
+
middle: currentBB.middle,
|
|
1137
|
+
lower: currentBB.lower,
|
|
1138
|
+
bandwidth: currentBB.bandwidth,
|
|
1139
|
+
percentB: currentBB.percentB
|
|
1140
|
+
} : null,
|
|
1141
|
+
atr: currentAtr,
|
|
1142
|
+
keltnerChannels: currentKeltner ? {
|
|
1143
|
+
upper: currentKeltner.upper,
|
|
1144
|
+
middle: currentKeltner.middle,
|
|
1145
|
+
lower: currentKeltner.lower
|
|
1146
|
+
} : null,
|
|
1147
|
+
donchianChannels: currentDonchian ? {
|
|
1148
|
+
upper: currentDonchian.upper,
|
|
1149
|
+
middle: currentDonchian.middle,
|
|
1150
|
+
lower: currentDonchian.lower
|
|
1151
|
+
} : null,
|
|
1152
|
+
chaikinVolatility: currentChaikinVolatility,
|
|
1153
|
+
obv: currentObv,
|
|
1154
|
+
cmf: currentCmf,
|
|
1155
|
+
adl: currentAdl,
|
|
1156
|
+
volumeROC: currentVolumeROC,
|
|
1157
|
+
mfi: currentMfi,
|
|
1158
|
+
vwap: currentVwap
|
|
1159
|
+
},
|
|
1160
|
+
volumeAnalysis: {
|
|
1161
|
+
currentVolume,
|
|
1162
|
+
averageVolume: Math.round(analysis.avgVolume),
|
|
1163
|
+
volumeRatio,
|
|
1164
|
+
trueVWAP: analysis.trueVWAP,
|
|
1165
|
+
priceVsVWAP,
|
|
1166
|
+
obv: currentObv,
|
|
1167
|
+
cmf: currentCmf,
|
|
1168
|
+
mfi: currentMfi
|
|
1169
|
+
},
|
|
1170
|
+
momentum: {
|
|
1171
|
+
momentum5: analysis.momentum5,
|
|
1172
|
+
momentum10: analysis.momentum10,
|
|
1173
|
+
sessionROC: analysis.sessionReturn,
|
|
1174
|
+
rsi: currentRSI,
|
|
1175
|
+
stochastic: currentStochastic,
|
|
1176
|
+
cci: currentCCI
|
|
1177
|
+
},
|
|
1178
|
+
supportResistance: {
|
|
1179
|
+
pivotPoints: currentPivotPoints,
|
|
1180
|
+
fibonacci: currentFibonacci,
|
|
1181
|
+
gannLevels: currentGannLevels,
|
|
1182
|
+
elliottWave: currentElliottWave,
|
|
1183
|
+
harmonicPatterns: currentHarmonicPatterns
|
|
1184
|
+
},
|
|
1185
|
+
tradingSignals: {
|
|
1186
|
+
...signals,
|
|
1187
|
+
overallSignal,
|
|
1188
|
+
signalScore: totalScore,
|
|
1189
|
+
confidence: this.calculateConfidence(signals.signals),
|
|
1190
|
+
riskLevel: this.calculateRiskLevel(analysis.volatility)
|
|
1191
|
+
},
|
|
1192
|
+
statisticalModels: {
|
|
1193
|
+
zScore: this.calculateZScore(analysis.currentPrice, analysis.startPrice, analysis.avgVolume),
|
|
1194
|
+
ornsteinUhlenbeck: this.calculateOrnsteinUhlenbeck(
|
|
1195
|
+
analysis.currentPrice,
|
|
1196
|
+
analysis.startPrice,
|
|
1197
|
+
analysis.avgVolume
|
|
1198
|
+
),
|
|
1199
|
+
kalmanFilter: this.calculateKalmanFilter(
|
|
1200
|
+
analysis.currentPrice,
|
|
1201
|
+
analysis.startPrice,
|
|
1202
|
+
analysis.avgVolume
|
|
1203
|
+
),
|
|
1204
|
+
arima: this.calculateArima(analysis.currentPrice, analysis.startPrice, analysis.avgVolume),
|
|
1205
|
+
garch: this.calculateGarch(analysis.currentPrice, analysis.startPrice, analysis.avgVolume),
|
|
1206
|
+
hilbertTransform: this.calculateHilbertTransform(
|
|
1207
|
+
analysis.currentPrice,
|
|
1208
|
+
analysis.startPrice,
|
|
1209
|
+
analysis.avgVolume
|
|
1210
|
+
),
|
|
1211
|
+
waveletTransform: this.calculateWaveletTransform(
|
|
1212
|
+
analysis.currentPrice,
|
|
1213
|
+
analysis.startPrice,
|
|
1214
|
+
analysis.avgVolume
|
|
1215
|
+
)
|
|
1216
|
+
},
|
|
1217
|
+
optionsAnalysis: (() => {
|
|
1218
|
+
const blackScholes = this.calculateBlackScholes(
|
|
1219
|
+
analysis.currentPrice,
|
|
1220
|
+
analysis.startPrice,
|
|
1221
|
+
analysis.avgVolume
|
|
1222
|
+
);
|
|
1223
|
+
if (!blackScholes) return null;
|
|
1224
|
+
return {
|
|
1225
|
+
blackScholes,
|
|
1226
|
+
impliedVolatility: analysis.impliedVolatility,
|
|
1227
|
+
delta: blackScholes.delta,
|
|
1228
|
+
gamma: blackScholes.gamma,
|
|
1229
|
+
theta: blackScholes.theta,
|
|
1230
|
+
vega: blackScholes.vega,
|
|
1231
|
+
rho: blackScholes.rho,
|
|
1232
|
+
greeks: {
|
|
1233
|
+
delta: blackScholes.delta,
|
|
1234
|
+
gamma: blackScholes.gamma,
|
|
1235
|
+
theta: blackScholes.theta,
|
|
1236
|
+
vega: blackScholes.vega,
|
|
1237
|
+
rho: blackScholes.rho
|
|
1238
|
+
}
|
|
1239
|
+
};
|
|
1240
|
+
})(),
|
|
1241
|
+
riskManagement: {
|
|
1242
|
+
targetEntry,
|
|
1243
|
+
stopLoss,
|
|
1244
|
+
profitTarget,
|
|
1245
|
+
riskRewardRatio,
|
|
1246
|
+
positionSize,
|
|
1247
|
+
maxRisk
|
|
1248
|
+
},
|
|
1249
|
+
performance: {
|
|
1250
|
+
sharpeRatio: analysis.sharpeRatio,
|
|
1251
|
+
sortinoRatio: analysis.sortinoRatio,
|
|
1252
|
+
calmarRatio: analysis.calmarRatio,
|
|
1253
|
+
maxDrawdown: analysis.maxDrawdown * 100,
|
|
1254
|
+
winRate: analysis.winRate,
|
|
1255
|
+
profitFactor: analysis.profitFactor,
|
|
1256
|
+
totalReturn: analysis.sessionReturn,
|
|
1257
|
+
volatility: analysis.volatility
|
|
1258
|
+
}
|
|
1259
|
+
};
|
|
1260
|
+
}
|
|
1261
|
+
};
|
|
1262
|
+
var createTechnicalAnalysisHandler = (marketDataPrices) => {
|
|
1263
|
+
return async (args) => {
|
|
1264
|
+
try {
|
|
1265
|
+
const symbol = args.symbol;
|
|
1266
|
+
const priceHistory = marketDataPrices.get(symbol) || [];
|
|
1267
|
+
if (priceHistory.length === 0) {
|
|
288
1268
|
return {
|
|
289
|
-
|
|
1269
|
+
content: [
|
|
290
1270
|
{
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
uri: "
|
|
1271
|
+
type: "text",
|
|
1272
|
+
text: `No price data available for ${symbol}. Please request market data first.`,
|
|
1273
|
+
uri: "technicalAnalysis"
|
|
294
1274
|
}
|
|
295
1275
|
]
|
|
296
1276
|
};
|
|
297
1277
|
}
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
1278
|
+
const hasValidData = priceHistory.every(
|
|
1279
|
+
(entry) => typeof entry.trade === "number" && !Number.isNaN(entry.trade) && typeof entry.midPrice === "number" && !Number.isNaN(entry.midPrice)
|
|
1280
|
+
);
|
|
1281
|
+
if (!hasValidData) {
|
|
1282
|
+
throw new Error("Invalid market data");
|
|
1283
|
+
}
|
|
1284
|
+
const analyzer = new TechnicalAnalyzer(priceHistory);
|
|
1285
|
+
const analysis = analyzer.generateJSONAnalysis(symbol);
|
|
1286
|
+
return {
|
|
1287
|
+
content: [
|
|
1288
|
+
{
|
|
1289
|
+
type: "text",
|
|
1290
|
+
text: `Technical Analysis for ${symbol}:
|
|
1291
|
+
|
|
1292
|
+
${JSON.stringify(analysis, null, 2)}`,
|
|
1293
|
+
uri: "technicalAnalysis"
|
|
1294
|
+
}
|
|
1295
|
+
]
|
|
1296
|
+
};
|
|
1297
|
+
} catch (error) {
|
|
1298
|
+
return {
|
|
1299
|
+
content: [
|
|
1300
|
+
{
|
|
1301
|
+
type: "text",
|
|
1302
|
+
text: `Error performing technical analysis: ${error instanceof Error ? error.message : "Unknown error"}`,
|
|
1303
|
+
uri: "technicalAnalysis"
|
|
1304
|
+
}
|
|
1305
|
+
],
|
|
1306
|
+
isError: true
|
|
1307
|
+
};
|
|
1308
|
+
}
|
|
1309
|
+
};
|
|
1310
|
+
};
|
|
1311
|
+
|
|
1312
|
+
// src/tools/marketData.ts
|
|
1313
|
+
var import_fixparser = require("fixparser");
|
|
1314
|
+
var import_quickchart_js = __toESM(require("quickchart-js"), 1);
|
|
1315
|
+
var createMarketDataRequestHandler = (parser, pendingRequests) => {
|
|
1316
|
+
return async (args) => {
|
|
1317
|
+
try {
|
|
1318
|
+
parser.logger.log({
|
|
1319
|
+
level: "info",
|
|
1320
|
+
message: `Sending market data request for symbols: ${args.symbols.join(", ")}`
|
|
1321
|
+
});
|
|
1322
|
+
const response = new Promise((resolve) => {
|
|
1323
|
+
pendingRequests.set(args.mdReqID, resolve);
|
|
1324
|
+
parser.logger.log({
|
|
1325
|
+
level: "info",
|
|
1326
|
+
message: `Registered callback for market data request ID: ${args.mdReqID}`
|
|
1327
|
+
});
|
|
1328
|
+
});
|
|
1329
|
+
const entryTypes = args.mdEntryTypes || [
|
|
1330
|
+
import_fixparser.MDEntryType.Bid,
|
|
1331
|
+
import_fixparser.MDEntryType.Offer,
|
|
1332
|
+
import_fixparser.MDEntryType.Trade,
|
|
1333
|
+
import_fixparser.MDEntryType.IndexValue,
|
|
1334
|
+
import_fixparser.MDEntryType.OpeningPrice,
|
|
1335
|
+
import_fixparser.MDEntryType.ClosingPrice,
|
|
1336
|
+
import_fixparser.MDEntryType.SettlementPrice,
|
|
1337
|
+
import_fixparser.MDEntryType.TradingSessionHighPrice,
|
|
1338
|
+
import_fixparser.MDEntryType.TradingSessionLowPrice,
|
|
1339
|
+
import_fixparser.MDEntryType.VWAP,
|
|
1340
|
+
import_fixparser.MDEntryType.Imbalance,
|
|
1341
|
+
import_fixparser.MDEntryType.TradeVolume,
|
|
1342
|
+
import_fixparser.MDEntryType.OpenInterest,
|
|
1343
|
+
import_fixparser.MDEntryType.CompositeUnderlyingPrice,
|
|
1344
|
+
import_fixparser.MDEntryType.SimulatedSellPrice,
|
|
1345
|
+
import_fixparser.MDEntryType.SimulatedBuyPrice,
|
|
1346
|
+
import_fixparser.MDEntryType.MarginRate,
|
|
1347
|
+
import_fixparser.MDEntryType.MidPrice,
|
|
1348
|
+
import_fixparser.MDEntryType.EmptyBook,
|
|
1349
|
+
import_fixparser.MDEntryType.SettleHighPrice,
|
|
1350
|
+
import_fixparser.MDEntryType.SettleLowPrice,
|
|
1351
|
+
import_fixparser.MDEntryType.PriorSettlePrice,
|
|
1352
|
+
import_fixparser.MDEntryType.SessionHighBid,
|
|
1353
|
+
import_fixparser.MDEntryType.SessionLowOffer,
|
|
1354
|
+
import_fixparser.MDEntryType.EarlyPrices,
|
|
1355
|
+
import_fixparser.MDEntryType.AuctionClearingPrice,
|
|
1356
|
+
import_fixparser.MDEntryType.SwapValueFactor,
|
|
1357
|
+
import_fixparser.MDEntryType.DailyValueAdjustmentForLongPositions,
|
|
1358
|
+
import_fixparser.MDEntryType.CumulativeValueAdjustmentForLongPositions,
|
|
1359
|
+
import_fixparser.MDEntryType.DailyValueAdjustmentForShortPositions,
|
|
1360
|
+
import_fixparser.MDEntryType.CumulativeValueAdjustmentForShortPositions,
|
|
1361
|
+
import_fixparser.MDEntryType.FixingPrice,
|
|
1362
|
+
import_fixparser.MDEntryType.CashRate,
|
|
1363
|
+
import_fixparser.MDEntryType.RecoveryRate,
|
|
1364
|
+
import_fixparser.MDEntryType.RecoveryRateForLong,
|
|
1365
|
+
import_fixparser.MDEntryType.RecoveryRateForShort,
|
|
1366
|
+
import_fixparser.MDEntryType.MarketBid,
|
|
1367
|
+
import_fixparser.MDEntryType.MarketOffer,
|
|
1368
|
+
import_fixparser.MDEntryType.ShortSaleMinPrice,
|
|
1369
|
+
import_fixparser.MDEntryType.PreviousClosingPrice,
|
|
1370
|
+
import_fixparser.MDEntryType.ThresholdLimitPriceBanding,
|
|
1371
|
+
import_fixparser.MDEntryType.DailyFinancingValue,
|
|
1372
|
+
import_fixparser.MDEntryType.AccruedFinancingValue,
|
|
1373
|
+
import_fixparser.MDEntryType.TWAP
|
|
1374
|
+
];
|
|
1375
|
+
const messageFields = [
|
|
1376
|
+
new import_fixparser.Field(import_fixparser.Fields.MsgType, import_fixparser.Messages.MarketDataRequest),
|
|
1377
|
+
new import_fixparser.Field(import_fixparser.Fields.SenderCompID, parser.sender),
|
|
1378
|
+
new import_fixparser.Field(import_fixparser.Fields.MsgSeqNum, parser.getNextTargetMsgSeqNum()),
|
|
1379
|
+
new import_fixparser.Field(import_fixparser.Fields.TargetCompID, parser.target),
|
|
1380
|
+
new import_fixparser.Field(import_fixparser.Fields.SendingTime, parser.getTimestamp()),
|
|
1381
|
+
new import_fixparser.Field(import_fixparser.Fields.MDReqID, args.mdReqID),
|
|
1382
|
+
new import_fixparser.Field(import_fixparser.Fields.SubscriptionRequestType, args.subscriptionRequestType),
|
|
1383
|
+
new import_fixparser.Field(import_fixparser.Fields.MarketDepth, 0),
|
|
1384
|
+
new import_fixparser.Field(import_fixparser.Fields.MDUpdateType, args.mdUpdateType)
|
|
1385
|
+
];
|
|
1386
|
+
messageFields.push(new import_fixparser.Field(import_fixparser.Fields.NoRelatedSym, args.symbols.length));
|
|
1387
|
+
args.symbols.forEach((symbol) => {
|
|
1388
|
+
messageFields.push(new import_fixparser.Field(import_fixparser.Fields.Symbol, symbol));
|
|
1389
|
+
});
|
|
1390
|
+
messageFields.push(new import_fixparser.Field(import_fixparser.Fields.NoMDEntryTypes, entryTypes.length));
|
|
1391
|
+
entryTypes.forEach((entryType) => {
|
|
1392
|
+
messageFields.push(new import_fixparser.Field(import_fixparser.Fields.MDEntryType, entryType));
|
|
1393
|
+
});
|
|
1394
|
+
const mdr = parser.createMessage(...messageFields);
|
|
1395
|
+
if (!parser.connected) {
|
|
1396
|
+
parser.logger.log({
|
|
1397
|
+
level: "error",
|
|
1398
|
+
message: "Not connected. Cannot send market data request."
|
|
1399
|
+
});
|
|
302
1400
|
return {
|
|
303
|
-
|
|
1401
|
+
content: [
|
|
304
1402
|
{
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
1403
|
+
type: "text",
|
|
1404
|
+
text: "Error: Not connected. Ignoring message.",
|
|
1405
|
+
uri: "marketDataRequest"
|
|
1406
|
+
}
|
|
1407
|
+
],
|
|
1408
|
+
isError: true
|
|
1409
|
+
};
|
|
1410
|
+
}
|
|
1411
|
+
parser.logger.log({
|
|
1412
|
+
level: "info",
|
|
1413
|
+
message: `Sending market data request message: ${JSON.stringify(mdr?.toFIXJSON())}`
|
|
1414
|
+
});
|
|
1415
|
+
parser.send(mdr);
|
|
1416
|
+
const fixData = await response;
|
|
1417
|
+
parser.logger.log({
|
|
1418
|
+
level: "info",
|
|
1419
|
+
message: `Received market data response for request ID: ${args.mdReqID}`
|
|
1420
|
+
});
|
|
1421
|
+
return {
|
|
1422
|
+
content: [
|
|
1423
|
+
{
|
|
1424
|
+
type: "text",
|
|
1425
|
+
text: `Market data for ${args.symbols.join(", ")}: ${JSON.stringify(fixData.toFIXJSON())}`,
|
|
1426
|
+
uri: "marketDataRequest"
|
|
1427
|
+
}
|
|
1428
|
+
]
|
|
1429
|
+
};
|
|
1430
|
+
} catch (error) {
|
|
1431
|
+
return {
|
|
1432
|
+
content: [
|
|
1433
|
+
{
|
|
1434
|
+
type: "text",
|
|
1435
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to request market data"}`,
|
|
1436
|
+
uri: "marketDataRequest"
|
|
1437
|
+
}
|
|
1438
|
+
],
|
|
1439
|
+
isError: true
|
|
1440
|
+
};
|
|
1441
|
+
}
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
var aggregateMarketData = (priceHistory, maxPoints = 500) => {
|
|
1445
|
+
if (priceHistory.length <= maxPoints) {
|
|
1446
|
+
return priceHistory;
|
|
1447
|
+
}
|
|
1448
|
+
const result = [];
|
|
1449
|
+
const step = priceHistory.length / maxPoints;
|
|
1450
|
+
result.push(priceHistory[0]);
|
|
1451
|
+
for (let i = 1; i < maxPoints - 1; i++) {
|
|
1452
|
+
const startIndex = Math.floor(i * step);
|
|
1453
|
+
const endIndex = Math.floor((i + 1) * step);
|
|
1454
|
+
const segment = priceHistory.slice(startIndex, endIndex);
|
|
1455
|
+
if (segment.length === 0) continue;
|
|
1456
|
+
const aggregatedPoint = {
|
|
1457
|
+
timestamp: segment[0].timestamp,
|
|
1458
|
+
// Use timestamp of first point in segment
|
|
1459
|
+
bid: segment.reduce((sum2, p) => sum2 + p.bid, 0) / segment.length,
|
|
1460
|
+
offer: segment.reduce((sum2, p) => sum2 + p.offer, 0) / segment.length,
|
|
1461
|
+
spread: segment.reduce((sum2, p) => sum2 + p.spread, 0) / segment.length,
|
|
1462
|
+
volume: segment.reduce((sum2, p) => sum2 + p.volume, 0) / segment.length,
|
|
1463
|
+
trade: segment.reduce((sum2, p) => sum2 + p.trade, 0) / segment.length,
|
|
1464
|
+
indexValue: segment.reduce((sum2, p) => sum2 + p.indexValue, 0) / segment.length,
|
|
1465
|
+
openingPrice: segment.reduce((sum2, p) => sum2 + p.openingPrice, 0) / segment.length,
|
|
1466
|
+
closingPrice: segment.reduce((sum2, p) => sum2 + p.closingPrice, 0) / segment.length,
|
|
1467
|
+
settlementPrice: segment.reduce((sum2, p) => sum2 + p.settlementPrice, 0) / segment.length,
|
|
1468
|
+
tradingSessionHighPrice: segment.reduce((sum2, p) => sum2 + p.tradingSessionHighPrice, 0) / segment.length,
|
|
1469
|
+
tradingSessionLowPrice: segment.reduce((sum2, p) => sum2 + p.tradingSessionLowPrice, 0) / segment.length,
|
|
1470
|
+
vwap: segment.reduce((sum2, p) => sum2 + p.vwap, 0) / segment.length,
|
|
1471
|
+
imbalance: segment.reduce((sum2, p) => sum2 + p.imbalance, 0) / segment.length,
|
|
1472
|
+
openInterest: segment.reduce((sum2, p) => sum2 + p.openInterest, 0) / segment.length,
|
|
1473
|
+
compositeUnderlyingPrice: segment.reduce((sum2, p) => sum2 + p.compositeUnderlyingPrice, 0) / segment.length,
|
|
1474
|
+
simulatedSellPrice: segment.reduce((sum2, p) => sum2 + p.simulatedSellPrice, 0) / segment.length,
|
|
1475
|
+
simulatedBuyPrice: segment.reduce((sum2, p) => sum2 + p.simulatedBuyPrice, 0) / segment.length,
|
|
1476
|
+
marginRate: segment.reduce((sum2, p) => sum2 + p.marginRate, 0) / segment.length,
|
|
1477
|
+
midPrice: segment.reduce((sum2, p) => sum2 + p.midPrice, 0) / segment.length,
|
|
1478
|
+
emptyBook: segment.reduce((sum2, p) => sum2 + p.emptyBook, 0) / segment.length,
|
|
1479
|
+
settleHighPrice: segment.reduce((sum2, p) => sum2 + p.settleHighPrice, 0) / segment.length,
|
|
1480
|
+
settleLowPrice: segment.reduce((sum2, p) => sum2 + p.settleLowPrice, 0) / segment.length,
|
|
1481
|
+
priorSettlePrice: segment.reduce((sum2, p) => sum2 + p.priorSettlePrice, 0) / segment.length,
|
|
1482
|
+
sessionHighBid: segment.reduce((sum2, p) => sum2 + p.sessionHighBid, 0) / segment.length,
|
|
1483
|
+
sessionLowOffer: segment.reduce((sum2, p) => sum2 + p.sessionLowOffer, 0) / segment.length,
|
|
1484
|
+
earlyPrices: segment.reduce((sum2, p) => sum2 + p.earlyPrices, 0) / segment.length,
|
|
1485
|
+
auctionClearingPrice: segment.reduce((sum2, p) => sum2 + p.auctionClearingPrice, 0) / segment.length,
|
|
1486
|
+
swapValueFactor: segment.reduce((sum2, p) => sum2 + p.swapValueFactor, 0) / segment.length,
|
|
1487
|
+
dailyValueAdjustmentForLongPositions: segment.reduce((sum2, p) => sum2 + p.dailyValueAdjustmentForLongPositions, 0) / segment.length,
|
|
1488
|
+
cumulativeValueAdjustmentForLongPositions: segment.reduce((sum2, p) => sum2 + p.cumulativeValueAdjustmentForLongPositions, 0) / segment.length,
|
|
1489
|
+
dailyValueAdjustmentForShortPositions: segment.reduce((sum2, p) => sum2 + p.dailyValueAdjustmentForShortPositions, 0) / segment.length,
|
|
1490
|
+
cumulativeValueAdjustmentForShortPositions: segment.reduce((sum2, p) => sum2 + p.cumulativeValueAdjustmentForShortPositions, 0) / segment.length,
|
|
1491
|
+
fixingPrice: segment.reduce((sum2, p) => sum2 + p.fixingPrice, 0) / segment.length,
|
|
1492
|
+
cashRate: segment.reduce((sum2, p) => sum2 + p.cashRate, 0) / segment.length,
|
|
1493
|
+
recoveryRate: segment.reduce((sum2, p) => sum2 + p.recoveryRate, 0) / segment.length,
|
|
1494
|
+
recoveryRateForLong: segment.reduce((sum2, p) => sum2 + p.recoveryRateForLong, 0) / segment.length,
|
|
1495
|
+
recoveryRateForShort: segment.reduce((sum2, p) => sum2 + p.recoveryRateForShort, 0) / segment.length,
|
|
1496
|
+
marketBid: segment.reduce((sum2, p) => sum2 + p.marketBid, 0) / segment.length,
|
|
1497
|
+
marketOffer: segment.reduce((sum2, p) => sum2 + p.marketOffer, 0) / segment.length,
|
|
1498
|
+
shortSaleMinPrice: segment.reduce((sum2, p) => sum2 + p.shortSaleMinPrice, 0) / segment.length,
|
|
1499
|
+
previousClosingPrice: segment.reduce((sum2, p) => sum2 + p.previousClosingPrice, 0) / segment.length,
|
|
1500
|
+
thresholdLimitPriceBanding: segment.reduce((sum2, p) => sum2 + p.thresholdLimitPriceBanding, 0) / segment.length,
|
|
1501
|
+
dailyFinancingValue: segment.reduce((sum2, p) => sum2 + p.dailyFinancingValue, 0) / segment.length,
|
|
1502
|
+
accruedFinancingValue: segment.reduce((sum2, p) => sum2 + p.accruedFinancingValue, 0) / segment.length,
|
|
1503
|
+
twap: segment.reduce((sum2, p) => sum2 + p.twap, 0) / segment.length
|
|
1504
|
+
};
|
|
1505
|
+
result.push(aggregatedPoint);
|
|
1506
|
+
}
|
|
1507
|
+
result.push(priceHistory[priceHistory.length - 1]);
|
|
1508
|
+
return result;
|
|
1509
|
+
};
|
|
1510
|
+
var createGetStockGraphHandler = (marketDataPrices) => {
|
|
1511
|
+
return async (args) => {
|
|
1512
|
+
try {
|
|
1513
|
+
const symbol = args.symbol;
|
|
1514
|
+
const priceHistory = marketDataPrices.get(symbol) || [];
|
|
1515
|
+
if (priceHistory.length === 0) {
|
|
1516
|
+
return {
|
|
1517
|
+
content: [
|
|
316
1518
|
{
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
parameters: {
|
|
321
|
-
type: "object",
|
|
322
|
-
properties: {
|
|
323
|
-
symbol: { type: "string" }
|
|
324
|
-
},
|
|
325
|
-
required: ["symbol"]
|
|
326
|
-
}
|
|
1519
|
+
type: "text",
|
|
1520
|
+
text: `No price data available for ${symbol}`,
|
|
1521
|
+
uri: "getStockGraph"
|
|
327
1522
|
}
|
|
328
1523
|
]
|
|
329
1524
|
};
|
|
330
1525
|
}
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
1526
|
+
const aggregatedData = aggregateMarketData(priceHistory, 500);
|
|
1527
|
+
const chart = new import_quickchart_js.default();
|
|
1528
|
+
chart.setWidth(1200);
|
|
1529
|
+
chart.setHeight(600);
|
|
1530
|
+
chart.setBackgroundColor("transparent");
|
|
1531
|
+
const labels = aggregatedData.map((point) => new Date(point.timestamp).toLocaleTimeString());
|
|
1532
|
+
const bidData = aggregatedData.map((point) => point.bid);
|
|
1533
|
+
const offerData = aggregatedData.map((point) => point.offer);
|
|
1534
|
+
const spreadData = aggregatedData.map((point) => point.spread);
|
|
1535
|
+
const volumeData = aggregatedData.map((point) => point.volume);
|
|
1536
|
+
const tradeData = aggregatedData.map((point) => point.trade);
|
|
1537
|
+
const vwapData = aggregatedData.map((point) => point.vwap);
|
|
1538
|
+
const twapData = aggregatedData.map((point) => point.twap);
|
|
1539
|
+
const maxVolume = Math.max(...volumeData.filter((v) => v > 0));
|
|
1540
|
+
const maxPrice = Math.max(...bidData, ...offerData, ...tradeData, ...vwapData, ...twapData);
|
|
1541
|
+
const normalizedVolumeData = volumeData.map((v) => v / maxVolume * maxPrice * 0.3);
|
|
1542
|
+
const config = {
|
|
1543
|
+
type: "line",
|
|
1544
|
+
data: {
|
|
1545
|
+
labels,
|
|
1546
|
+
datasets: [
|
|
337
1547
|
{
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
},
|
|
345
|
-
required: ["fixString"]
|
|
346
|
-
}
|
|
1548
|
+
label: "Bid",
|
|
1549
|
+
data: bidData,
|
|
1550
|
+
borderColor: "#28a745",
|
|
1551
|
+
backgroundColor: "rgba(40, 167, 69, 0.1)",
|
|
1552
|
+
fill: false,
|
|
1553
|
+
tension: 0.4
|
|
347
1554
|
},
|
|
348
1555
|
{
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
},
|
|
356
|
-
required: ["fixString"]
|
|
357
|
-
}
|
|
1556
|
+
label: "Offer",
|
|
1557
|
+
data: offerData,
|
|
1558
|
+
borderColor: "#dc3545",
|
|
1559
|
+
backgroundColor: "rgba(220, 53, 69, 0.1)",
|
|
1560
|
+
fill: false,
|
|
1561
|
+
tension: 0.4
|
|
358
1562
|
},
|
|
359
1563
|
{
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
handlInst: { type: "string", enum: ["1", "2", "3"] },
|
|
367
|
-
quantity: { type: "string" },
|
|
368
|
-
price: { type: "string" },
|
|
369
|
-
ordType: {
|
|
370
|
-
type: "string",
|
|
371
|
-
enum: [
|
|
372
|
-
"1",
|
|
373
|
-
"2",
|
|
374
|
-
"3",
|
|
375
|
-
"4",
|
|
376
|
-
"5",
|
|
377
|
-
"6",
|
|
378
|
-
"7",
|
|
379
|
-
"8",
|
|
380
|
-
"9",
|
|
381
|
-
"A",
|
|
382
|
-
"B",
|
|
383
|
-
"C",
|
|
384
|
-
"D",
|
|
385
|
-
"E",
|
|
386
|
-
"F",
|
|
387
|
-
"G",
|
|
388
|
-
"H",
|
|
389
|
-
"I",
|
|
390
|
-
"J",
|
|
391
|
-
"K",
|
|
392
|
-
"L",
|
|
393
|
-
"M",
|
|
394
|
-
"P",
|
|
395
|
-
"Q",
|
|
396
|
-
"R",
|
|
397
|
-
"S"
|
|
398
|
-
]
|
|
399
|
-
},
|
|
400
|
-
side: {
|
|
401
|
-
type: "string",
|
|
402
|
-
enum: [
|
|
403
|
-
"1",
|
|
404
|
-
"2",
|
|
405
|
-
"3",
|
|
406
|
-
"4",
|
|
407
|
-
"5",
|
|
408
|
-
"6",
|
|
409
|
-
"7",
|
|
410
|
-
"8",
|
|
411
|
-
"9",
|
|
412
|
-
"A",
|
|
413
|
-
"B",
|
|
414
|
-
"C",
|
|
415
|
-
"D",
|
|
416
|
-
"E",
|
|
417
|
-
"F",
|
|
418
|
-
"G",
|
|
419
|
-
"H"
|
|
420
|
-
]
|
|
421
|
-
},
|
|
422
|
-
symbol: { type: "string" },
|
|
423
|
-
timeInForce: {
|
|
424
|
-
type: "string",
|
|
425
|
-
enum: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C"]
|
|
426
|
-
}
|
|
427
|
-
},
|
|
428
|
-
required: [
|
|
429
|
-
"clOrdID",
|
|
430
|
-
"handlInst",
|
|
431
|
-
"quantity",
|
|
432
|
-
"price",
|
|
433
|
-
"ordType",
|
|
434
|
-
"side",
|
|
435
|
-
"symbol",
|
|
436
|
-
"timeInForce"
|
|
437
|
-
]
|
|
438
|
-
}
|
|
1564
|
+
label: "Spread",
|
|
1565
|
+
data: spreadData,
|
|
1566
|
+
borderColor: "#6c757d",
|
|
1567
|
+
backgroundColor: "rgba(108, 117, 125, 0.1)",
|
|
1568
|
+
fill: false,
|
|
1569
|
+
tension: 0.4
|
|
439
1570
|
},
|
|
440
1571
|
{
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
handlInst: { type: "string", enum: ["1", "2", "3"] },
|
|
448
|
-
quantity: { type: "string" },
|
|
449
|
-
price: { type: "string" },
|
|
450
|
-
ordType: { type: "string" },
|
|
451
|
-
side: { type: "string" },
|
|
452
|
-
symbol: { type: "string" },
|
|
453
|
-
timeInForce: { type: "string" }
|
|
454
|
-
},
|
|
455
|
-
required: [
|
|
456
|
-
"clOrdID",
|
|
457
|
-
"handlInst",
|
|
458
|
-
"quantity",
|
|
459
|
-
"price",
|
|
460
|
-
"ordType",
|
|
461
|
-
"side",
|
|
462
|
-
"symbol",
|
|
463
|
-
"timeInForce"
|
|
464
|
-
]
|
|
465
|
-
}
|
|
1572
|
+
label: "Trade",
|
|
1573
|
+
data: tradeData,
|
|
1574
|
+
borderColor: "#ffc107",
|
|
1575
|
+
backgroundColor: "rgba(255, 193, 7, 0.1)",
|
|
1576
|
+
fill: false,
|
|
1577
|
+
tension: 0.4
|
|
466
1578
|
},
|
|
467
1579
|
{
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
1580
|
+
label: "VWAP",
|
|
1581
|
+
data: vwapData,
|
|
1582
|
+
borderColor: "#17a2b8",
|
|
1583
|
+
backgroundColor: "rgba(23, 162, 184, 0.1)",
|
|
1584
|
+
fill: false,
|
|
1585
|
+
tension: 0.4
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
label: "TWAP",
|
|
1589
|
+
data: twapData,
|
|
1590
|
+
borderColor: "#6610f2",
|
|
1591
|
+
backgroundColor: "rgba(102, 16, 242, 0.1)",
|
|
1592
|
+
fill: false,
|
|
1593
|
+
tension: 0.4
|
|
1594
|
+
},
|
|
1595
|
+
{
|
|
1596
|
+
label: "Volume (Normalized)",
|
|
1597
|
+
data: normalizedVolumeData,
|
|
1598
|
+
borderColor: "#007bff",
|
|
1599
|
+
backgroundColor: "rgba(0, 123, 255, 0.1)",
|
|
1600
|
+
fill: true,
|
|
1601
|
+
tension: 0.4
|
|
487
1602
|
}
|
|
488
1603
|
]
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
name: import_zod.z.string(),
|
|
497
|
-
arguments: import_zod.z.any(),
|
|
498
|
-
_meta: import_zod.z.object({
|
|
499
|
-
progressToken: import_zod.z.number()
|
|
500
|
-
})
|
|
501
|
-
})
|
|
502
|
-
}),
|
|
503
|
-
async (request, extra) => {
|
|
504
|
-
const { name, arguments: args } = request.params;
|
|
505
|
-
switch (name) {
|
|
506
|
-
case "parse":
|
|
507
|
-
try {
|
|
508
|
-
const parsedMessage = this.parser?.parse(args.fixString);
|
|
509
|
-
if (!parsedMessage || parsedMessage.length === 0) {
|
|
510
|
-
return {
|
|
511
|
-
contents: [
|
|
512
|
-
{
|
|
513
|
-
type: "text",
|
|
514
|
-
text: "Error: Failed to parse FIX string",
|
|
515
|
-
uri: "parse"
|
|
516
|
-
}
|
|
517
|
-
],
|
|
518
|
-
isError: true
|
|
519
|
-
};
|
|
520
|
-
}
|
|
521
|
-
return {
|
|
522
|
-
contents: [
|
|
523
|
-
{
|
|
524
|
-
type: "text",
|
|
525
|
-
text: `${parsedMessage[0].description}
|
|
526
|
-
${parsedMessage[0].messageTypeDescription}`,
|
|
527
|
-
uri: "parse"
|
|
528
|
-
}
|
|
529
|
-
]
|
|
530
|
-
};
|
|
531
|
-
} catch (error) {
|
|
532
|
-
return {
|
|
533
|
-
contents: [
|
|
534
|
-
{
|
|
535
|
-
type: "text",
|
|
536
|
-
text: `Error: ${error instanceof Error ? error.message : "Failed to parse FIX string"}`,
|
|
537
|
-
uri: "parse"
|
|
538
|
-
}
|
|
539
|
-
],
|
|
540
|
-
isError: true
|
|
541
|
-
};
|
|
1604
|
+
},
|
|
1605
|
+
options: {
|
|
1606
|
+
responsive: true,
|
|
1607
|
+
plugins: {
|
|
1608
|
+
title: {
|
|
1609
|
+
display: true,
|
|
1610
|
+
text: `${symbol} Market Data (Volume normalized to 30% of max price)`
|
|
542
1611
|
}
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
type: "text",
|
|
551
|
-
text: "Error: Failed to parse FIX string",
|
|
552
|
-
uri: "parseToJSON"
|
|
553
|
-
}
|
|
554
|
-
],
|
|
555
|
-
isError: true
|
|
556
|
-
};
|
|
1612
|
+
},
|
|
1613
|
+
scales: {
|
|
1614
|
+
y: {
|
|
1615
|
+
beginAtZero: false,
|
|
1616
|
+
title: {
|
|
1617
|
+
display: true,
|
|
1618
|
+
text: "Price / Normalized Volume"
|
|
557
1619
|
}
|
|
558
|
-
return {
|
|
559
|
-
contents: [
|
|
560
|
-
{
|
|
561
|
-
type: "text",
|
|
562
|
-
text: `${parsedMessage[0].toFIXJSON()}`,
|
|
563
|
-
uri: "parseToJSON"
|
|
564
|
-
}
|
|
565
|
-
]
|
|
566
|
-
};
|
|
567
|
-
} catch (error) {
|
|
568
|
-
return {
|
|
569
|
-
contents: [
|
|
570
|
-
{
|
|
571
|
-
type: "text",
|
|
572
|
-
text: `Error: ${error instanceof Error ? error.message : "Failed to parse FIX string"}`,
|
|
573
|
-
uri: "parseToJSON"
|
|
574
|
-
}
|
|
575
|
-
],
|
|
576
|
-
isError: true
|
|
577
|
-
};
|
|
578
1620
|
}
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
1621
|
+
}
|
|
1622
|
+
}
|
|
1623
|
+
};
|
|
1624
|
+
chart.setConfig(config);
|
|
1625
|
+
const imageBuffer = await chart.toBinary();
|
|
1626
|
+
const base64 = imageBuffer.toString("base64");
|
|
1627
|
+
return {
|
|
1628
|
+
content: [
|
|
1629
|
+
{
|
|
1630
|
+
type: "resource",
|
|
1631
|
+
resource: {
|
|
1632
|
+
uri: "resource://graph",
|
|
1633
|
+
mimeType: "image/png",
|
|
1634
|
+
blob: base64
|
|
1635
|
+
}
|
|
1636
|
+
}
|
|
1637
|
+
]
|
|
1638
|
+
};
|
|
1639
|
+
} catch (error) {
|
|
1640
|
+
return {
|
|
1641
|
+
content: [
|
|
1642
|
+
{
|
|
1643
|
+
type: "text",
|
|
1644
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to generate graph"}`,
|
|
1645
|
+
uri: "getStockGraph"
|
|
1646
|
+
}
|
|
1647
|
+
],
|
|
1648
|
+
isError: true
|
|
1649
|
+
};
|
|
1650
|
+
}
|
|
1651
|
+
};
|
|
1652
|
+
};
|
|
1653
|
+
var createGetStockPriceHistoryHandler = (marketDataPrices) => {
|
|
1654
|
+
return async (args) => {
|
|
1655
|
+
try {
|
|
1656
|
+
const symbol = args.symbol;
|
|
1657
|
+
const priceHistory = marketDataPrices.get(symbol) || [];
|
|
1658
|
+
if (priceHistory.length === 0) {
|
|
1659
|
+
return {
|
|
1660
|
+
content: [
|
|
1661
|
+
{
|
|
1662
|
+
type: "text",
|
|
1663
|
+
text: `No price data available for ${symbol}`,
|
|
1664
|
+
uri: "getStockPriceHistory"
|
|
1665
|
+
}
|
|
1666
|
+
]
|
|
1667
|
+
};
|
|
1668
|
+
}
|
|
1669
|
+
return {
|
|
1670
|
+
content: [
|
|
1671
|
+
{
|
|
1672
|
+
type: "text",
|
|
1673
|
+
text: JSON.stringify(
|
|
1674
|
+
{
|
|
1675
|
+
symbol,
|
|
1676
|
+
count: priceHistory.length,
|
|
1677
|
+
data: priceHistory.map((point) => ({
|
|
1678
|
+
timestamp: new Date(point.timestamp).toISOString(),
|
|
1679
|
+
bid: point.bid,
|
|
1680
|
+
offer: point.offer,
|
|
1681
|
+
spread: point.spread,
|
|
1682
|
+
volume: point.volume,
|
|
1683
|
+
trade: point.trade,
|
|
1684
|
+
indexValue: point.indexValue,
|
|
1685
|
+
openingPrice: point.openingPrice,
|
|
1686
|
+
closingPrice: point.closingPrice,
|
|
1687
|
+
settlementPrice: point.settlementPrice,
|
|
1688
|
+
tradingSessionHighPrice: point.tradingSessionHighPrice,
|
|
1689
|
+
tradingSessionLowPrice: point.tradingSessionLowPrice,
|
|
1690
|
+
vwap: point.vwap,
|
|
1691
|
+
imbalance: point.imbalance,
|
|
1692
|
+
openInterest: point.openInterest,
|
|
1693
|
+
compositeUnderlyingPrice: point.compositeUnderlyingPrice,
|
|
1694
|
+
simulatedSellPrice: point.simulatedSellPrice,
|
|
1695
|
+
simulatedBuyPrice: point.simulatedBuyPrice,
|
|
1696
|
+
marginRate: point.marginRate,
|
|
1697
|
+
midPrice: point.midPrice,
|
|
1698
|
+
emptyBook: point.emptyBook,
|
|
1699
|
+
settleHighPrice: point.settleHighPrice,
|
|
1700
|
+
settleLowPrice: point.settleLowPrice,
|
|
1701
|
+
priorSettlePrice: point.priorSettlePrice,
|
|
1702
|
+
sessionHighBid: point.sessionHighBid,
|
|
1703
|
+
sessionLowOffer: point.sessionLowOffer,
|
|
1704
|
+
earlyPrices: point.earlyPrices,
|
|
1705
|
+
auctionClearingPrice: point.auctionClearingPrice,
|
|
1706
|
+
swapValueFactor: point.swapValueFactor,
|
|
1707
|
+
dailyValueAdjustmentForLongPositions: point.dailyValueAdjustmentForLongPositions,
|
|
1708
|
+
cumulativeValueAdjustmentForLongPositions: point.cumulativeValueAdjustmentForLongPositions,
|
|
1709
|
+
dailyValueAdjustmentForShortPositions: point.dailyValueAdjustmentForShortPositions,
|
|
1710
|
+
cumulativeValueAdjustmentForShortPositions: point.cumulativeValueAdjustmentForShortPositions,
|
|
1711
|
+
fixingPrice: point.fixingPrice,
|
|
1712
|
+
cashRate: point.cashRate,
|
|
1713
|
+
recoveryRate: point.recoveryRate,
|
|
1714
|
+
recoveryRateForLong: point.recoveryRateForLong,
|
|
1715
|
+
recoveryRateForShort: point.recoveryRateForShort,
|
|
1716
|
+
marketBid: point.marketBid,
|
|
1717
|
+
marketOffer: point.marketOffer,
|
|
1718
|
+
shortSaleMinPrice: point.shortSaleMinPrice,
|
|
1719
|
+
previousClosingPrice: point.previousClosingPrice,
|
|
1720
|
+
thresholdLimitPriceBanding: point.thresholdLimitPriceBanding,
|
|
1721
|
+
dailyFinancingValue: point.dailyFinancingValue,
|
|
1722
|
+
accruedFinancingValue: point.accruedFinancingValue,
|
|
1723
|
+
twap: point.twap
|
|
1724
|
+
}))
|
|
1725
|
+
},
|
|
1726
|
+
null,
|
|
1727
|
+
2
|
|
1728
|
+
),
|
|
1729
|
+
uri: "getStockPriceHistory"
|
|
1730
|
+
}
|
|
1731
|
+
]
|
|
1732
|
+
};
|
|
1733
|
+
} catch (error) {
|
|
1734
|
+
return {
|
|
1735
|
+
content: [
|
|
1736
|
+
{
|
|
1737
|
+
type: "text",
|
|
1738
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to get price history"}`,
|
|
1739
|
+
uri: "getStockPriceHistory"
|
|
1740
|
+
}
|
|
1741
|
+
],
|
|
1742
|
+
isError: true
|
|
1743
|
+
};
|
|
1744
|
+
}
|
|
1745
|
+
};
|
|
1746
|
+
};
|
|
1747
|
+
|
|
1748
|
+
// src/tools/order.ts
|
|
1749
|
+
var import_fixparser2 = require("fixparser");
|
|
1750
|
+
var ordTypeNames = {
|
|
1751
|
+
"1": "Market",
|
|
1752
|
+
"2": "Limit",
|
|
1753
|
+
"3": "Stop",
|
|
1754
|
+
"4": "StopLimit",
|
|
1755
|
+
"5": "MarketOnClose",
|
|
1756
|
+
"6": "WithOrWithout",
|
|
1757
|
+
"7": "LimitOrBetter",
|
|
1758
|
+
"8": "LimitWithOrWithout",
|
|
1759
|
+
"9": "OnBasis",
|
|
1760
|
+
A: "OnClose",
|
|
1761
|
+
B: "LimitOnClose",
|
|
1762
|
+
C: "ForexMarket",
|
|
1763
|
+
D: "PreviouslyQuoted",
|
|
1764
|
+
E: "PreviouslyIndicated",
|
|
1765
|
+
F: "ForexLimit",
|
|
1766
|
+
G: "ForexSwap",
|
|
1767
|
+
H: "ForexPreviouslyQuoted",
|
|
1768
|
+
I: "Funari",
|
|
1769
|
+
J: "MarketIfTouched",
|
|
1770
|
+
K: "MarketWithLeftOverAsLimit",
|
|
1771
|
+
L: "PreviousFundValuationPoint",
|
|
1772
|
+
M: "NextFundValuationPoint",
|
|
1773
|
+
P: "Pegged",
|
|
1774
|
+
Q: "CounterOrderSelection",
|
|
1775
|
+
R: "StopOnBidOrOffer",
|
|
1776
|
+
S: "StopLimitOnBidOrOffer"
|
|
1777
|
+
};
|
|
1778
|
+
var sideNames = {
|
|
1779
|
+
"1": "Buy",
|
|
1780
|
+
"2": "Sell",
|
|
1781
|
+
"3": "BuyMinus",
|
|
1782
|
+
"4": "SellPlus",
|
|
1783
|
+
"5": "SellShort",
|
|
1784
|
+
"6": "SellShortExempt",
|
|
1785
|
+
"7": "Undisclosed",
|
|
1786
|
+
"8": "Cross",
|
|
1787
|
+
"9": "CrossShort",
|
|
1788
|
+
A: "CrossShortExempt",
|
|
1789
|
+
B: "AsDefined",
|
|
1790
|
+
C: "Opposite",
|
|
1791
|
+
D: "Subscribe",
|
|
1792
|
+
E: "Redeem",
|
|
1793
|
+
F: "Lend",
|
|
1794
|
+
G: "Borrow",
|
|
1795
|
+
H: "SellUndisclosed"
|
|
1796
|
+
};
|
|
1797
|
+
var timeInForceNames = {
|
|
1798
|
+
"0": "Day",
|
|
1799
|
+
"1": "GoodTillCancel",
|
|
1800
|
+
"2": "AtTheOpening",
|
|
1801
|
+
"3": "ImmediateOrCancel",
|
|
1802
|
+
"4": "FillOrKill",
|
|
1803
|
+
"5": "GoodTillCrossing",
|
|
1804
|
+
"6": "GoodTillDate",
|
|
1805
|
+
"7": "AtTheClose",
|
|
1806
|
+
"8": "GoodThroughCrossing",
|
|
1807
|
+
"9": "AtCrossing",
|
|
1808
|
+
A: "GoodForTime",
|
|
1809
|
+
B: "GoodForAuction",
|
|
1810
|
+
C: "GoodForMonth"
|
|
1811
|
+
};
|
|
1812
|
+
var handlInstNames = {
|
|
1813
|
+
"1": "AutomatedExecutionNoIntervention",
|
|
1814
|
+
"2": "AutomatedExecutionInterventionOK",
|
|
1815
|
+
"3": "ManualOrder"
|
|
1816
|
+
};
|
|
1817
|
+
var createVerifyOrderHandler = (parser, verifiedOrders) => {
|
|
1818
|
+
return async (args) => {
|
|
1819
|
+
try {
|
|
1820
|
+
verifiedOrders.set(args.clOrdID, {
|
|
1821
|
+
clOrdID: args.clOrdID,
|
|
1822
|
+
handlInst: args.handlInst,
|
|
1823
|
+
quantity: Number.parseFloat(String(args.quantity)),
|
|
1824
|
+
price: Number.parseFloat(String(args.price)),
|
|
1825
|
+
ordType: args.ordType,
|
|
1826
|
+
side: args.side,
|
|
1827
|
+
symbol: args.symbol,
|
|
1828
|
+
timeInForce: args.timeInForce
|
|
1829
|
+
});
|
|
1830
|
+
return {
|
|
1831
|
+
content: [
|
|
1832
|
+
{
|
|
1833
|
+
type: "text",
|
|
1834
|
+
text: `VERIFICATION: All parameters valid. Ready to proceed with order execution.
|
|
1835
|
+
|
|
664
1836
|
Parameters verified:
|
|
665
1837
|
- ClOrdID: ${args.clOrdID}
|
|
666
1838
|
- HandlInst: ${args.handlInst} (${handlInstNames[args.handlInst]})
|
|
@@ -671,350 +1843,543 @@ Parameters verified:
|
|
|
671
1843
|
- Symbol: ${args.symbol}
|
|
672
1844
|
- TimeInForce: ${args.timeInForce} (${timeInForceNames[args.timeInForce]})
|
|
673
1845
|
|
|
674
|
-
To execute this order, call the executeOrder tool with these exact same parameters
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
1846
|
+
To execute this order, call the executeOrder tool with these exact same parameters. Important: The user has to explicitly confirm before executeOrder is called!`,
|
|
1847
|
+
uri: "verifyOrder"
|
|
1848
|
+
}
|
|
1849
|
+
]
|
|
1850
|
+
};
|
|
1851
|
+
} catch (error) {
|
|
1852
|
+
return {
|
|
1853
|
+
content: [
|
|
1854
|
+
{
|
|
1855
|
+
type: "text",
|
|
1856
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to verify order parameters"}`,
|
|
1857
|
+
uri: "verifyOrder"
|
|
1858
|
+
}
|
|
1859
|
+
],
|
|
1860
|
+
isError: true
|
|
1861
|
+
};
|
|
1862
|
+
}
|
|
1863
|
+
};
|
|
1864
|
+
};
|
|
1865
|
+
var createExecuteOrderHandler = (parser, verifiedOrders, pendingRequests) => {
|
|
1866
|
+
return async (args) => {
|
|
1867
|
+
try {
|
|
1868
|
+
const verifiedOrder = verifiedOrders.get(args.clOrdID);
|
|
1869
|
+
if (!verifiedOrder) {
|
|
1870
|
+
return {
|
|
1871
|
+
content: [
|
|
1872
|
+
{
|
|
1873
|
+
type: "text",
|
|
1874
|
+
text: `Error: Order ${args.clOrdID} has not been verified. Please call verifyOrder first.`,
|
|
1875
|
+
uri: "executeOrder"
|
|
690
1876
|
}
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
],
|
|
703
|
-
isError: true
|
|
704
|
-
};
|
|
705
|
-
}
|
|
706
|
-
if (verifiedOrder.handlInst !== args.handlInst || verifiedOrder.quantity !== Number.parseFloat(args.quantity) || verifiedOrder.price !== Number.parseFloat(args.price) || verifiedOrder.ordType !== args.ordType || verifiedOrder.side !== args.side || verifiedOrder.symbol !== args.symbol || verifiedOrder.timeInForce !== args.timeInForce) {
|
|
707
|
-
return {
|
|
708
|
-
contents: [
|
|
709
|
-
{
|
|
710
|
-
type: "text",
|
|
711
|
-
text: "Error: Order parameters do not match the verified order. Please use the exact same parameters that were verified.",
|
|
712
|
-
uri: "executeOrder"
|
|
713
|
-
}
|
|
714
|
-
],
|
|
715
|
-
isError: true
|
|
716
|
-
};
|
|
717
|
-
}
|
|
718
|
-
const response = new Promise((resolve) => {
|
|
719
|
-
this.pendingRequests.set(args.clOrdID, resolve);
|
|
720
|
-
});
|
|
721
|
-
const order = this.parser?.createMessage(
|
|
722
|
-
new import_fixparser.Field(import_fixparser.Fields.MsgType, import_fixparser.Messages.NewOrderSingle),
|
|
723
|
-
new import_fixparser.Field(import_fixparser.Fields.MsgSeqNum, this.parser?.getNextTargetMsgSeqNum()),
|
|
724
|
-
new import_fixparser.Field(import_fixparser.Fields.SenderCompID, this.parser?.sender),
|
|
725
|
-
new import_fixparser.Field(import_fixparser.Fields.TargetCompID, this.parser?.target),
|
|
726
|
-
new import_fixparser.Field(import_fixparser.Fields.SendingTime, this.parser?.getTimestamp()),
|
|
727
|
-
new import_fixparser.Field(import_fixparser.Fields.ClOrdID, args.clOrdID),
|
|
728
|
-
new import_fixparser.Field(import_fixparser.Fields.Side, args.side),
|
|
729
|
-
new import_fixparser.Field(import_fixparser.Fields.Symbol, args.symbol),
|
|
730
|
-
new import_fixparser.Field(import_fixparser.Fields.OrderQty, Number.parseFloat(args.quantity)),
|
|
731
|
-
new import_fixparser.Field(import_fixparser.Fields.Price, Number.parseFloat(args.price)),
|
|
732
|
-
new import_fixparser.Field(import_fixparser.Fields.OrdType, args.ordType),
|
|
733
|
-
new import_fixparser.Field(import_fixparser.Fields.HandlInst, args.handlInst),
|
|
734
|
-
new import_fixparser.Field(import_fixparser.Fields.TimeInForce, args.timeInForce),
|
|
735
|
-
new import_fixparser.Field(import_fixparser.Fields.TransactTime, this.parser?.getTimestamp())
|
|
736
|
-
);
|
|
737
|
-
if (!this.parser?.connected) {
|
|
738
|
-
return {
|
|
739
|
-
contents: [
|
|
740
|
-
{
|
|
741
|
-
type: "text",
|
|
742
|
-
text: "Error: Not connected. Ignoring message.",
|
|
743
|
-
uri: "executeOrder"
|
|
744
|
-
}
|
|
745
|
-
],
|
|
746
|
-
isError: true
|
|
747
|
-
};
|
|
748
|
-
}
|
|
749
|
-
this.parser?.send(order);
|
|
750
|
-
const fixData = await response;
|
|
751
|
-
this.verifiedOrders.delete(args.clOrdID);
|
|
752
|
-
return {
|
|
753
|
-
contents: [
|
|
754
|
-
{
|
|
755
|
-
type: "text",
|
|
756
|
-
text: fixData.messageType === import_fixparser.Messages.Reject ? `Reject message for order ${args.clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}` : `Execution Report for order ${args.clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}`,
|
|
757
|
-
uri: "executeOrder"
|
|
758
|
-
}
|
|
759
|
-
]
|
|
760
|
-
};
|
|
761
|
-
} catch (error) {
|
|
762
|
-
return {
|
|
763
|
-
contents: [
|
|
764
|
-
{
|
|
765
|
-
type: "text",
|
|
766
|
-
text: `Error: ${error instanceof Error ? error.message : "Failed to execute order"}`,
|
|
767
|
-
uri: "executeOrder"
|
|
768
|
-
}
|
|
769
|
-
],
|
|
770
|
-
isError: true
|
|
771
|
-
};
|
|
1877
|
+
],
|
|
1878
|
+
isError: true
|
|
1879
|
+
};
|
|
1880
|
+
}
|
|
1881
|
+
if (verifiedOrder.handlInst !== args.handlInst || verifiedOrder.quantity !== Number.parseFloat(String(args.quantity)) || verifiedOrder.price !== Number.parseFloat(String(args.price)) || verifiedOrder.ordType !== args.ordType || verifiedOrder.side !== args.side || verifiedOrder.symbol !== args.symbol || verifiedOrder.timeInForce !== args.timeInForce) {
|
|
1882
|
+
return {
|
|
1883
|
+
content: [
|
|
1884
|
+
{
|
|
1885
|
+
type: "text",
|
|
1886
|
+
text: "Error: Order parameters do not match the verified order. Please use the exact same parameters that were verified.",
|
|
1887
|
+
uri: "executeOrder"
|
|
772
1888
|
}
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
1889
|
+
],
|
|
1890
|
+
isError: true
|
|
1891
|
+
};
|
|
1892
|
+
}
|
|
1893
|
+
const response = new Promise((resolve) => {
|
|
1894
|
+
pendingRequests.set(args.clOrdID, resolve);
|
|
1895
|
+
});
|
|
1896
|
+
const order = parser.createMessage(
|
|
1897
|
+
new import_fixparser2.Field(import_fixparser2.Fields.MsgType, import_fixparser2.Messages.NewOrderSingle),
|
|
1898
|
+
new import_fixparser2.Field(import_fixparser2.Fields.MsgSeqNum, parser.getNextTargetMsgSeqNum()),
|
|
1899
|
+
new import_fixparser2.Field(import_fixparser2.Fields.SenderCompID, parser.sender),
|
|
1900
|
+
new import_fixparser2.Field(import_fixparser2.Fields.TargetCompID, parser.target),
|
|
1901
|
+
new import_fixparser2.Field(import_fixparser2.Fields.SendingTime, parser.getTimestamp()),
|
|
1902
|
+
new import_fixparser2.Field(import_fixparser2.Fields.ClOrdID, args.clOrdID),
|
|
1903
|
+
new import_fixparser2.Field(import_fixparser2.Fields.Side, args.side),
|
|
1904
|
+
new import_fixparser2.Field(import_fixparser2.Fields.Symbol, args.symbol),
|
|
1905
|
+
new import_fixparser2.Field(import_fixparser2.Fields.OrderQty, Number.parseFloat(String(args.quantity))),
|
|
1906
|
+
new import_fixparser2.Field(import_fixparser2.Fields.Price, Number.parseFloat(String(args.price))),
|
|
1907
|
+
new import_fixparser2.Field(import_fixparser2.Fields.OrdType, args.ordType),
|
|
1908
|
+
new import_fixparser2.Field(import_fixparser2.Fields.HandlInst, args.handlInst),
|
|
1909
|
+
new import_fixparser2.Field(import_fixparser2.Fields.TimeInForce, args.timeInForce),
|
|
1910
|
+
new import_fixparser2.Field(import_fixparser2.Fields.TransactTime, parser.getTimestamp())
|
|
1911
|
+
);
|
|
1912
|
+
if (!parser.connected) {
|
|
1913
|
+
return {
|
|
1914
|
+
content: [
|
|
1915
|
+
{
|
|
1916
|
+
type: "text",
|
|
1917
|
+
text: "Error: Not connected. Ignoring message.",
|
|
1918
|
+
uri: "executeOrder"
|
|
1919
|
+
}
|
|
1920
|
+
],
|
|
1921
|
+
isError: true
|
|
1922
|
+
};
|
|
1923
|
+
}
|
|
1924
|
+
parser.send(order);
|
|
1925
|
+
const fixData = await response;
|
|
1926
|
+
verifiedOrders.delete(args.clOrdID);
|
|
1927
|
+
return {
|
|
1928
|
+
content: [
|
|
1929
|
+
{
|
|
1930
|
+
type: "text",
|
|
1931
|
+
text: fixData.messageType === import_fixparser2.Messages.Reject ? `Reject message for order ${args.clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}` : `Execution Report for order ${args.clOrdID}: ${JSON.stringify(fixData.toFIXJSON())}`,
|
|
1932
|
+
uri: "executeOrder"
|
|
1933
|
+
}
|
|
1934
|
+
]
|
|
1935
|
+
};
|
|
1936
|
+
} catch (error) {
|
|
1937
|
+
return {
|
|
1938
|
+
content: [
|
|
1939
|
+
{
|
|
1940
|
+
type: "text",
|
|
1941
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to execute order"}`,
|
|
1942
|
+
uri: "executeOrder"
|
|
1943
|
+
}
|
|
1944
|
+
],
|
|
1945
|
+
isError: true
|
|
1946
|
+
};
|
|
1947
|
+
}
|
|
1948
|
+
};
|
|
1949
|
+
};
|
|
1950
|
+
|
|
1951
|
+
// src/tools/parse.ts
|
|
1952
|
+
var createParseHandler = (parser) => {
|
|
1953
|
+
return async (args) => {
|
|
1954
|
+
try {
|
|
1955
|
+
const parsedMessage = parser.parse(args.fixString);
|
|
1956
|
+
if (!parsedMessage || parsedMessage.length === 0) {
|
|
1957
|
+
return {
|
|
1958
|
+
content: [
|
|
1959
|
+
{
|
|
1960
|
+
type: "text",
|
|
1961
|
+
text: "Error: Failed to parse FIX string",
|
|
1962
|
+
uri: "parse"
|
|
1963
|
+
}
|
|
1964
|
+
],
|
|
1965
|
+
isError: true
|
|
1966
|
+
};
|
|
1967
|
+
}
|
|
1968
|
+
return {
|
|
1969
|
+
content: [
|
|
1970
|
+
{
|
|
1971
|
+
type: "text",
|
|
1972
|
+
text: `${parsedMessage[0].description}
|
|
1973
|
+
${parsedMessage[0].messageTypeDescription}`,
|
|
1974
|
+
uri: "parse"
|
|
1975
|
+
}
|
|
1976
|
+
]
|
|
1977
|
+
};
|
|
1978
|
+
} catch (error) {
|
|
1979
|
+
return {
|
|
1980
|
+
content: [
|
|
1981
|
+
{
|
|
1982
|
+
type: "text",
|
|
1983
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to parse FIX string"}`,
|
|
1984
|
+
uri: "parse"
|
|
1985
|
+
}
|
|
1986
|
+
],
|
|
1987
|
+
isError: true
|
|
1988
|
+
};
|
|
1989
|
+
}
|
|
1990
|
+
};
|
|
1991
|
+
};
|
|
1992
|
+
|
|
1993
|
+
// src/tools/parseToJSON.ts
|
|
1994
|
+
var createParseToJSONHandler = (parser) => {
|
|
1995
|
+
return async (args) => {
|
|
1996
|
+
try {
|
|
1997
|
+
const parsedMessage = parser.parse(args.fixString);
|
|
1998
|
+
if (!parsedMessage || parsedMessage.length === 0) {
|
|
1999
|
+
return {
|
|
2000
|
+
content: [
|
|
2001
|
+
{
|
|
2002
|
+
type: "text",
|
|
2003
|
+
text: "Error: Failed to parse FIX string",
|
|
2004
|
+
uri: "parseToJSON"
|
|
832
2005
|
}
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
2006
|
+
],
|
|
2007
|
+
isError: true
|
|
2008
|
+
};
|
|
2009
|
+
}
|
|
2010
|
+
return {
|
|
2011
|
+
content: [
|
|
2012
|
+
{
|
|
2013
|
+
type: "text",
|
|
2014
|
+
text: `${parsedMessage[0].toFIXJSON()}`,
|
|
2015
|
+
uri: "parseToJSON"
|
|
2016
|
+
}
|
|
2017
|
+
]
|
|
2018
|
+
};
|
|
2019
|
+
} catch (error) {
|
|
2020
|
+
return {
|
|
2021
|
+
content: [
|
|
2022
|
+
{
|
|
2023
|
+
type: "text",
|
|
2024
|
+
text: `Error: ${error instanceof Error ? error.message : "Failed to parse FIX string"}`,
|
|
2025
|
+
uri: "parseToJSON"
|
|
2026
|
+
}
|
|
2027
|
+
],
|
|
2028
|
+
isError: true
|
|
2029
|
+
};
|
|
2030
|
+
}
|
|
2031
|
+
};
|
|
2032
|
+
};
|
|
2033
|
+
|
|
2034
|
+
// src/tools/index.ts
|
|
2035
|
+
var createToolHandlers = (parser, verifiedOrders, pendingRequests, marketDataPrices) => ({
|
|
2036
|
+
parse: createParseHandler(parser),
|
|
2037
|
+
parseToJSON: createParseToJSONHandler(parser),
|
|
2038
|
+
verifyOrder: createVerifyOrderHandler(parser, verifiedOrders),
|
|
2039
|
+
executeOrder: createExecuteOrderHandler(parser, verifiedOrders, pendingRequests),
|
|
2040
|
+
marketDataRequest: createMarketDataRequestHandler(parser, pendingRequests),
|
|
2041
|
+
getStockGraph: createGetStockGraphHandler(marketDataPrices),
|
|
2042
|
+
getStockPriceHistory: createGetStockPriceHistoryHandler(marketDataPrices),
|
|
2043
|
+
technicalAnalysis: createTechnicalAnalysisHandler(marketDataPrices)
|
|
2044
|
+
});
|
|
2045
|
+
|
|
2046
|
+
// src/utils/messageHandler.ts
|
|
2047
|
+
var import_fixparser3 = require("fixparser");
|
|
2048
|
+
function getEnumValue(enumObj, name) {
|
|
2049
|
+
return enumObj[name] || name;
|
|
2050
|
+
}
|
|
2051
|
+
function handleMessage(message, parser, pendingRequests, marketDataPrices, maxPriceHistory, onPriceUpdate) {
|
|
2052
|
+
const msgType = message.messageType;
|
|
2053
|
+
if (msgType === import_fixparser3.Messages.MarketDataSnapshotFullRefresh || msgType === import_fixparser3.Messages.MarketDataIncrementalRefresh) {
|
|
2054
|
+
const symbol = message.getField(import_fixparser3.Fields.Symbol)?.value;
|
|
2055
|
+
const fixJson = message.toFIXJSON();
|
|
2056
|
+
const entries = fixJson.Body?.NoMDEntries || [];
|
|
2057
|
+
const data = {
|
|
2058
|
+
timestamp: Date.now(),
|
|
2059
|
+
bid: 0,
|
|
2060
|
+
offer: 0,
|
|
2061
|
+
spread: 0,
|
|
2062
|
+
volume: 0,
|
|
2063
|
+
trade: 0,
|
|
2064
|
+
indexValue: 0,
|
|
2065
|
+
openingPrice: 0,
|
|
2066
|
+
closingPrice: 0,
|
|
2067
|
+
settlementPrice: 0,
|
|
2068
|
+
tradingSessionHighPrice: 0,
|
|
2069
|
+
tradingSessionLowPrice: 0,
|
|
2070
|
+
vwap: 0,
|
|
2071
|
+
imbalance: 0,
|
|
2072
|
+
openInterest: 0,
|
|
2073
|
+
compositeUnderlyingPrice: 0,
|
|
2074
|
+
simulatedSellPrice: 0,
|
|
2075
|
+
simulatedBuyPrice: 0,
|
|
2076
|
+
marginRate: 0,
|
|
2077
|
+
midPrice: 0,
|
|
2078
|
+
emptyBook: 0,
|
|
2079
|
+
settleHighPrice: 0,
|
|
2080
|
+
settleLowPrice: 0,
|
|
2081
|
+
priorSettlePrice: 0,
|
|
2082
|
+
sessionHighBid: 0,
|
|
2083
|
+
sessionLowOffer: 0,
|
|
2084
|
+
earlyPrices: 0,
|
|
2085
|
+
auctionClearingPrice: 0,
|
|
2086
|
+
swapValueFactor: 0,
|
|
2087
|
+
dailyValueAdjustmentForLongPositions: 0,
|
|
2088
|
+
cumulativeValueAdjustmentForLongPositions: 0,
|
|
2089
|
+
dailyValueAdjustmentForShortPositions: 0,
|
|
2090
|
+
cumulativeValueAdjustmentForShortPositions: 0,
|
|
2091
|
+
fixingPrice: 0,
|
|
2092
|
+
cashRate: 0,
|
|
2093
|
+
recoveryRate: 0,
|
|
2094
|
+
recoveryRateForLong: 0,
|
|
2095
|
+
recoveryRateForShort: 0,
|
|
2096
|
+
marketBid: 0,
|
|
2097
|
+
marketOffer: 0,
|
|
2098
|
+
shortSaleMinPrice: 0,
|
|
2099
|
+
previousClosingPrice: 0,
|
|
2100
|
+
thresholdLimitPriceBanding: 0,
|
|
2101
|
+
dailyFinancingValue: 0,
|
|
2102
|
+
accruedFinancingValue: 0,
|
|
2103
|
+
twap: 0
|
|
2104
|
+
};
|
|
2105
|
+
for (const entry of entries) {
|
|
2106
|
+
const entryType = entry.MDEntryType;
|
|
2107
|
+
const price = entry.MDEntryPx ? Number.parseFloat(entry.MDEntryPx) : 0;
|
|
2108
|
+
const size = entry.MDEntrySize ? Number.parseFloat(entry.MDEntrySize) : 0;
|
|
2109
|
+
const enumValue = getEnumValue(import_fixparser3.MDEntryType, entryType);
|
|
2110
|
+
switch (enumValue) {
|
|
2111
|
+
case import_fixparser3.MDEntryType.Bid:
|
|
2112
|
+
data.bid = price;
|
|
2113
|
+
break;
|
|
2114
|
+
case import_fixparser3.MDEntryType.Offer:
|
|
2115
|
+
data.offer = price;
|
|
2116
|
+
break;
|
|
2117
|
+
case import_fixparser3.MDEntryType.Trade:
|
|
2118
|
+
data.trade = price;
|
|
2119
|
+
break;
|
|
2120
|
+
case import_fixparser3.MDEntryType.IndexValue:
|
|
2121
|
+
data.indexValue = price;
|
|
2122
|
+
break;
|
|
2123
|
+
case import_fixparser3.MDEntryType.OpeningPrice:
|
|
2124
|
+
data.openingPrice = price;
|
|
2125
|
+
break;
|
|
2126
|
+
case import_fixparser3.MDEntryType.ClosingPrice:
|
|
2127
|
+
data.closingPrice = price;
|
|
2128
|
+
break;
|
|
2129
|
+
case import_fixparser3.MDEntryType.SettlementPrice:
|
|
2130
|
+
data.settlementPrice = price;
|
|
2131
|
+
break;
|
|
2132
|
+
case import_fixparser3.MDEntryType.TradingSessionHighPrice:
|
|
2133
|
+
data.tradingSessionHighPrice = price;
|
|
2134
|
+
break;
|
|
2135
|
+
case import_fixparser3.MDEntryType.TradingSessionLowPrice:
|
|
2136
|
+
data.tradingSessionLowPrice = price;
|
|
2137
|
+
break;
|
|
2138
|
+
case import_fixparser3.MDEntryType.VWAP:
|
|
2139
|
+
data.vwap = price;
|
|
2140
|
+
break;
|
|
2141
|
+
case import_fixparser3.MDEntryType.Imbalance:
|
|
2142
|
+
data.imbalance = size;
|
|
2143
|
+
break;
|
|
2144
|
+
case import_fixparser3.MDEntryType.TradeVolume:
|
|
2145
|
+
data.volume = size;
|
|
2146
|
+
break;
|
|
2147
|
+
case import_fixparser3.MDEntryType.OpenInterest:
|
|
2148
|
+
data.openInterest = size;
|
|
2149
|
+
break;
|
|
2150
|
+
case import_fixparser3.MDEntryType.CompositeUnderlyingPrice:
|
|
2151
|
+
data.compositeUnderlyingPrice = price;
|
|
2152
|
+
break;
|
|
2153
|
+
case import_fixparser3.MDEntryType.SimulatedSellPrice:
|
|
2154
|
+
data.simulatedSellPrice = price;
|
|
2155
|
+
break;
|
|
2156
|
+
case import_fixparser3.MDEntryType.SimulatedBuyPrice:
|
|
2157
|
+
data.simulatedBuyPrice = price;
|
|
2158
|
+
break;
|
|
2159
|
+
case import_fixparser3.MDEntryType.MarginRate:
|
|
2160
|
+
data.marginRate = price;
|
|
2161
|
+
break;
|
|
2162
|
+
case import_fixparser3.MDEntryType.MidPrice:
|
|
2163
|
+
data.midPrice = price;
|
|
2164
|
+
break;
|
|
2165
|
+
case import_fixparser3.MDEntryType.EmptyBook:
|
|
2166
|
+
data.emptyBook = 1;
|
|
2167
|
+
break;
|
|
2168
|
+
case import_fixparser3.MDEntryType.SettleHighPrice:
|
|
2169
|
+
data.settleHighPrice = price;
|
|
2170
|
+
break;
|
|
2171
|
+
case import_fixparser3.MDEntryType.SettleLowPrice:
|
|
2172
|
+
data.settleLowPrice = price;
|
|
2173
|
+
break;
|
|
2174
|
+
case import_fixparser3.MDEntryType.PriorSettlePrice:
|
|
2175
|
+
data.priorSettlePrice = price;
|
|
2176
|
+
break;
|
|
2177
|
+
case import_fixparser3.MDEntryType.SessionHighBid:
|
|
2178
|
+
data.sessionHighBid = price;
|
|
2179
|
+
break;
|
|
2180
|
+
case import_fixparser3.MDEntryType.SessionLowOffer:
|
|
2181
|
+
data.sessionLowOffer = price;
|
|
2182
|
+
break;
|
|
2183
|
+
case import_fixparser3.MDEntryType.EarlyPrices:
|
|
2184
|
+
data.earlyPrices = price;
|
|
2185
|
+
break;
|
|
2186
|
+
case import_fixparser3.MDEntryType.AuctionClearingPrice:
|
|
2187
|
+
data.auctionClearingPrice = price;
|
|
2188
|
+
break;
|
|
2189
|
+
case import_fixparser3.MDEntryType.SwapValueFactor:
|
|
2190
|
+
data.swapValueFactor = price;
|
|
2191
|
+
break;
|
|
2192
|
+
case import_fixparser3.MDEntryType.DailyValueAdjustmentForLongPositions:
|
|
2193
|
+
data.dailyValueAdjustmentForLongPositions = price;
|
|
2194
|
+
break;
|
|
2195
|
+
case import_fixparser3.MDEntryType.CumulativeValueAdjustmentForLongPositions:
|
|
2196
|
+
data.cumulativeValueAdjustmentForLongPositions = price;
|
|
2197
|
+
break;
|
|
2198
|
+
case import_fixparser3.MDEntryType.DailyValueAdjustmentForShortPositions:
|
|
2199
|
+
data.dailyValueAdjustmentForShortPositions = price;
|
|
2200
|
+
break;
|
|
2201
|
+
case import_fixparser3.MDEntryType.CumulativeValueAdjustmentForShortPositions:
|
|
2202
|
+
data.cumulativeValueAdjustmentForShortPositions = price;
|
|
2203
|
+
break;
|
|
2204
|
+
case import_fixparser3.MDEntryType.FixingPrice:
|
|
2205
|
+
data.fixingPrice = price;
|
|
2206
|
+
break;
|
|
2207
|
+
case import_fixparser3.MDEntryType.CashRate:
|
|
2208
|
+
data.cashRate = price;
|
|
2209
|
+
break;
|
|
2210
|
+
case import_fixparser3.MDEntryType.RecoveryRate:
|
|
2211
|
+
data.recoveryRate = price;
|
|
2212
|
+
break;
|
|
2213
|
+
case import_fixparser3.MDEntryType.RecoveryRateForLong:
|
|
2214
|
+
data.recoveryRateForLong = price;
|
|
2215
|
+
break;
|
|
2216
|
+
case import_fixparser3.MDEntryType.RecoveryRateForShort:
|
|
2217
|
+
data.recoveryRateForShort = price;
|
|
2218
|
+
break;
|
|
2219
|
+
case import_fixparser3.MDEntryType.MarketBid:
|
|
2220
|
+
data.marketBid = price;
|
|
2221
|
+
break;
|
|
2222
|
+
case import_fixparser3.MDEntryType.MarketOffer:
|
|
2223
|
+
data.marketOffer = price;
|
|
2224
|
+
break;
|
|
2225
|
+
case import_fixparser3.MDEntryType.ShortSaleMinPrice:
|
|
2226
|
+
data.shortSaleMinPrice = price;
|
|
2227
|
+
break;
|
|
2228
|
+
case import_fixparser3.MDEntryType.PreviousClosingPrice:
|
|
2229
|
+
data.previousClosingPrice = price;
|
|
2230
|
+
break;
|
|
2231
|
+
case import_fixparser3.MDEntryType.ThresholdLimitPriceBanding:
|
|
2232
|
+
data.thresholdLimitPriceBanding = price;
|
|
2233
|
+
break;
|
|
2234
|
+
case import_fixparser3.MDEntryType.DailyFinancingValue:
|
|
2235
|
+
data.dailyFinancingValue = price;
|
|
2236
|
+
break;
|
|
2237
|
+
case import_fixparser3.MDEntryType.AccruedFinancingValue:
|
|
2238
|
+
data.accruedFinancingValue = price;
|
|
2239
|
+
break;
|
|
2240
|
+
case import_fixparser3.MDEntryType.TWAP:
|
|
2241
|
+
data.twap = price;
|
|
2242
|
+
break;
|
|
2243
|
+
}
|
|
2244
|
+
}
|
|
2245
|
+
data.spread = data.offer - data.bid;
|
|
2246
|
+
if (!marketDataPrices.has(symbol)) {
|
|
2247
|
+
marketDataPrices.set(symbol, []);
|
|
2248
|
+
}
|
|
2249
|
+
const prices = marketDataPrices.get(symbol);
|
|
2250
|
+
prices.push(data);
|
|
2251
|
+
if (prices.length > maxPriceHistory) {
|
|
2252
|
+
prices.splice(0, prices.length - maxPriceHistory);
|
|
2253
|
+
}
|
|
2254
|
+
onPriceUpdate?.(symbol, data);
|
|
2255
|
+
const mdReqID = message.getField(import_fixparser3.Fields.MDReqID)?.value;
|
|
2256
|
+
if (mdReqID) {
|
|
2257
|
+
const callback = pendingRequests.get(mdReqID);
|
|
2258
|
+
if (callback) {
|
|
2259
|
+
callback(message);
|
|
2260
|
+
pendingRequests.delete(mdReqID);
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
} else if (msgType === import_fixparser3.Messages.ExecutionReport) {
|
|
2264
|
+
const reqId = message.getField(import_fixparser3.Fields.ClOrdID)?.value;
|
|
2265
|
+
const callback = pendingRequests.get(reqId);
|
|
2266
|
+
if (callback) {
|
|
2267
|
+
callback(message);
|
|
2268
|
+
pendingRequests.delete(reqId);
|
|
2269
|
+
}
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
// src/MCPLocal.ts
|
|
2274
|
+
var MCPLocal = class extends MCPBase {
|
|
2275
|
+
/**
|
|
2276
|
+
* Map to store verified orders before execution
|
|
2277
|
+
* @private
|
|
2278
|
+
*/
|
|
2279
|
+
verifiedOrders = /* @__PURE__ */ new Map();
|
|
2280
|
+
/**
|
|
2281
|
+
* Map to store pending requests and their callbacks
|
|
2282
|
+
* @private
|
|
2283
|
+
*/
|
|
2284
|
+
pendingRequests = /* @__PURE__ */ new Map();
|
|
2285
|
+
/**
|
|
2286
|
+
* Map to store market data prices for each symbol
|
|
2287
|
+
* @private
|
|
2288
|
+
*/
|
|
2289
|
+
marketDataPrices = /* @__PURE__ */ new Map();
|
|
2290
|
+
/**
|
|
2291
|
+
* Maximum number of price history entries to keep per symbol
|
|
2292
|
+
* @private
|
|
2293
|
+
*/
|
|
2294
|
+
MAX_PRICE_HISTORY = 1e5;
|
|
2295
|
+
server = new import_server.Server(
|
|
2296
|
+
{
|
|
2297
|
+
name: "fixparser",
|
|
2298
|
+
version: "1.0.0"
|
|
2299
|
+
},
|
|
2300
|
+
{
|
|
2301
|
+
capabilities: {
|
|
2302
|
+
tools: Object.entries(toolSchemas).reduce(
|
|
2303
|
+
(acc, [name, { description, schema }]) => {
|
|
2304
|
+
acc[name] = {
|
|
2305
|
+
description,
|
|
2306
|
+
parameters: schema
|
|
843
2307
|
};
|
|
844
|
-
|
|
2308
|
+
return acc;
|
|
2309
|
+
},
|
|
2310
|
+
{}
|
|
2311
|
+
)
|
|
845
2312
|
}
|
|
846
|
-
|
|
2313
|
+
}
|
|
2314
|
+
);
|
|
2315
|
+
transport = new import_stdio.StdioServerTransport();
|
|
2316
|
+
constructor({ logger, onReady }) {
|
|
2317
|
+
super({ logger, onReady });
|
|
2318
|
+
}
|
|
2319
|
+
async register(parser) {
|
|
2320
|
+
this.parser = parser;
|
|
2321
|
+
this.parser.addOnMessageCallback((message) => {
|
|
2322
|
+
handleMessage(message, this.parser, this.pendingRequests, this.marketDataPrices, this.MAX_PRICE_HISTORY);
|
|
2323
|
+
});
|
|
2324
|
+
this.addWorkflows();
|
|
2325
|
+
await this.server.connect(this.transport);
|
|
2326
|
+
if (this.onReady) {
|
|
2327
|
+
this.onReady();
|
|
2328
|
+
}
|
|
2329
|
+
}
|
|
2330
|
+
addWorkflows() {
|
|
2331
|
+
if (!this.parser) {
|
|
2332
|
+
return;
|
|
2333
|
+
}
|
|
2334
|
+
if (!this.server) {
|
|
2335
|
+
return;
|
|
2336
|
+
}
|
|
2337
|
+
this.server.setRequestHandler(import_zod.z.object({ method: import_zod.z.literal("tools/list") }), async () => {
|
|
2338
|
+
return {
|
|
2339
|
+
tools: Object.entries(toolSchemas).map(([name, { description, schema }]) => ({
|
|
2340
|
+
name,
|
|
2341
|
+
description,
|
|
2342
|
+
inputSchema: schema
|
|
2343
|
+
}))
|
|
2344
|
+
};
|
|
2345
|
+
});
|
|
847
2346
|
this.server.setRequestHandler(
|
|
848
2347
|
import_zod.z.object({
|
|
849
|
-
method: import_zod.z.literal("
|
|
2348
|
+
method: import_zod.z.literal("tools/call"),
|
|
850
2349
|
params: import_zod.z.object({
|
|
851
|
-
|
|
2350
|
+
name: import_zod.z.string(),
|
|
2351
|
+
arguments: import_zod.z.any(),
|
|
2352
|
+
_meta: import_zod.z.object({
|
|
2353
|
+
progressToken: import_zod.z.number()
|
|
2354
|
+
}).optional()
|
|
852
2355
|
})
|
|
853
2356
|
}),
|
|
854
|
-
async (request
|
|
855
|
-
const {
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
{
|
|
871
|
-
type: "text",
|
|
872
|
-
text: "This resource requires a symbol parameter. Please use the stockGraph/{symbol} resource.",
|
|
873
|
-
uri: "stockGraph"
|
|
874
|
-
}
|
|
875
|
-
]
|
|
876
|
-
};
|
|
877
|
-
case "stockPriceHistory":
|
|
878
|
-
return {
|
|
879
|
-
contents: [
|
|
880
|
-
{
|
|
881
|
-
type: "text",
|
|
882
|
-
text: "This resource requires a symbol parameter. Please use the stockPriceHistory/{symbol} resource.",
|
|
883
|
-
uri: "stockPriceHistory"
|
|
884
|
-
}
|
|
885
|
-
]
|
|
886
|
-
};
|
|
887
|
-
default:
|
|
888
|
-
if (uri.startsWith("stockGraph/")) {
|
|
889
|
-
const symbol = uri.split("/")[1];
|
|
890
|
-
const priceHistory = this.marketDataPrices.get(symbol) || [];
|
|
891
|
-
if (priceHistory.length === 0) {
|
|
892
|
-
return {
|
|
893
|
-
contents: [
|
|
894
|
-
{
|
|
895
|
-
type: "text",
|
|
896
|
-
text: `No price data available for ${symbol}`,
|
|
897
|
-
uri
|
|
898
|
-
}
|
|
899
|
-
]
|
|
900
|
-
};
|
|
901
|
-
}
|
|
902
|
-
const width = 600;
|
|
903
|
-
const height = 300;
|
|
904
|
-
const padding = 40;
|
|
905
|
-
const xScale = (width - 2 * padding) / (priceHistory.length - 1);
|
|
906
|
-
const yMin = Math.min(...priceHistory.map((d) => d.price));
|
|
907
|
-
const yMax = Math.max(...priceHistory.map((d) => d.price));
|
|
908
|
-
const yScale = (height - 2 * padding) / (yMax - yMin);
|
|
909
|
-
const points = priceHistory.map((d, i) => {
|
|
910
|
-
const x = padding + i * xScale;
|
|
911
|
-
const y = height - padding - (d.price - yMin) * yScale;
|
|
912
|
-
return `${x},${y}`;
|
|
913
|
-
}).join(" L ");
|
|
914
|
-
const svg = `<?xml version="1.0" encoding="UTF-8"?>
|
|
915
|
-
<svg width="${width}" height="${height}" xmlns="http://www.w3.org/2000/svg">
|
|
916
|
-
<!-- Background -->
|
|
917
|
-
<rect width="100%" height="100%" fill="#f8f9fa"/>
|
|
918
|
-
|
|
919
|
-
<!-- Grid lines -->
|
|
920
|
-
<g stroke="#e9ecef" stroke-width="1">
|
|
921
|
-
${Array.from({ length: 5 }, (_, i) => {
|
|
922
|
-
const y = padding + (height - 2 * padding) * i / 4;
|
|
923
|
-
return `<line x1="${padding}" y1="${y}" x2="${width - padding}" y2="${y}"/>`;
|
|
924
|
-
}).join("\n")}
|
|
925
|
-
</g>
|
|
926
|
-
|
|
927
|
-
<!-- Price line -->
|
|
928
|
-
<path d="M ${points}"
|
|
929
|
-
fill="none"
|
|
930
|
-
stroke="#007bff"
|
|
931
|
-
stroke-width="2"/>
|
|
932
|
-
|
|
933
|
-
<!-- Data points -->
|
|
934
|
-
${priceHistory.map((d, i) => {
|
|
935
|
-
const x = padding + i * xScale;
|
|
936
|
-
const y = height - padding - (d.price - yMin) * yScale;
|
|
937
|
-
return `<circle cx="${x}" cy="${y}" r="3" fill="#007bff"/>`;
|
|
938
|
-
}).join("\n")}
|
|
939
|
-
|
|
940
|
-
<!-- Labels -->
|
|
941
|
-
<g font-family="Arial" font-size="12" fill="#495057">
|
|
942
|
-
${Array.from({ length: 5 }, (_, i) => {
|
|
943
|
-
const x = padding + (width - 2 * padding) * i / 4;
|
|
944
|
-
const index = Math.floor((priceHistory.length - 1) * i / 4);
|
|
945
|
-
const timestamp = new Date(priceHistory[index].timestamp).toLocaleTimeString();
|
|
946
|
-
return `<text x="${x + padding}" y="${height - padding + 20}" text-anchor="middle">${timestamp}</text>`;
|
|
947
|
-
}).join("\n")}
|
|
948
|
-
${Array.from({ length: 5 }, (_, i) => {
|
|
949
|
-
const y = padding + (height - 2 * padding) * i / 4;
|
|
950
|
-
const price = yMax - (yMax - yMin) * i / 4;
|
|
951
|
-
return `<text x="${padding - 5}" y="${y + 4}" text-anchor="end">$${price.toFixed(2)}</text>`;
|
|
952
|
-
}).join("\n")}
|
|
953
|
-
</g>
|
|
954
|
-
|
|
955
|
-
<!-- Title -->
|
|
956
|
-
<text x="${width / 2}" y="${padding / 2}"
|
|
957
|
-
font-family="Arial" font-size="16" font-weight="bold"
|
|
958
|
-
text-anchor="middle" fill="#212529">
|
|
959
|
-
${symbol} - Price Chart (${priceHistory.length} points)
|
|
960
|
-
</text>
|
|
961
|
-
</svg>`;
|
|
962
|
-
return {
|
|
963
|
-
contents: [
|
|
964
|
-
{
|
|
965
|
-
type: "text",
|
|
966
|
-
text: svg,
|
|
967
|
-
uri
|
|
968
|
-
}
|
|
969
|
-
]
|
|
970
|
-
};
|
|
971
|
-
}
|
|
972
|
-
if (uri.startsWith("stockPriceHistory/")) {
|
|
973
|
-
const symbol = uri.split("/")[1];
|
|
974
|
-
const priceHistory = this.marketDataPrices.get(symbol) || [];
|
|
975
|
-
if (priceHistory.length === 0) {
|
|
976
|
-
return {
|
|
977
|
-
contents: [
|
|
978
|
-
{
|
|
979
|
-
type: "text",
|
|
980
|
-
text: `No price data available for ${symbol}`,
|
|
981
|
-
uri
|
|
982
|
-
}
|
|
983
|
-
]
|
|
984
|
-
};
|
|
2357
|
+
async (request) => {
|
|
2358
|
+
const { name, arguments: args } = request.params;
|
|
2359
|
+
const toolHandlers = createToolHandlers(
|
|
2360
|
+
this.parser,
|
|
2361
|
+
this.verifiedOrders,
|
|
2362
|
+
this.pendingRequests,
|
|
2363
|
+
this.marketDataPrices
|
|
2364
|
+
);
|
|
2365
|
+
const handler = toolHandlers[name];
|
|
2366
|
+
if (!handler) {
|
|
2367
|
+
return {
|
|
2368
|
+
content: [
|
|
2369
|
+
{
|
|
2370
|
+
type: "text",
|
|
2371
|
+
text: `Tool not found: ${name}`,
|
|
2372
|
+
uri: name
|
|
985
2373
|
}
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
type: "text",
|
|
990
|
-
text: JSON.stringify(
|
|
991
|
-
{
|
|
992
|
-
symbol,
|
|
993
|
-
count: priceHistory.length,
|
|
994
|
-
prices: priceHistory.map((point) => ({
|
|
995
|
-
timestamp: new Date(point.timestamp).toISOString(),
|
|
996
|
-
price: point.price
|
|
997
|
-
}))
|
|
998
|
-
},
|
|
999
|
-
null,
|
|
1000
|
-
2
|
|
1001
|
-
),
|
|
1002
|
-
uri
|
|
1003
|
-
}
|
|
1004
|
-
]
|
|
1005
|
-
};
|
|
1006
|
-
}
|
|
1007
|
-
return {
|
|
1008
|
-
contents: [
|
|
1009
|
-
{
|
|
1010
|
-
type: "text",
|
|
1011
|
-
text: `Resource not found: ${uri}`,
|
|
1012
|
-
uri
|
|
1013
|
-
}
|
|
1014
|
-
],
|
|
1015
|
-
isError: true
|
|
1016
|
-
};
|
|
2374
|
+
],
|
|
2375
|
+
isError: true
|
|
2376
|
+
};
|
|
1017
2377
|
}
|
|
2378
|
+
const result = await handler(args);
|
|
2379
|
+
return {
|
|
2380
|
+
content: result.content,
|
|
2381
|
+
isError: result.isError
|
|
2382
|
+
};
|
|
1018
2383
|
}
|
|
1019
2384
|
);
|
|
1020
2385
|
process.on("SIGINT", async () => {
|