@continuumdao/continuum-node-sdk 1.3.23 → 1.3.25
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/dist/core/chart/apply-chart-drawings.d.ts +37 -0
- package/dist/core/chart/apply-chart-drawings.d.ts.map +1 -0
- package/dist/core/chart/apply-chart-drawings.js +95 -0
- package/dist/core/chart/apply-chart-drawings.js.map +1 -0
- package/dist/core/chart/customization-catalog.d.ts +29 -0
- package/dist/core/chart/customization-catalog.d.ts.map +1 -0
- package/dist/core/chart/customization-catalog.js +68 -0
- package/dist/core/chart/customization-catalog.js.map +1 -0
- package/dist/core/chart/day-range.d.ts +14 -0
- package/dist/core/chart/day-range.d.ts.map +1 -0
- package/dist/core/chart/day-range.js +72 -0
- package/dist/core/chart/day-range.js.map +1 -0
- package/dist/core/chart/index.d.ts +1 -1
- package/dist/core/chart/index.d.ts.map +1 -1
- package/dist/core/chart/index.js +1 -1
- package/dist/core/chart/index.js.map +1 -1
- package/dist/core/chart/levels/calculate-tools.d.ts +82 -0
- package/dist/core/chart/levels/calculate-tools.d.ts.map +1 -0
- package/dist/core/chart/levels/calculate-tools.js +136 -0
- package/dist/core/chart/levels/calculate-tools.js.map +1 -0
- package/dist/core/chart/levels/key-levels.d.ts +26 -0
- package/dist/core/chart/levels/key-levels.d.ts.map +1 -0
- package/dist/core/chart/levels/key-levels.js +133 -0
- package/dist/core/chart/levels/key-levels.js.map +1 -0
- package/dist/core/chart/levels/pivot-points.d.ts +16 -0
- package/dist/core/chart/levels/pivot-points.d.ts.map +1 -0
- package/dist/core/chart/levels/pivot-points.js +47 -0
- package/dist/core/chart/levels/pivot-points.js.map +1 -0
- package/dist/core/chart/levels/trend-lines.d.ts +21 -0
- package/dist/core/chart/levels/trend-lines.d.ts.map +1 -0
- package/dist/core/chart/levels/trend-lines.js +126 -0
- package/dist/core/chart/levels/trend-lines.js.map +1 -0
- package/dist/core/chart/live/bar-merge.d.ts +8 -0
- package/dist/core/chart/live/bar-merge.d.ts.map +1 -0
- package/dist/core/chart/live/bar-merge.js +52 -0
- package/dist/core/chart/live/bar-merge.js.map +1 -0
- package/dist/core/chart/live/index.d.ts +1 -0
- package/dist/core/chart/live/index.d.ts.map +1 -1
- package/dist/core/chart/live/index.js +1 -0
- package/dist/core/chart/live/index.js.map +1 -1
- package/dist/core/chart/live/merge-tick.d.ts +2 -1
- package/dist/core/chart/live/merge-tick.d.ts.map +1 -1
- package/dist/core/chart/live/merge-tick.js +10 -5
- package/dist/core/chart/live/merge-tick.js.map +1 -1
- package/dist/core/chart/live/refresh.d.ts +4 -2
- package/dist/core/chart/live/refresh.d.ts.map +1 -1
- package/dist/core/chart/live/refresh.js +6 -3
- package/dist/core/chart/live/refresh.js.map +1 -1
- package/dist/core/chart/overlay-schemas.d.ts +399 -0
- package/dist/core/chart/overlay-schemas.d.ts.map +1 -1
- package/dist/core/chart/overlay-schemas.js +79 -1
- package/dist/core/chart/overlay-schemas.js.map +1 -1
- package/dist/core/chart/overlays.d.ts.map +1 -1
- package/dist/core/chart/overlays.js +171 -4
- package/dist/core/chart/overlays.js.map +1 -1
- package/dist/core/chart/prepare-from-rows.d.ts +218 -0
- package/dist/core/chart/prepare-from-rows.d.ts.map +1 -1
- package/dist/core/chart/prepare-replay.d.ts +6 -0
- package/dist/core/chart/prepare-replay.d.ts.map +1 -0
- package/dist/core/chart/prepare-replay.js +60 -0
- package/dist/core/chart/prepare-replay.js.map +1 -0
- package/dist/core/chart/prepare.d.ts.map +1 -1
- package/dist/core/chart/prepare.js +16 -5
- package/dist/core/chart/prepare.js.map +1 -1
- package/dist/core/chart/schemas.d.ts +652 -1
- package/dist/core/chart/schemas.d.ts.map +1 -1
- package/dist/core/chart/schemas.js +11 -2
- package/dist/core/chart/schemas.js.map +1 -1
- package/dist/mcp/chart.d.ts.map +1 -1
- package/dist/mcp/chart.js +80 -1
- package/dist/mcp/chart.js.map +1 -1
- package/dist/mcp/resources/chart.md +19 -0
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { prepareChart } from '../prepare.js';
|
|
2
|
+
import { applyPrepareReplayToInput } from '../prepare-replay.js';
|
|
2
3
|
import { candlestickBarsFromChart, mergeLiveTickIntoBars } from './merge-tick.js';
|
|
3
4
|
function primaryCandlestick(chart) {
|
|
4
5
|
const candle = chart.series.find(s => s.type === 'candlestick');
|
|
@@ -11,7 +12,7 @@ function primaryCandlestick(chart) {
|
|
|
11
12
|
* Apply a live tick to an existing chart payload and rebuild series via prepareChart
|
|
12
13
|
* (same overlay/pane rules as the initial static chart).
|
|
13
14
|
*/
|
|
14
|
-
export function refreshChartFromLiveTick(chart, tick, binding) {
|
|
15
|
+
export function refreshChartFromLiveTick(chart, tick, binding, prepareReplay) {
|
|
15
16
|
const meta = primaryCandlestick(chart);
|
|
16
17
|
if (!meta) {
|
|
17
18
|
return null;
|
|
@@ -21,7 +22,7 @@ export function refreshChartFromLiveTick(chart, tick, binding) {
|
|
|
21
22
|
bucketSec: binding.bucketSec,
|
|
22
23
|
...(binding.maxPoints != null ? { maxPoints: binding.maxPoints } : {}),
|
|
23
24
|
});
|
|
24
|
-
const
|
|
25
|
+
const baseInput = {
|
|
25
26
|
...(chart.title?.trim() ? { title: chart.title.trim() } : {}),
|
|
26
27
|
...(chart.height != null ? { height: chart.height } : {}),
|
|
27
28
|
series: [
|
|
@@ -35,13 +36,15 @@ export function refreshChartFromLiveTick(chart, tick, binding) {
|
|
|
35
36
|
options: {
|
|
36
37
|
maxPoints: binding.maxPoints,
|
|
37
38
|
},
|
|
38
|
-
}
|
|
39
|
+
};
|
|
40
|
+
const prepared = prepareChart(applyPrepareReplayToInput(baseInput, prepareReplay));
|
|
39
41
|
if (!prepared.ok) {
|
|
40
42
|
return null;
|
|
41
43
|
}
|
|
42
44
|
return {
|
|
43
45
|
chart: prepared.data.chart,
|
|
44
46
|
barRolledOver,
|
|
47
|
+
prepareReplay: prepared.data.prepareReplay ?? prepareReplay,
|
|
45
48
|
};
|
|
46
49
|
}
|
|
47
50
|
//# sourceMappingURL=refresh.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"refresh.js","sourceRoot":"","sources":["../../../../src/core/chart/live/refresh.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"refresh.js","sourceRoot":"","sources":["../../../../src/core/chart/live/refresh.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAC,yBAAyB,EAAC,MAAM,sBAAsB,CAAC;AAE/D,OAAO,EAAC,wBAAwB,EAAE,qBAAqB,EAAC,MAAM,iBAAiB,CAAC;AAShF,SAAS,kBAAkB,CAC1B,KAAqB;IAErB,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,aAAa,CAAC,CAAC;IAChE,IAAI,CAAC,MAAM,EAAE,CAAC;QACb,OAAO,IAAI,CAAC;IACb,CAAC;IACD,OAAO,EAAC,EAAE,EAAE,MAAM,CAAC,EAAE,EAAE,KAAK,EAAE,MAAM,CAAC,KAAK,EAAC,CAAC;AAC7C,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,wBAAwB,CACvC,KAAqB,EACrB,IAAmB,EACnB,OAAyB,EACzB,aAAkC;IAElC,MAAM,IAAI,GAAG,kBAAkB,CAAC,KAAK,CAAC,CAAC;IACvC,IAAI,CAAC,IAAI,EAAE,CAAC;QACX,OAAO,IAAI,CAAC;IACb,CAAC;IAED,MAAM,IAAI,GAAG,wBAAwB,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACpD,MAAM,EAAC,IAAI,EAAE,MAAM,EAAE,aAAa,EAAC,GAAG,qBAAqB,CAAC,IAAI,EAAE,IAAI,EAAE;QACvE,SAAS,EAAE,OAAO,CAAC,SAAS;QAC5B,GAAG,CAAC,OAAO,CAAC,SAAS,IAAI,IAAI,CAAC,CAAC,CAAC,EAAC,SAAS,EAAE,OAAO,CAAC,SAAS,EAAC,CAAC,CAAC,CAAC,EAAE,CAAC;KACpE,CAAC,CAAC;IAEH,MAAM,SAAS,GAAG;QACjB,GAAG,CAAC,KAAK,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,EAAC,KAAK,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI,EAAE,EAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QAC3D,GAAG,CAAC,KAAK,CAAC,MAAM,IAAI,IAAI,CAAC,CAAC,CAAC,EAAC,MAAM,EAAE,KAAK,CAAC,MAAM,EAAC,CAAC,CAAC,CAAC,EAAE,CAAC;QACvD,MAAM,EAAE;YACP;gBACC,EAAE,EAAE,IAAI,CAAC,EAAE;gBACX,IAAI,EAAE,aAAsB;gBAC5B,KAAK,EAAE,IAAI,CAAC,KAAK;gBACjB,IAAI,EAAE,MAAM;aACZ;SACD;QACD,OAAO,EAAE;YACR,SAAS,EAAE,OAAO,CAAC,SAAS;SAC5B;KACD,CAAC;IAEF,MAAM,QAAQ,GAAG,YAAY,CAAC,yBAAyB,CAAC,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC;IAEnF,IAAI,CAAC,QAAQ,CAAC,EAAE,EAAE,CAAC;QAClB,OAAO,IAAI,CAAC;IACb,CAAC;IAED,OAAO;QACN,KAAK,EAAE,QAAQ,CAAC,IAAI,CAAC,KAAK;QAC1B,aAAa;QACb,aAAa,EAAE,QAAQ,CAAC,IAAI,CAAC,aAAa,IAAI,aAAa;KAC3D,CAAC;AACH,CAAC"}
|
|
@@ -83,6 +83,100 @@ export declare const ChartFibonacciOverlaySchema: z.ZodObject<{
|
|
|
83
83
|
dotted: "dotted";
|
|
84
84
|
}>>;
|
|
85
85
|
}, z.core.$strict>>;
|
|
86
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
87
|
+
color: z.ZodOptional<z.ZodString>;
|
|
88
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
89
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
90
|
+
solid: "solid";
|
|
91
|
+
dashed: "dashed";
|
|
92
|
+
dotted: "dotted";
|
|
93
|
+
}>>;
|
|
94
|
+
}, z.core.$strict>>>;
|
|
95
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
96
|
+
}, z.core.$strict>;
|
|
97
|
+
export declare const ChartHorizontalLevelsOverlaySchema: z.ZodObject<{
|
|
98
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
99
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
100
|
+
price: z.ZodNumber;
|
|
101
|
+
label: z.ZodOptional<z.ZodString>;
|
|
102
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
103
|
+
level: "level";
|
|
104
|
+
support: "support";
|
|
105
|
+
resistance: "resistance";
|
|
106
|
+
}>>;
|
|
107
|
+
}, z.core.$strict>>;
|
|
108
|
+
id: z.ZodOptional<z.ZodString>;
|
|
109
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
110
|
+
color: z.ZodOptional<z.ZodString>;
|
|
111
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
112
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
113
|
+
solid: "solid";
|
|
114
|
+
dashed: "dashed";
|
|
115
|
+
dotted: "dotted";
|
|
116
|
+
}>>;
|
|
117
|
+
}, z.core.$strict>>;
|
|
118
|
+
}, z.core.$strict>;
|
|
119
|
+
export declare const ChartTrendLinesOverlaySchema: z.ZodObject<{
|
|
120
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
121
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
122
|
+
pointA: z.ZodObject<{
|
|
123
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
124
|
+
year: z.ZodNumber;
|
|
125
|
+
month: z.ZodNumber;
|
|
126
|
+
day: z.ZodNumber;
|
|
127
|
+
}, z.core.$strict>]>;
|
|
128
|
+
price: z.ZodNumber;
|
|
129
|
+
}, z.core.$strict>;
|
|
130
|
+
pointB: z.ZodObject<{
|
|
131
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
132
|
+
year: z.ZodNumber;
|
|
133
|
+
month: z.ZodNumber;
|
|
134
|
+
day: z.ZodNumber;
|
|
135
|
+
}, z.core.$strict>]>;
|
|
136
|
+
price: z.ZodNumber;
|
|
137
|
+
}, z.core.$strict>;
|
|
138
|
+
label: z.ZodOptional<z.ZodString>;
|
|
139
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
140
|
+
support: "support";
|
|
141
|
+
resistance: "resistance";
|
|
142
|
+
}>>;
|
|
143
|
+
}, z.core.$strict>>;
|
|
144
|
+
id: z.ZodOptional<z.ZodString>;
|
|
145
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
146
|
+
color: z.ZodOptional<z.ZodString>;
|
|
147
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
148
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
149
|
+
solid: "solid";
|
|
150
|
+
dashed: "dashed";
|
|
151
|
+
dotted: "dotted";
|
|
152
|
+
}>>;
|
|
153
|
+
}, z.core.$strict>>;
|
|
154
|
+
}, z.core.$strict>;
|
|
155
|
+
export declare const ChartPivotLevelsOverlaySchema: z.ZodObject<{
|
|
156
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
157
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
158
|
+
id: z.ZodString;
|
|
159
|
+
price: z.ZodNumber;
|
|
160
|
+
}, z.core.$strict>>;
|
|
161
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
162
|
+
color: z.ZodOptional<z.ZodString>;
|
|
163
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
164
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
165
|
+
solid: "solid";
|
|
166
|
+
dashed: "dashed";
|
|
167
|
+
dotted: "dotted";
|
|
168
|
+
}>>;
|
|
169
|
+
}, z.core.$strict>>;
|
|
170
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
171
|
+
color: z.ZodOptional<z.ZodString>;
|
|
172
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
173
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
174
|
+
solid: "solid";
|
|
175
|
+
dashed: "dashed";
|
|
176
|
+
dotted: "dotted";
|
|
177
|
+
}>>;
|
|
178
|
+
}, z.core.$strict>>;
|
|
179
|
+
id: z.ZodOptional<z.ZodString>;
|
|
86
180
|
}, z.core.$strict>;
|
|
87
181
|
export declare const ChartRsiOverlaySchema: z.ZodObject<{
|
|
88
182
|
type: z.ZodLiteral<"rsi">;
|
|
@@ -209,6 +303,97 @@ export declare const ChartOverlayInputSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
209
303
|
dotted: "dotted";
|
|
210
304
|
}>>;
|
|
211
305
|
}, z.core.$strict>>;
|
|
306
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
307
|
+
color: z.ZodOptional<z.ZodString>;
|
|
308
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
309
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
310
|
+
solid: "solid";
|
|
311
|
+
dashed: "dashed";
|
|
312
|
+
dotted: "dotted";
|
|
313
|
+
}>>;
|
|
314
|
+
}, z.core.$strict>>>;
|
|
315
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
316
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
317
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
318
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
319
|
+
price: z.ZodNumber;
|
|
320
|
+
label: z.ZodOptional<z.ZodString>;
|
|
321
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
322
|
+
level: "level";
|
|
323
|
+
support: "support";
|
|
324
|
+
resistance: "resistance";
|
|
325
|
+
}>>;
|
|
326
|
+
}, z.core.$strict>>;
|
|
327
|
+
id: z.ZodOptional<z.ZodString>;
|
|
328
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
329
|
+
color: z.ZodOptional<z.ZodString>;
|
|
330
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
331
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
332
|
+
solid: "solid";
|
|
333
|
+
dashed: "dashed";
|
|
334
|
+
dotted: "dotted";
|
|
335
|
+
}>>;
|
|
336
|
+
}, z.core.$strict>>;
|
|
337
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
338
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
339
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
340
|
+
id: z.ZodString;
|
|
341
|
+
price: z.ZodNumber;
|
|
342
|
+
}, z.core.$strict>>;
|
|
343
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
344
|
+
color: z.ZodOptional<z.ZodString>;
|
|
345
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
346
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
347
|
+
solid: "solid";
|
|
348
|
+
dashed: "dashed";
|
|
349
|
+
dotted: "dotted";
|
|
350
|
+
}>>;
|
|
351
|
+
}, z.core.$strict>>;
|
|
352
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
353
|
+
color: z.ZodOptional<z.ZodString>;
|
|
354
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
355
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
356
|
+
solid: "solid";
|
|
357
|
+
dashed: "dashed";
|
|
358
|
+
dotted: "dotted";
|
|
359
|
+
}>>;
|
|
360
|
+
}, z.core.$strict>>;
|
|
361
|
+
id: z.ZodOptional<z.ZodString>;
|
|
362
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
363
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
364
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
365
|
+
pointA: z.ZodObject<{
|
|
366
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
367
|
+
year: z.ZodNumber;
|
|
368
|
+
month: z.ZodNumber;
|
|
369
|
+
day: z.ZodNumber;
|
|
370
|
+
}, z.core.$strict>]>;
|
|
371
|
+
price: z.ZodNumber;
|
|
372
|
+
}, z.core.$strict>;
|
|
373
|
+
pointB: z.ZodObject<{
|
|
374
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
375
|
+
year: z.ZodNumber;
|
|
376
|
+
month: z.ZodNumber;
|
|
377
|
+
day: z.ZodNumber;
|
|
378
|
+
}, z.core.$strict>]>;
|
|
379
|
+
price: z.ZodNumber;
|
|
380
|
+
}, z.core.$strict>;
|
|
381
|
+
label: z.ZodOptional<z.ZodString>;
|
|
382
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
383
|
+
support: "support";
|
|
384
|
+
resistance: "resistance";
|
|
385
|
+
}>>;
|
|
386
|
+
}, z.core.$strict>>;
|
|
387
|
+
id: z.ZodOptional<z.ZodString>;
|
|
388
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
389
|
+
color: z.ZodOptional<z.ZodString>;
|
|
390
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
392
|
+
solid: "solid";
|
|
393
|
+
dashed: "dashed";
|
|
394
|
+
dotted: "dotted";
|
|
395
|
+
}>>;
|
|
396
|
+
}, z.core.$strict>>;
|
|
212
397
|
}, z.core.$strict>, z.ZodObject<{
|
|
213
398
|
type: z.ZodLiteral<"rsi">;
|
|
214
399
|
sourceSeriesId: z.ZodString;
|
|
@@ -332,6 +517,97 @@ export declare const PrepareChartOverlaysSchema: z.ZodArray<z.ZodDiscriminatedUn
|
|
|
332
517
|
dotted: "dotted";
|
|
333
518
|
}>>;
|
|
334
519
|
}, z.core.$strict>>;
|
|
520
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
521
|
+
color: z.ZodOptional<z.ZodString>;
|
|
522
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
523
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
524
|
+
solid: "solid";
|
|
525
|
+
dashed: "dashed";
|
|
526
|
+
dotted: "dotted";
|
|
527
|
+
}>>;
|
|
528
|
+
}, z.core.$strict>>>;
|
|
529
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
530
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
531
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
532
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
533
|
+
price: z.ZodNumber;
|
|
534
|
+
label: z.ZodOptional<z.ZodString>;
|
|
535
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
536
|
+
level: "level";
|
|
537
|
+
support: "support";
|
|
538
|
+
resistance: "resistance";
|
|
539
|
+
}>>;
|
|
540
|
+
}, z.core.$strict>>;
|
|
541
|
+
id: z.ZodOptional<z.ZodString>;
|
|
542
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
543
|
+
color: z.ZodOptional<z.ZodString>;
|
|
544
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
545
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
546
|
+
solid: "solid";
|
|
547
|
+
dashed: "dashed";
|
|
548
|
+
dotted: "dotted";
|
|
549
|
+
}>>;
|
|
550
|
+
}, z.core.$strict>>;
|
|
551
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
552
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
553
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
554
|
+
id: z.ZodString;
|
|
555
|
+
price: z.ZodNumber;
|
|
556
|
+
}, z.core.$strict>>;
|
|
557
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
558
|
+
color: z.ZodOptional<z.ZodString>;
|
|
559
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
560
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
561
|
+
solid: "solid";
|
|
562
|
+
dashed: "dashed";
|
|
563
|
+
dotted: "dotted";
|
|
564
|
+
}>>;
|
|
565
|
+
}, z.core.$strict>>;
|
|
566
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
567
|
+
color: z.ZodOptional<z.ZodString>;
|
|
568
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
569
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
570
|
+
solid: "solid";
|
|
571
|
+
dashed: "dashed";
|
|
572
|
+
dotted: "dotted";
|
|
573
|
+
}>>;
|
|
574
|
+
}, z.core.$strict>>;
|
|
575
|
+
id: z.ZodOptional<z.ZodString>;
|
|
576
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
577
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
578
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
579
|
+
pointA: z.ZodObject<{
|
|
580
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
581
|
+
year: z.ZodNumber;
|
|
582
|
+
month: z.ZodNumber;
|
|
583
|
+
day: z.ZodNumber;
|
|
584
|
+
}, z.core.$strict>]>;
|
|
585
|
+
price: z.ZodNumber;
|
|
586
|
+
}, z.core.$strict>;
|
|
587
|
+
pointB: z.ZodObject<{
|
|
588
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
589
|
+
year: z.ZodNumber;
|
|
590
|
+
month: z.ZodNumber;
|
|
591
|
+
day: z.ZodNumber;
|
|
592
|
+
}, z.core.$strict>]>;
|
|
593
|
+
price: z.ZodNumber;
|
|
594
|
+
}, z.core.$strict>;
|
|
595
|
+
label: z.ZodOptional<z.ZodString>;
|
|
596
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
597
|
+
support: "support";
|
|
598
|
+
resistance: "resistance";
|
|
599
|
+
}>>;
|
|
600
|
+
}, z.core.$strict>>;
|
|
601
|
+
id: z.ZodOptional<z.ZodString>;
|
|
602
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
603
|
+
color: z.ZodOptional<z.ZodString>;
|
|
604
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
605
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
606
|
+
solid: "solid";
|
|
607
|
+
dashed: "dashed";
|
|
608
|
+
dotted: "dotted";
|
|
609
|
+
}>>;
|
|
610
|
+
}, z.core.$strict>>;
|
|
335
611
|
}, z.core.$strict>, z.ZodObject<{
|
|
336
612
|
type: z.ZodLiteral<"rsi">;
|
|
337
613
|
sourceSeriesId: z.ZodString;
|
|
@@ -381,5 +657,128 @@ export declare const PrepareChartOverlaysSchema: z.ZodArray<z.ZodDiscriminatedUn
|
|
|
381
657
|
}>>;
|
|
382
658
|
}, z.core.$strict>>;
|
|
383
659
|
}, z.core.$strict>], "type">>;
|
|
660
|
+
export declare const PrepareChartDrawingsSchema: z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
661
|
+
type: z.ZodLiteral<"horizontal_levels">;
|
|
662
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
663
|
+
price: z.ZodNumber;
|
|
664
|
+
label: z.ZodOptional<z.ZodString>;
|
|
665
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
666
|
+
level: "level";
|
|
667
|
+
support: "support";
|
|
668
|
+
resistance: "resistance";
|
|
669
|
+
}>>;
|
|
670
|
+
}, z.core.$strict>>;
|
|
671
|
+
id: z.ZodOptional<z.ZodString>;
|
|
672
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
673
|
+
color: z.ZodOptional<z.ZodString>;
|
|
674
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
675
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
676
|
+
solid: "solid";
|
|
677
|
+
dashed: "dashed";
|
|
678
|
+
dotted: "dotted";
|
|
679
|
+
}>>;
|
|
680
|
+
}, z.core.$strict>>;
|
|
681
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
682
|
+
type: z.ZodLiteral<"pivot_levels">;
|
|
683
|
+
levels: z.ZodArray<z.ZodObject<{
|
|
684
|
+
id: z.ZodString;
|
|
685
|
+
price: z.ZodNumber;
|
|
686
|
+
}, z.core.$strict>>;
|
|
687
|
+
pivotStyle: z.ZodOptional<z.ZodObject<{
|
|
688
|
+
color: z.ZodOptional<z.ZodString>;
|
|
689
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
690
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
691
|
+
solid: "solid";
|
|
692
|
+
dashed: "dashed";
|
|
693
|
+
dotted: "dotted";
|
|
694
|
+
}>>;
|
|
695
|
+
}, z.core.$strict>>;
|
|
696
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
697
|
+
color: z.ZodOptional<z.ZodString>;
|
|
698
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
699
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
700
|
+
solid: "solid";
|
|
701
|
+
dashed: "dashed";
|
|
702
|
+
dotted: "dotted";
|
|
703
|
+
}>>;
|
|
704
|
+
}, z.core.$strict>>;
|
|
705
|
+
id: z.ZodOptional<z.ZodString>;
|
|
706
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
707
|
+
type: z.ZodLiteral<"fibonacci">;
|
|
708
|
+
sourceSeriesId: z.ZodOptional<z.ZodString>;
|
|
709
|
+
range: z.ZodOptional<z.ZodObject<{
|
|
710
|
+
high: z.ZodNumber;
|
|
711
|
+
low: z.ZodNumber;
|
|
712
|
+
trend: z.ZodEnum<{
|
|
713
|
+
up: "up";
|
|
714
|
+
down: "down";
|
|
715
|
+
}>;
|
|
716
|
+
}, z.core.$strict>>;
|
|
717
|
+
levels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
718
|
+
trend: z.ZodOptional<z.ZodEnum<{
|
|
719
|
+
up: "up";
|
|
720
|
+
down: "down";
|
|
721
|
+
}>>;
|
|
722
|
+
id: z.ZodOptional<z.ZodString>;
|
|
723
|
+
overlay: z.ZodOptional<z.ZodBoolean>;
|
|
724
|
+
priceScaleId: z.ZodOptional<z.ZodEnum<{
|
|
725
|
+
left: "left";
|
|
726
|
+
right: "right";
|
|
727
|
+
}>>;
|
|
728
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
729
|
+
color: z.ZodOptional<z.ZodString>;
|
|
730
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
731
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
732
|
+
solid: "solid";
|
|
733
|
+
dashed: "dashed";
|
|
734
|
+
dotted: "dotted";
|
|
735
|
+
}>>;
|
|
736
|
+
}, z.core.$strict>>;
|
|
737
|
+
levelStyles: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
738
|
+
color: z.ZodOptional<z.ZodString>;
|
|
739
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
740
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
741
|
+
solid: "solid";
|
|
742
|
+
dashed: "dashed";
|
|
743
|
+
dotted: "dotted";
|
|
744
|
+
}>>;
|
|
745
|
+
}, z.core.$strict>>>;
|
|
746
|
+
highlightLevels: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
747
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
748
|
+
type: z.ZodLiteral<"trend_lines">;
|
|
749
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
750
|
+
pointA: z.ZodObject<{
|
|
751
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
752
|
+
year: z.ZodNumber;
|
|
753
|
+
month: z.ZodNumber;
|
|
754
|
+
day: z.ZodNumber;
|
|
755
|
+
}, z.core.$strict>]>;
|
|
756
|
+
price: z.ZodNumber;
|
|
757
|
+
}, z.core.$strict>;
|
|
758
|
+
pointB: z.ZodObject<{
|
|
759
|
+
time: z.ZodUnion<readonly [z.ZodNumber, z.ZodObject<{
|
|
760
|
+
year: z.ZodNumber;
|
|
761
|
+
month: z.ZodNumber;
|
|
762
|
+
day: z.ZodNumber;
|
|
763
|
+
}, z.core.$strict>]>;
|
|
764
|
+
price: z.ZodNumber;
|
|
765
|
+
}, z.core.$strict>;
|
|
766
|
+
label: z.ZodOptional<z.ZodString>;
|
|
767
|
+
kind: z.ZodOptional<z.ZodEnum<{
|
|
768
|
+
support: "support";
|
|
769
|
+
resistance: "resistance";
|
|
770
|
+
}>>;
|
|
771
|
+
}, z.core.$strict>>;
|
|
772
|
+
id: z.ZodOptional<z.ZodString>;
|
|
773
|
+
style: z.ZodOptional<z.ZodObject<{
|
|
774
|
+
color: z.ZodOptional<z.ZodString>;
|
|
775
|
+
lineWidth: z.ZodOptional<z.ZodNumber>;
|
|
776
|
+
lineStyle: z.ZodOptional<z.ZodEnum<{
|
|
777
|
+
solid: "solid";
|
|
778
|
+
dashed: "dashed";
|
|
779
|
+
dotted: "dotted";
|
|
780
|
+
}>>;
|
|
781
|
+
}, z.core.$strict>>;
|
|
782
|
+
}, z.core.$strict>], "type">>;
|
|
384
783
|
export type ChartOverlayInput = z.infer<typeof ChartOverlayInputSchema>;
|
|
385
784
|
//# sourceMappingURL=overlay-schemas.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overlay-schemas.d.ts","sourceRoot":"","sources":["../../../src/core/chart/overlay-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAUtB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;kBAWvB,CAAC;AAEX,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;kBAW9B,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;;;;kBAM5B,CAAC;AAEX,eAAO,MAAM,2BAA2B
|
|
1
|
+
{"version":3,"file":"overlay-schemas.d.ts","sourceRoot":"","sources":["../../../src/core/chart/overlay-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAUtB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;kBAWvB,CAAC;AAEX,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;kBAW9B,CAAC;AAEX,eAAO,MAAM,yBAAyB;;;;;;;kBAM5B,CAAC;AAEX,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAoBrC,CAAC;AAUJ,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;kBAOrC,CAAC;AA2BX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAO/B,CAAC;AAEX,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;kBAkBhC,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;kBASxB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;kBAUzB,CAAC;AAEX,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;kBAWlC,CAAC;AAEX,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAUlC,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAA2C,CAAC;AAEnF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAS/B,CAAC;AAET,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
|
|
@@ -49,11 +49,78 @@ export const ChartFibonacciOverlaySchema = z
|
|
|
49
49
|
overlay: z.boolean().optional(),
|
|
50
50
|
priceScaleId: z.enum(['left', 'right']).optional(),
|
|
51
51
|
style: overlayStyleSchema.optional(),
|
|
52
|
+
/** Per-ratio line styles; keys like "0.618". */
|
|
53
|
+
levelStyles: z.record(z.string(), overlayStyleSchema).optional(),
|
|
54
|
+
/** Ratios to emphasize; default [0.618] when omitted. */
|
|
55
|
+
highlightLevels: z.array(z.number().min(0).max(1)).max(12).optional(),
|
|
52
56
|
})
|
|
53
57
|
.strict()
|
|
54
58
|
.refine(o => o.sourceSeriesId != null || o.range != null, {
|
|
55
59
|
message: 'Fibonacci overlay requires sourceSeriesId and/or range.',
|
|
56
60
|
});
|
|
61
|
+
const horizontalLevelRowSchema = z
|
|
62
|
+
.object({
|
|
63
|
+
price: z.number(),
|
|
64
|
+
label: z.string().min(1).max(64).optional(),
|
|
65
|
+
kind: z.enum(['support', 'resistance', 'level']).optional(),
|
|
66
|
+
})
|
|
67
|
+
.strict();
|
|
68
|
+
export const ChartHorizontalLevelsOverlaySchema = z
|
|
69
|
+
.object({
|
|
70
|
+
type: z.literal('horizontal_levels'),
|
|
71
|
+
levels: z.array(horizontalLevelRowSchema).min(1).max(12),
|
|
72
|
+
id: z.string().min(1).max(64).optional(),
|
|
73
|
+
style: overlayStyleSchema.optional(),
|
|
74
|
+
})
|
|
75
|
+
.strict();
|
|
76
|
+
const trendLinePointSchema = z
|
|
77
|
+
.object({
|
|
78
|
+
time: z.union([
|
|
79
|
+
z.number(),
|
|
80
|
+
z
|
|
81
|
+
.object({
|
|
82
|
+
year: z.number().int(),
|
|
83
|
+
month: z.number().int(),
|
|
84
|
+
day: z.number().int(),
|
|
85
|
+
})
|
|
86
|
+
.strict(),
|
|
87
|
+
]),
|
|
88
|
+
price: z.number(),
|
|
89
|
+
})
|
|
90
|
+
.strict();
|
|
91
|
+
const trendLineRowSchema = z
|
|
92
|
+
.object({
|
|
93
|
+
pointA: trendLinePointSchema,
|
|
94
|
+
pointB: trendLinePointSchema,
|
|
95
|
+
label: z.string().min(1).max(64).optional(),
|
|
96
|
+
kind: z.enum(['support', 'resistance']).optional(),
|
|
97
|
+
})
|
|
98
|
+
.strict();
|
|
99
|
+
export const ChartTrendLinesOverlaySchema = z
|
|
100
|
+
.object({
|
|
101
|
+
type: z.literal('trend_lines'),
|
|
102
|
+
lines: z.array(trendLineRowSchema).min(1).max(4),
|
|
103
|
+
id: z.string().min(1).max(64).optional(),
|
|
104
|
+
style: overlayStyleSchema.optional(),
|
|
105
|
+
})
|
|
106
|
+
.strict();
|
|
107
|
+
export const ChartPivotLevelsOverlaySchema = z
|
|
108
|
+
.object({
|
|
109
|
+
type: z.literal('pivot_levels'),
|
|
110
|
+
levels: z
|
|
111
|
+
.array(z
|
|
112
|
+
.object({
|
|
113
|
+
id: z.string().min(1).max(8),
|
|
114
|
+
price: z.number(),
|
|
115
|
+
})
|
|
116
|
+
.strict())
|
|
117
|
+
.min(1)
|
|
118
|
+
.max(8),
|
|
119
|
+
pivotStyle: overlayStyleSchema.optional(),
|
|
120
|
+
style: overlayStyleSchema.optional(),
|
|
121
|
+
id: z.string().min(1).max(64).optional(),
|
|
122
|
+
})
|
|
123
|
+
.strict();
|
|
57
124
|
export const ChartRsiOverlaySchema = z
|
|
58
125
|
.object({
|
|
59
126
|
type: z.literal('rsi'),
|
|
@@ -91,9 +158,20 @@ export const ChartOverlayInputSchema = z.discriminatedUnion('type', [
|
|
|
91
158
|
ChartMaOverlaySchema,
|
|
92
159
|
ChartBollingerOverlaySchema,
|
|
93
160
|
ChartFibonacciOverlaySchema,
|
|
161
|
+
ChartHorizontalLevelsOverlaySchema,
|
|
162
|
+
ChartPivotLevelsOverlaySchema,
|
|
163
|
+
ChartTrendLinesOverlaySchema,
|
|
94
164
|
ChartRsiOverlaySchema,
|
|
95
165
|
ChartMacdOverlaySchema,
|
|
96
166
|
ChartStochasticRsiOverlaySchema,
|
|
97
167
|
]);
|
|
98
|
-
export const PrepareChartOverlaysSchema = z.array(ChartOverlayInputSchema).max(
|
|
168
|
+
export const PrepareChartOverlaysSchema = z.array(ChartOverlayInputSchema).max(16);
|
|
169
|
+
export const PrepareChartDrawingsSchema = z
|
|
170
|
+
.array(z.discriminatedUnion('type', [
|
|
171
|
+
ChartHorizontalLevelsOverlaySchema,
|
|
172
|
+
ChartPivotLevelsOverlaySchema,
|
|
173
|
+
ChartFibonacciOverlaySchema,
|
|
174
|
+
ChartTrendLinesOverlaySchema,
|
|
175
|
+
]))
|
|
176
|
+
.max(8);
|
|
99
177
|
//# sourceMappingURL=overlay-schemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overlay-schemas.js","sourceRoot":"","sources":["../../../src/core/chart/overlay-schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAEtB,MAAM,kBAAkB,GAAG,CAAC;KAC1B,MAAM,CAAC;IACP,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACnC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC3C,SAAS,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,QAAQ,EAAE;CAC3D,CAAC;KACD,MAAM,EAAE,CAAC;AAEX,MAAM,CAAC,MAAM,oBAAoB,GAAG,CAAC;KACnC,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC;IAC5B,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACnD,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACxC,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IAC5C,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,YAAY,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE;IAClD,KAAK,EAAE,kBAAkB,CAAC,QAAQ,EAAE;CACpC,CAAC;KACD,MAAM,EAAE,CAAC;AAEX,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KAC1C,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC;IAC5B,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC;IACzC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE;IACnD,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IAChD,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACxC,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,YAAY,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE;IAClD,KAAK,EAAE,kBAAkB,CAAC,QAAQ,EAAE;CACpC,CAAC;KACD,MAAM,EAAE,CAAC;AAEX,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC;KACxC,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,GAAG,EAAE,CAAC,CAAC,MAAM,EAAE;IACf,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;CAC7B,CAAC;KACD,MAAM,EAAE,CAAC;AAEX,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC;KAC1C,MAAM,CAAC;IACP,IAAI,EAAE,CAAC,CAAC,OAAO,CAAC,WAAW,CAAC;IAC5B,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACpD,KAAK,EAAE,yBAAyB,CAAC,QAAQ,EAAE;IAC3C,yEAAyE;IACzE,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACnE,KAAK,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,QAAQ,EAAE;IACxC,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACxC,OAAO,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/B,YAAY,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAAC,QAAQ,EAAE;IAClD,KAAK,EAAE,kBAAkB,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"overlay-schemas.js","sourceRoot":"","sources":["../../../src/core/chart/overlay-schemas.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"overlays.d.ts","sourceRoot":"","sources":["../../../src/core/chart/overlays.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,cAAc,CAAC;AAE5C,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,cAAc,CAAC;AACrD,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,sBAAsB,CAAC;AAE5D,KAAK,qBAAqB,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"overlays.d.ts","sourceRoot":"","sources":["../../../src/core/chart/overlays.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAC,SAAS,EAAC,MAAM,cAAc,CAAC;AAE5C,OAAO,KAAK,EAAC,kBAAkB,EAAC,MAAM,cAAc,CAAC;AACrD,OAAO,KAAK,EAAC,iBAAiB,EAAC,MAAM,sBAAsB,CAAC;AAE5D,KAAK,qBAAqB,GAAG,kBAAkB,CAAC,OAAO,CAAC,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC;AA6wB3E,wBAAgB,mBAAmB,CAClC,UAAU,EAAE,qBAAqB,EAAE,EACnC,QAAQ,EAAE,iBAAiB,EAAE,GAAG,SAAS,GACvC,SAAS,CAAC,qBAAqB,EAAE,CAAC,CAoHpC"}
|