@guihz/trading-vue-editor-tes 0.0.139 → 0.0.140
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/assets/{parserTccWorker-CEYO20yY.js → parserTccWorker-CILIfaWz.js} +1 -1
- package/lib/assets/{scriptsRunWorker-DTH9vYgp.js → scriptsRunWorker-DRaLHxRb.js} +18 -18
- package/lib/components/editor/parseScript/buildInFuncNamespace/chartPoint.d.ts +1 -1
- package/lib/components/editor/parseScript/constants.d.ts +8 -0
- package/lib/trading-vue-editor.js +1681 -1680
- package/lib/trading-vue-editor.umd.cjs +37 -37
- package/package.json +1 -1
@@ -10,7 +10,7 @@ export default class ChartPoint {
|
|
10
10
|
constructor(variables: BuiltInVariables);
|
11
11
|
new({ price, time, index }: IChartPointArgs): Point;
|
12
12
|
now({ price }: IChartPointArgs): Point;
|
13
|
-
copy({ id }: IChartPointArgs): Point;
|
13
|
+
copy({ id }: IChartPointArgs): Point | undefined;
|
14
14
|
from_index({ price, index }: IChartPointArgs): Point;
|
15
15
|
from_time({ price, time }: IChartPointArgs): Point;
|
16
16
|
}
|
@@ -76,6 +76,14 @@ export declare const ERRORS_TIPS: {
|
|
76
76
|
conditionalErr: string;
|
77
77
|
fortoErr: string;
|
78
78
|
indicatorUseStrategyFuncErr: string;
|
79
|
+
arrEmptyErr: string;
|
80
|
+
arrLengthDiffErr: string;
|
81
|
+
arrTypeErr: string;
|
82
|
+
inputOptErr: string;
|
83
|
+
mathRandomErr: string;
|
84
|
+
matrixRehapeErr: string;
|
85
|
+
strategyExitErr: string;
|
86
|
+
arrLenErr: string;
|
79
87
|
};
|
80
88
|
export declare const WARNING_TIPS: {
|
81
89
|
repeatVar: string;
|