@guihz/trading-vue-editor-tes 0.0.233 → 0.0.235
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/lib/assets/{parserTccWorker-pfftqUuo.js → parserTccWorker-vFVZ2ME3.js} +83 -83
- package/lib/assets/scriptsRunWorker-WOG2e5yw.js +69 -0
- package/lib/components/editor/parseScript/buildInFuncNamespace/log.d.ts +1 -0
- package/lib/components/editor/parseScript/buildInFuncNamespace/strategy.d.ts +1 -0
- package/lib/components/editor/parseScript/buildInFuncNamespace/ta.d.ts +13 -11
- package/lib/components/editor/parseScript/buildInVarNamespace/syminfo.d.ts +33 -37
- package/lib/components/editor/parseScript/constants.d.ts +1 -0
- package/lib/components/editor/parseScript/parseToJs.d.ts +1 -0
- package/lib/trading-vue-editor.js +3 -3
- package/lib/trading-vue-editor.umd.cjs +2 -2
- package/package.json +1 -1
- package/lib/assets/scriptsRunWorker-BnzAVG9B.js +0 -69
@@ -47,8 +47,8 @@ export default class BuildInTa {
|
|
47
47
|
constructor(variables: BuiltInVariables, math: BuildInMath, timeframe: BuildInTimeframe);
|
48
48
|
alma({ series, length, offset, sigma, floor }: ITaArgs, posStr: string): number | undefined;
|
49
49
|
sma({ source, length }: ITaArgs, posStr: string): number | undefined;
|
50
|
-
rma({ source, length }: ITaArgs, posStr: string):
|
51
|
-
atr({ length }: ITaArgs, posStr: string):
|
50
|
+
rma({ source, length }: ITaArgs, posStr: string): any;
|
51
|
+
atr({ length }: ITaArgs, posStr: string): any;
|
52
52
|
barssince({ condition }: ITaArgs, posStr: string): any;
|
53
53
|
stdev({ source, length, biased }: ITaArgs, posStr: string): number | undefined;
|
54
54
|
private _sum;
|
@@ -59,12 +59,12 @@ export default class BuildInTa {
|
|
59
59
|
cmo({ series, length }: ITaArgs, posStr: string): number | undefined;
|
60
60
|
cog({ source, length }: ITaArgs, posStr: string): number | undefined;
|
61
61
|
correlation({ source1, source2, length }: ITaArgs, posStr: string): number | undefined;
|
62
|
-
cross({ source1, source2 }: ITaArgs, posStr: string):
|
63
|
-
crossover({ source1, source2 }: ITaArgs, posStr: string):
|
64
|
-
crossunder({ source1, source2 }: ITaArgs, posStr: string):
|
62
|
+
cross({ source1, source2 }: ITaArgs, posStr: string): any;
|
63
|
+
crossover({ source1, source2 }: ITaArgs, posStr: string): any;
|
64
|
+
crossunder({ source1, source2 }: ITaArgs, posStr: string): any;
|
65
65
|
cum({ source }: ITaArgs, posStr: string): any;
|
66
66
|
dev({ source, length }: ITaArgs, posStr: string): number | undefined;
|
67
|
-
dmi({ diLength, adxSmoothing }: ITaArgs, posStr: string):
|
67
|
+
dmi({ diLength, adxSmoothing }: ITaArgs, posStr: string): any;
|
68
68
|
ema({ source, length }: ITaArgs, posStr: string): any;
|
69
69
|
falling({ source, length }: ITaArgs, posStr: string): any;
|
70
70
|
rising({ source, length }: ITaArgs, posStr: string): any;
|
@@ -99,21 +99,23 @@ export default class BuildInTa {
|
|
99
99
|
pivotlow({ source, leftbars, rightbars }: ITaArgs, posStr: string): any;
|
100
100
|
range({ source, length }: ITaArgs, posStr: string): number | undefined;
|
101
101
|
roc({ source, length }: ITaArgs, posStr: string): number | undefined;
|
102
|
-
rsi({ source, length }: ITaArgs, posStr: string):
|
102
|
+
rsi({ source, length }: ITaArgs, posStr: string): any;
|
103
103
|
sar({ start, inc, max }: ITaArgs, posStr: string): any;
|
104
104
|
stoch({ source, high, low, length }: ITaArgs, posStr: string): number | undefined;
|
105
|
-
supertrend({ factor, atrPeriod }: ITaArgs, posStr: string):
|
106
|
-
swma({ source }: ITaArgs, posStr: string):
|
107
|
-
tr({ handle_na }: ITaArgs, posStr: string):
|
105
|
+
supertrend({ factor, atrPeriod }: ITaArgs, posStr: string): any;
|
106
|
+
swma({ source }: ITaArgs, posStr: string): any;
|
107
|
+
tr({ handle_na }: ITaArgs, posStr: string): any;
|
108
108
|
tsi({ source, short_length, long_length }: ITaArgs, posStr: string): number | undefined;
|
109
109
|
valuewhen({ condition, source, occurrence }: ITaArgs, posStr: string): any;
|
110
110
|
variance({ source, length, biased }: ITaArgs, posStr: string): number | undefined;
|
111
|
-
vwap({ source, anchor, stdev_mult }: ITaArgs, posStr: string):
|
111
|
+
vwap({ source, anchor, stdev_mult }: ITaArgs, posStr: string): any;
|
112
112
|
private _computeBands;
|
113
113
|
vwma({ source, length }: ITaArgs, posStr: string): number | undefined;
|
114
114
|
wpr({ length }: ITaArgs, posStr: string): number | undefined;
|
115
115
|
private _sort;
|
116
116
|
private _cacheDataList;
|
117
|
+
private _getCacheData;
|
117
118
|
private _cacheDataHandle;
|
119
|
+
private _verifyCacheData;
|
118
120
|
}
|
119
121
|
export {};
|
@@ -1,45 +1,41 @@
|
|
1
1
|
import { IKeyObjectValue } from "../../type";
|
2
|
-
import { BuiltInVariables } from "../buildInVariables";
|
3
|
-
import { VSession } from "../enum";
|
4
2
|
export declare class Syminfo {
|
5
|
-
private _variables;
|
6
3
|
private _syminfo;
|
7
|
-
constructor(variables: BuiltInVariables);
|
8
4
|
update(syminfo: IKeyObjectValue): void;
|
9
|
-
get basecurrency():
|
10
|
-
get country():
|
11
|
-
get currency():
|
12
|
-
get description():
|
13
|
-
get employees():
|
14
|
-
get expiration_date():
|
15
|
-
get industry():
|
16
|
-
get minmove():
|
17
|
-
get mintick():
|
18
|
-
get pointvalue():
|
5
|
+
get basecurrency(): any;
|
6
|
+
get country(): any;
|
7
|
+
get currency(): any;
|
8
|
+
get description(): any;
|
9
|
+
get employees(): any;
|
10
|
+
get expiration_date(): any;
|
11
|
+
get industry(): any;
|
12
|
+
get minmove(): any;
|
13
|
+
get mintick(): any;
|
14
|
+
get pointvalue(): any;
|
19
15
|
get prefix(): any;
|
20
|
-
get pricescale():
|
21
|
-
get recommendations_buy():
|
22
|
-
get recommendations_buy_strong():
|
23
|
-
get recommendations_date():
|
24
|
-
get recommendations_hold():
|
25
|
-
get recommendations_sell():
|
26
|
-
get recommendations_sell_strong():
|
27
|
-
get recommendations_total():
|
28
|
-
get root():
|
29
|
-
get sector():
|
30
|
-
get session():
|
31
|
-
get shareholders():
|
32
|
-
get shares_outstanding_float():
|
33
|
-
get shares_outstanding_total():
|
34
|
-
get target_price_average():
|
35
|
-
get target_price_date():
|
36
|
-
get target_price_estimates():
|
37
|
-
get target_price_high():
|
38
|
-
get target_price_low():
|
39
|
-
get target_price_median():
|
16
|
+
get pricescale(): any;
|
17
|
+
get recommendations_buy(): any;
|
18
|
+
get recommendations_buy_strong(): any;
|
19
|
+
get recommendations_date(): any;
|
20
|
+
get recommendations_hold(): any;
|
21
|
+
get recommendations_sell(): any;
|
22
|
+
get recommendations_sell_strong(): any;
|
23
|
+
get recommendations_total(): any;
|
24
|
+
get root(): any;
|
25
|
+
get sector(): any;
|
26
|
+
get session(): any;
|
27
|
+
get shareholders(): any;
|
28
|
+
get shares_outstanding_float(): any;
|
29
|
+
get shares_outstanding_total(): any;
|
30
|
+
get target_price_average(): any;
|
31
|
+
get target_price_date(): any;
|
32
|
+
get target_price_estimates(): any;
|
33
|
+
get target_price_high(): any;
|
34
|
+
get target_price_low(): any;
|
35
|
+
get target_price_median(): any;
|
40
36
|
get ticker(): any;
|
41
37
|
get tickerid(): any;
|
42
|
-
get timezone():
|
43
|
-
get type():
|
44
|
-
get volumetype():
|
38
|
+
get timezone(): any;
|
39
|
+
get type(): any;
|
40
|
+
get volumetype(): any;
|
45
41
|
}
|
@@ -57,6 +57,7 @@ export default class ParseToJs {
|
|
57
57
|
private _parserDeclareAssign;
|
58
58
|
private _parserDeclareAssignNames;
|
59
59
|
private _parserSingleExpression;
|
60
|
+
private _parserEqualityExpression;
|
60
61
|
private _parserAdditiveExpression;
|
61
62
|
private _parserMemberIndexExpression;
|
62
63
|
private _getOtherVarMemberIndexs;
|
@@ -67159,7 +67159,7 @@ const fo = {
|
|
67159
67159
|
"editor.foldBackground": Jt(L["color-cold-gray-200"], 0.5),
|
67160
67160
|
"editor.lineHighlightBackground": L["color-tv-blue-50"],
|
67161
67161
|
"editor.lineHighlightBorder": L["color-tv-blue-50"],
|
67162
|
-
"editor.rangeHighlightBackground": L["color-tv-blue-
|
67162
|
+
"editor.rangeHighlightBackground": L["color-tv-blue-100"],
|
67163
67163
|
"editorBracketMatch.background": L["color-cold-gray-150"],
|
67164
67164
|
"editor.selectionBackground": L["color-tv-blue-100"],
|
67165
67165
|
"editor.selectionHighlightBackground": L["color-tv-blue-50"],
|
@@ -69138,14 +69138,14 @@ function br(a, s, r) {
|
|
69138
69138
|
function Nw() {
|
69139
69139
|
return new Array(4).fill(0).map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16)).join("-");
|
69140
69140
|
}
|
69141
|
-
const Cd = new Worker(new URL("" + new URL("assets/scriptsRunWorker-
|
69141
|
+
const Cd = new Worker(new URL("" + new URL("assets/scriptsRunWorker-WOG2e5yw.js", import.meta.url).href, import.meta.url), { type: "module", name: "Run TccScript Server" });
|
69142
69142
|
Cd.onerror = (a) => {
|
69143
69143
|
console.error(a);
|
69144
69144
|
};
|
69145
69145
|
async function Sd(a) {
|
69146
69146
|
return await wn.setInlayHints(a);
|
69147
69147
|
}
|
69148
|
-
const Nd = xo(Cd), zd = xo(new Worker(new URL("" + new URL("assets/parserTccWorker-
|
69148
|
+
const Nd = xo(Cd), zd = xo(new Worker(new URL("" + new URL("assets/parserTccWorker-vFVZ2ME3.js", import.meta.url).href, import.meta.url), { type: "module", name: "Parser TccScript Server" }));
|
69149
69149
|
async function zw(a, s = !1) {
|
69150
69150
|
const { functions: r, types: n, constants: o, variables: l, methods: c } = dt;
|
69151
69151
|
return await zd.parseTcc(a, s, ho(Sd), { functions: Object.fromEntries(r), methods: Object.fromEntries(c), types: Object.fromEntries(n), constants: Object.fromEntries(o), variables: Object.fromEntries(l) });
|