@guihz/trading-vue-editor-tes 0.0.283 → 0.0.285

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/lib/assets/{parserTccWorker-cw8rxksS.js → parserTccWorker-COjudqMh.js} +90 -91
  2. package/lib/assets/{scriptsRunWorker-BlzKPqZx.js → scriptsRunWorker-B3YGZcpj.js} +42 -42
  3. package/lib/components/editor/parseScript/buildInConstants.d.ts +2 -0
  4. package/lib/components/editor/parseScript/buildInFuncNamespace/array.d.ts +32 -79
  5. package/lib/components/editor/parseScript/buildInFuncNamespace/box.d.ts +33 -27
  6. package/lib/components/editor/parseScript/buildInFuncNamespace/chartPoint.d.ts +11 -2
  7. package/lib/components/editor/parseScript/buildInFuncNamespace/index.d.ts +6 -6
  8. package/lib/components/editor/parseScript/buildInFuncNamespace/input.d.ts +5 -0
  9. package/lib/components/editor/parseScript/buildInFuncNamespace/label.d.ts +21 -17
  10. package/lib/components/editor/parseScript/buildInFuncNamespace/line.d.ts +27 -18
  11. package/lib/components/editor/parseScript/buildInFuncNamespace/linefill.d.ts +16 -7
  12. package/lib/components/editor/parseScript/buildInFuncNamespace/log.d.ts +4 -4
  13. package/lib/components/editor/parseScript/buildInFuncNamespace/map.d.ts +38 -29
  14. package/lib/components/editor/parseScript/buildInFuncNamespace/math.d.ts +19 -19
  15. package/lib/components/editor/parseScript/buildInFuncNamespace/matrix.d.ts +32 -82
  16. package/lib/components/editor/parseScript/buildInFuncNamespace/polyline.d.ts +6 -3
  17. package/lib/components/editor/parseScript/buildInFuncNamespace/request.d.ts +2 -1
  18. package/lib/components/editor/parseScript/buildInFuncNamespace/strategy.d.ts +3 -0
  19. package/lib/components/editor/parseScript/buildInFuncNamespace/string.d.ts +2 -2
  20. package/lib/components/editor/parseScript/buildInFuncNamespace/ta.d.ts +4 -2
  21. package/lib/components/editor/parseScript/buildInFuncNamespace/table.d.ts +29 -21
  22. package/lib/components/editor/parseScript/buildInFuncNamespace/timeframe.d.ts +3 -0
  23. package/lib/components/editor/parseScript/buildInVarNamespace/ta.d.ts +2 -0
  24. package/lib/components/editor/parseScript/enum.d.ts +13 -0
  25. package/lib/components/editor/parseScript/parseToJs.d.ts +0 -2
  26. package/lib/components/editor/parseScript/type.d.ts +10 -0
  27. package/lib/components/editor/parseScript/userTypeClass.d.ts +4 -3
  28. package/lib/components/editor/parseScript/utils.d.ts +2 -1
  29. package/lib/components/editor/parseScript/visitorParser.d.ts +2 -0
  30. package/lib/components/editor/type/index.d.ts +2 -0
  31. package/lib/trading-vue-editor.es.packages.js +963 -959
  32. package/lib/trading-vue-editor.umd.packages.mjs +21 -21
  33. package/package.json +1 -1
  34. package/lib/components/editor/parseScript/buildInFunction.d.ts +0 -235
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guihz/trading-vue-editor-tes",
3
- "version": "0.0.283",
3
+ "version": "0.0.285",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib"
@@ -1,235 +0,0 @@
1
- import { IKeyObjectValue } from "../type";
2
- import { VFormatType, VScale, VPlotStyle, VPlotDisplay, VLocation, VSize, VShape, VAlert, VHlineStyle } from "./enum";
3
- import { BuiltInVariables } from "./buildInVariables";
4
- import { BuildInMath, BuildInArray, BuildInInput, IColorArgs, BuildInMap, BuildInMatrix, BuildInStr, BuildInTa, BuildInTimeframe, ChartPoint, BuildInLine, BuildInLabel, BuildInPolyline, BuildInBox, BuildInLinefill, BuildInTable, Log, Runtime, Strategy, Request, Syminfo } from './buildInFuncNamespace/index';
5
- import { IError } from "./type";
6
- interface ITimeArgs {
7
- timeframe?: string;
8
- session?: string;
9
- timezone?: string;
10
- bars_back?: number;
11
- time?: number;
12
- seconds?: number;
13
- }
14
- interface ILibraryArgs {
15
- title: string;
16
- overlay?: boolean;
17
- }
18
- interface IIndicatorArgs {
19
- title: string;
20
- shorttitle?: string;
21
- overlay?: boolean;
22
- format?: VFormatType;
23
- precision?: number;
24
- scale?: VScale;
25
- max_bars_back?: number;
26
- timeframe?: string;
27
- timeframe_gaps?: boolean;
28
- explicit_plot_zorder?: boolean;
29
- max_lines_count?: number;
30
- max_labels_count?: number;
31
- max_boxes_count?: number;
32
- calc_bars_count?: number;
33
- max_polylines_count?: number;
34
- }
35
- interface IPlotArgs {
36
- id: string;
37
- open?: number;
38
- high?: number;
39
- low?: number;
40
- close?: number;
41
- series?: number;
42
- title?: string;
43
- color?: string;
44
- linewidth?: number;
45
- style?: VPlotStyle | VShape;
46
- trackprice?: boolean;
47
- histbase?: number;
48
- offset?: number;
49
- join?: boolean;
50
- editable?: boolean;
51
- show_last?: number;
52
- display?: VPlotDisplay;
53
- format?: string;
54
- precision?: number;
55
- force_overlay?: boolean;
56
- char?: string;
57
- location?: VLocation;
58
- text?: string;
59
- textcolor?: string;
60
- size?: VSize;
61
- colorup?: string;
62
- colordown?: string;
63
- minheight?: number;
64
- maxheight?: number;
65
- wickcolor?: string;
66
- bordercolor?: string;
67
- seriesColors?: string[];
68
- colors?: (string | undefined)[];
69
- data?: IKeyObjectValue[];
70
- gradientColorKeys?: string[];
71
- [key: string]: any;
72
- }
73
- interface IAlertArgs {
74
- id?: string;
75
- message: string;
76
- freq?: VAlert;
77
- condition?: boolean;
78
- title?: string;
79
- type?: string;
80
- }
81
- interface IBgColorArgs {
82
- color?: string;
83
- offset?: number;
84
- editable?: boolean;
85
- show_last?: number;
86
- title?: string;
87
- display?: VPlotDisplay | VPlotDisplay[];
88
- force_overlay?: boolean;
89
- seriesColors?: string[];
90
- }
91
- interface IHlineArgs {
92
- id?: string;
93
- price?: number;
94
- title?: string;
95
- color?: string;
96
- linestyle?: VHlineStyle;
97
- linewidth?: number;
98
- editable?: boolean;
99
- display?: VPlotDisplay | VPlotDisplay[];
100
- zIndex?: number;
101
- }
102
- interface IMaxBarsBackArgs {
103
- var: any;
104
- num: number;
105
- var_name: string;
106
- }
107
- interface IFillArgs {
108
- id?: string;
109
- hline1?: IKeyObjectValue;
110
- hline2?: IKeyObjectValue;
111
- plot1?: IKeyObjectValue;
112
- plot2?: IKeyObjectValue;
113
- top_value?: number;
114
- bottom_value?: number;
115
- top_color?: string;
116
- bottom_color?: string;
117
- color?: string;
118
- title?: string;
119
- editable?: boolean;
120
- fillgaps?: boolean;
121
- display?: VPlotDisplay | VPlotDisplay[];
122
- seriesColors?: string[];
123
- data?: IKeyObjectValue[];
124
- colors?: string[];
125
- top_colors?: string[];
126
- bottom_colors?: string[];
127
- type?: string;
128
- zIndex?: number;
129
- force_overlay?: boolean;
130
- }
131
- export declare class BuildInFunctions {
132
- array: BuildInArray;
133
- color: any;
134
- math: BuildInMath;
135
- str: BuildInStr;
136
- map: BuildInMap;
137
- matrix: BuildInMatrix;
138
- timeframe: BuildInTimeframe;
139
- ta: BuildInTa;
140
- input: BuildInInput;
141
- private _variables;
142
- private _cacheData;
143
- private _options;
144
- private _errorListener;
145
- private _plots;
146
- private _plotshapes;
147
- private _plotbars;
148
- private _plotchars;
149
- private _plotarrows;
150
- private _plotcandles;
151
- private _alerts;
152
- private _bgColors;
153
- private _hlines;
154
- private _fills;
155
- chart: {
156
- point: ChartPoint;
157
- };
158
- line: BuildInLine;
159
- label: BuildInLabel;
160
- polyline: BuildInPolyline;
161
- box: BuildInBox;
162
- table: BuildInTable;
163
- linefill: BuildInLinefill;
164
- log: Log;
165
- runtime: Runtime;
166
- strategy: Strategy;
167
- request: Request;
168
- syminfo: Syminfo;
169
- private _count;
170
- constructor(mintick: number, variables: BuiltInVariables, id: string);
171
- get errors(): IError[];
172
- get scriptType(): any;
173
- clearErrors(): void;
174
- addErrors(errors: IError[], key: string): void;
175
- options(barindexs: number[], isNew: boolean): IKeyObjectValue;
176
- private _getDataOfBarindex;
177
- private _getDataFromBarindex;
178
- private _getDraws;
179
- private _getDrawsFromBarindex;
180
- private _getDrawDeletes;
181
- updateOptions(options: IKeyObjectValue): void;
182
- update(data: IKeyObjectValue): void;
183
- endExecution(): void;
184
- library(args: ILibraryArgs, posStr: string): void;
185
- indicator(args: IIndicatorArgs, posStr: string): void;
186
- private _paramVerfiy;
187
- private _lineWidthVerify;
188
- plot(args: IPlotArgs, posStr: string): {
189
- type: string;
190
- offset: number;
191
- key: string;
192
- };
193
- plotbar(args: IPlotArgs, posStr: string): void;
194
- private _verfiyArgs;
195
- plotchar(args: IPlotArgs, posStr: string): void;
196
- plotarrow(args: IPlotArgs, posStr: string): void;
197
- plotshape(args: IPlotArgs, posStr: string): void;
198
- plotcandle(args: IPlotArgs, posStr: string): void;
199
- hline(args: IHlineArgs, posStr: string): {
200
- type: string;
201
- key: string;
202
- };
203
- fill(args: IFillArgs, posStr: string): void;
204
- alert({ message, freq }: IAlertArgs, posStr: string): void;
205
- alertcondition({ condition, message, title }: IAlertArgs, posStr: string): void;
206
- barcolor(args: IBgColorArgs, posStr: string): void;
207
- bgcolor(args: IBgColorArgs, posStr: string): void;
208
- private _verifyDisplay;
209
- private _setColors;
210
- max_bars_back({ num, var_name }: IMaxBarsBackArgs): void;
211
- float({ x }: IColorArgs): any;
212
- bool({ x }: IColorArgs): any;
213
- string({ x }: IColorArgs): any;
214
- int({ x }: IColorArgs): any;
215
- na({ x }: IColorArgs): boolean;
216
- fixnan({ source }: IKeyObjectValue, posStr: string): any;
217
- nz({ source, replacement }: IKeyObjectValue): any;
218
- time({ timeframe, session, timezone, bars_back }: ITimeArgs, posStr: string): number;
219
- time_close({ timeframe, session, timezone, bars_back }: ITimeArgs, posStr: string): number;
220
- timestamp(args: IKeyObjectValue): number;
221
- weekofyear({ time, timezone }: ITimeArgs): number;
222
- year({ time, timezone }: ITimeArgs): number;
223
- second({ time, timezone }: ITimeArgs): number;
224
- month({ time, timezone }: ITimeArgs): number;
225
- minute({ time, timezone }: ITimeArgs): number;
226
- hour({ time, timezone }: ITimeArgs): number;
227
- dayofweek({ time, timezone }: ITimeArgs): number;
228
- dayofmonth({ time, timezone }: ITimeArgs): number;
229
- private _calcTimeOffset;
230
- private _timeHandle;
231
- private _seriesColorHandle;
232
- private _parserSession;
233
- private _processTime;
234
- }
235
- export {};