@cryptorobot.ai/client 0.0.35 → 0.0.36
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/configuration.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +93 -11
- package/lib/services/traders/pods/api/api.schema.d.ts +52 -28
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +44 -20
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/package.json +1 -1
|
@@ -39,6 +39,9 @@ export declare const exchangesTickerSchema: import("@feathersjs/typebox").TObjec
|
|
|
39
39
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
40
40
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
41
41
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
42
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
43
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
42
45
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
43
46
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
44
47
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -75,6 +78,7 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
75
78
|
updatedAt?: any;
|
|
76
79
|
error?: any;
|
|
77
80
|
login?: string | undefined;
|
|
81
|
+
userId?: string | {} | undefined;
|
|
78
82
|
connected?: boolean | undefined;
|
|
79
83
|
downloaded?: {
|
|
80
84
|
updatedAt: any;
|
|
@@ -104,12 +108,14 @@ export declare const exchangesTickerResolver: import("@feathersjs/schema").Resol
|
|
|
104
108
|
whitelist?: any[] | undefined;
|
|
105
109
|
ccxt_async_config?: any;
|
|
106
110
|
which?: string | undefined;
|
|
111
|
+
stakeCurrencies?: any[] | undefined;
|
|
112
|
+
popularStakeCurrency?: string | null | undefined;
|
|
113
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
107
114
|
requiredCredentials?: any;
|
|
108
115
|
uid?: string | undefined;
|
|
109
116
|
twofa?: string | undefined;
|
|
110
117
|
privateKey?: string | undefined;
|
|
111
118
|
walletAddress?: string | undefined;
|
|
112
|
-
userId?: string | {} | undefined;
|
|
113
119
|
__v?: any;
|
|
114
120
|
} | undefined;
|
|
115
121
|
symbol: string;
|
|
@@ -131,6 +137,7 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
131
137
|
updatedAt?: any;
|
|
132
138
|
error?: any;
|
|
133
139
|
login?: string | undefined;
|
|
140
|
+
userId?: string | {} | undefined;
|
|
134
141
|
connected?: boolean | undefined;
|
|
135
142
|
downloaded?: {
|
|
136
143
|
updatedAt: any;
|
|
@@ -160,12 +167,14 @@ export declare const exchangesTickerExternalResolver: import("@feathersjs/schema
|
|
|
160
167
|
whitelist?: any[] | undefined;
|
|
161
168
|
ccxt_async_config?: any;
|
|
162
169
|
which?: string | undefined;
|
|
170
|
+
stakeCurrencies?: any[] | undefined;
|
|
171
|
+
popularStakeCurrency?: string | null | undefined;
|
|
172
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
163
173
|
requiredCredentials?: any;
|
|
164
174
|
uid?: string | undefined;
|
|
165
175
|
twofa?: string | undefined;
|
|
166
176
|
privateKey?: string | undefined;
|
|
167
177
|
walletAddress?: string | undefined;
|
|
168
|
-
userId?: string | {} | undefined;
|
|
169
178
|
__v?: any;
|
|
170
179
|
} | undefined;
|
|
171
180
|
symbol: string;
|
|
@@ -209,6 +218,9 @@ export declare const exchangesTickerDataSchema: import("@feathersjs/typebox").TP
|
|
|
209
218
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
210
219
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
211
220
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
221
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
222
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
223
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
212
224
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
213
225
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
214
226
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -245,6 +257,7 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
245
257
|
updatedAt?: any;
|
|
246
258
|
error?: any;
|
|
247
259
|
login?: string | undefined;
|
|
260
|
+
userId?: string | {} | undefined;
|
|
248
261
|
connected?: boolean | undefined;
|
|
249
262
|
downloaded?: {
|
|
250
263
|
updatedAt: any;
|
|
@@ -274,12 +287,14 @@ export declare const exchangesTickerDataResolver: import("@feathersjs/schema").R
|
|
|
274
287
|
whitelist?: any[] | undefined;
|
|
275
288
|
ccxt_async_config?: any;
|
|
276
289
|
which?: string | undefined;
|
|
290
|
+
stakeCurrencies?: any[] | undefined;
|
|
291
|
+
popularStakeCurrency?: string | null | undefined;
|
|
292
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
277
293
|
requiredCredentials?: any;
|
|
278
294
|
uid?: string | undefined;
|
|
279
295
|
twofa?: string | undefined;
|
|
280
296
|
privateKey?: string | undefined;
|
|
281
297
|
walletAddress?: string | undefined;
|
|
282
|
-
userId?: string | {} | undefined;
|
|
283
298
|
__v?: any;
|
|
284
299
|
} | undefined;
|
|
285
300
|
symbol: string;
|
|
@@ -323,6 +338,9 @@ export declare const exchangesTickerPatchSchema: import("@feathersjs/typebox").T
|
|
|
323
338
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
324
339
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
325
340
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
341
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
342
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
343
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
326
344
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
327
345
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
328
346
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -359,6 +377,7 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
359
377
|
updatedAt?: any;
|
|
360
378
|
error?: any;
|
|
361
379
|
login?: string | undefined;
|
|
380
|
+
userId?: string | {} | undefined;
|
|
362
381
|
connected?: boolean | undefined;
|
|
363
382
|
downloaded?: {
|
|
364
383
|
updatedAt: any;
|
|
@@ -388,12 +407,14 @@ export declare const exchangesTickerPatchResolver: import("@feathersjs/schema").
|
|
|
388
407
|
whitelist?: any[] | undefined;
|
|
389
408
|
ccxt_async_config?: any;
|
|
390
409
|
which?: string | undefined;
|
|
410
|
+
stakeCurrencies?: any[] | undefined;
|
|
411
|
+
popularStakeCurrency?: string | null | undefined;
|
|
412
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
391
413
|
requiredCredentials?: any;
|
|
392
414
|
uid?: string | undefined;
|
|
393
415
|
twofa?: string | undefined;
|
|
394
416
|
privateKey?: string | undefined;
|
|
395
417
|
walletAddress?: string | undefined;
|
|
396
|
-
userId?: string | {} | undefined;
|
|
397
418
|
__v?: any;
|
|
398
419
|
} | undefined;
|
|
399
420
|
symbol: string;
|
|
@@ -437,6 +458,9 @@ export declare const exchangesTickerQueryProperties: import("@feathersjs/typebox
|
|
|
437
458
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
438
459
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
439
460
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
461
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
462
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
463
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
440
464
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
441
465
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
442
466
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -4,40 +4,48 @@ import type { HomepageService } from './homepage.class';
|
|
|
4
4
|
export declare const homepageSchema: import("@feathersjs/typebox").TObject<{
|
|
5
5
|
id: import("@feathersjs/typebox").TNumber;
|
|
6
6
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
7
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
7
8
|
}>;
|
|
8
9
|
export type Homepage = Static<typeof homepageSchema>;
|
|
9
10
|
export declare const homepageValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
10
11
|
export declare const homepageResolver: import("@feathersjs/schema").Resolver<{
|
|
11
12
|
id: number;
|
|
12
13
|
trades: any[];
|
|
14
|
+
backtests: any;
|
|
13
15
|
}, HookContext<HomepageService>>;
|
|
14
16
|
export declare const homepageExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
15
17
|
id: number;
|
|
16
18
|
trades: any[];
|
|
19
|
+
backtests: any;
|
|
17
20
|
}, HookContext<HomepageService>>;
|
|
18
21
|
export declare const homepageDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
19
22
|
id: import("@feathersjs/typebox").TNumber;
|
|
20
23
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
21
|
-
|
|
24
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
25
|
+
}>, ["trades", "backtests"]>;
|
|
22
26
|
export type HomepageData = Static<typeof homepageDataSchema>;
|
|
23
27
|
export declare const homepageDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
24
28
|
export declare const homepageDataResolver: import("@feathersjs/schema").Resolver<{
|
|
25
29
|
id: number;
|
|
26
30
|
trades: any[];
|
|
31
|
+
backtests: any;
|
|
27
32
|
}, HookContext<HomepageService>>;
|
|
28
33
|
export declare const homepagePatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
29
34
|
id: import("@feathersjs/typebox").TNumber;
|
|
30
35
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
36
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
31
37
|
}>>;
|
|
32
38
|
export type HomepagePatch = Static<typeof homepagePatchSchema>;
|
|
33
39
|
export declare const homepagePatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
34
40
|
export declare const homepagePatchResolver: import("@feathersjs/schema").Resolver<{
|
|
35
41
|
id: number;
|
|
36
42
|
trades: any[];
|
|
43
|
+
backtests: any;
|
|
37
44
|
}, HookContext<HomepageService>>;
|
|
38
45
|
export declare const homepageQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
39
46
|
id: import("@feathersjs/typebox").TNumber;
|
|
40
47
|
trades: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
48
|
+
backtests: import("@feathersjs/typebox").TAny;
|
|
41
49
|
}>, ["id", "trades"]>;
|
|
42
50
|
export declare const homepageQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
43
51
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
@@ -29,9 +29,9 @@ export declare const strategiesBacktestSchema: import("@feathersjs/typebox").TOb
|
|
|
29
29
|
export type StrategiesBacktest = Static<typeof strategiesBacktestSchema>;
|
|
30
30
|
export declare const strategiesBacktestValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
31
31
|
export declare const strategiesBacktestResolver: import("@feathersjs/schema").Resolver<{
|
|
32
|
+
stoppedAt?: any;
|
|
32
33
|
results?: any;
|
|
33
34
|
startedAt?: any;
|
|
34
|
-
stoppedAt?: any;
|
|
35
35
|
took?: number | undefined;
|
|
36
36
|
attempts?: any;
|
|
37
37
|
_id: string | {};
|
|
@@ -54,9 +54,9 @@ export declare const strategiesBacktestResolver: import("@feathersjs/schema").Re
|
|
|
54
54
|
end: any;
|
|
55
55
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
56
56
|
export declare const strategiesBacktestExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
57
|
+
stoppedAt?: any;
|
|
57
58
|
results?: any;
|
|
58
59
|
startedAt?: any;
|
|
59
|
-
stoppedAt?: any;
|
|
60
60
|
took?: number | undefined;
|
|
61
61
|
attempts?: any;
|
|
62
62
|
_id: string | {};
|
|
@@ -106,9 +106,9 @@ export declare const strategiesBacktestDataSchema: import("@feathersjs/typebox")
|
|
|
106
106
|
export type StrategiesBacktestData = Static<typeof strategiesBacktestDataSchema>;
|
|
107
107
|
export declare const strategiesBacktestDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
108
108
|
export declare const strategiesBacktestDataResolver: import("@feathersjs/schema").Resolver<{
|
|
109
|
+
stoppedAt?: any;
|
|
109
110
|
results?: any;
|
|
110
111
|
startedAt?: any;
|
|
111
|
-
stoppedAt?: any;
|
|
112
112
|
took?: number | undefined;
|
|
113
113
|
attempts?: any;
|
|
114
114
|
_id: string | {};
|
|
@@ -158,9 +158,9 @@ export declare const strategiesBacktestPatchSchema: import("@feathersjs/typebox"
|
|
|
158
158
|
export type StrategiesBacktestPatch = Static<typeof strategiesBacktestPatchSchema>;
|
|
159
159
|
export declare const strategiesBacktestPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
160
160
|
export declare const strategiesBacktestPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
161
|
+
stoppedAt?: any;
|
|
161
162
|
results?: any;
|
|
162
163
|
startedAt?: any;
|
|
163
|
-
stoppedAt?: any;
|
|
164
164
|
took?: number | undefined;
|
|
165
165
|
attempts?: any;
|
|
166
166
|
_id: string | {};
|
|
@@ -213,15 +213,15 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
213
213
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
214
214
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
215
215
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
216
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
216
217
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
217
218
|
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
218
219
|
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
219
220
|
status: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
220
221
|
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
221
222
|
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
222
|
-
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
223
223
|
}>;
|
|
224
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "results" | "exchangeId" | "strategyId" | "status" | "traderId" | "jobId"
|
|
224
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "stoppedAt" | "results" | "exchangeId" | "strategyId" | "status" | "traderId" | "jobId")[]>;
|
|
225
225
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
226
226
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
227
227
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -245,6 +245,17 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
245
245
|
}>, import("@feathersjs/typebox").TObject<{
|
|
246
246
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
247
247
|
} | undefined>]>>]>>;
|
|
248
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
249
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
250
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
251
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
252
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
253
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
254
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
255
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
256
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
257
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
258
|
+
} | undefined>]>>]>>;
|
|
248
259
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
249
260
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
250
261
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -311,17 +322,6 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
311
322
|
}>, import("@feathersjs/typebox").TObject<{
|
|
312
323
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
313
324
|
} | undefined>]>>]>>;
|
|
314
|
-
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
315
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
316
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
317
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
318
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
319
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
320
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
321
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
322
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
323
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
324
|
-
} | undefined>]>>]>>;
|
|
325
325
|
}>>, import("@feathersjs/typebox").TObject<{
|
|
326
326
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
327
327
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
@@ -346,6 +346,17 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
346
346
|
}>, import("@feathersjs/typebox").TObject<{
|
|
347
347
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
348
348
|
} | undefined>]>>]>>;
|
|
349
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
350
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
351
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
352
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
353
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
354
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
355
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
356
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
357
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
358
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
359
|
+
} | undefined>]>>]>>;
|
|
349
360
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
350
361
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
351
362
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -412,17 +423,6 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
412
423
|
}>, import("@feathersjs/typebox").TObject<{
|
|
413
424
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
414
425
|
} | undefined>]>>]>>;
|
|
415
|
-
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
416
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
417
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
418
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
419
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
420
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
421
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
422
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
423
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
424
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
425
|
-
} | undefined>]>>]>>;
|
|
426
426
|
}>>>;
|
|
427
427
|
}>]>>;
|
|
428
428
|
$or: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
@@ -448,6 +448,17 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
448
448
|
}>, import("@feathersjs/typebox").TObject<{
|
|
449
449
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
450
450
|
} | undefined>]>>]>>;
|
|
451
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
452
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
453
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
454
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
455
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
456
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
457
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
458
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
459
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
460
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
461
|
+
} | undefined>]>>]>>;
|
|
451
462
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
452
463
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
453
464
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -514,17 +525,6 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
514
525
|
}>, import("@feathersjs/typebox").TObject<{
|
|
515
526
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
516
527
|
} | undefined>]>>]>>;
|
|
517
|
-
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
518
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
519
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
520
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
521
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
522
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
523
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
524
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
525
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
526
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
527
|
-
} | undefined>]>>]>>;
|
|
528
528
|
}>>>;
|
|
529
529
|
}>>, import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
530
530
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
@@ -549,6 +549,17 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
549
549
|
}>, import("@feathersjs/typebox").TObject<{
|
|
550
550
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
551
551
|
} | undefined>]>>]>>;
|
|
552
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
553
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
554
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
555
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
556
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
557
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
558
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
559
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
560
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
561
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
562
|
+
} | undefined>]>>]>>;
|
|
552
563
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
553
564
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
554
565
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -615,17 +626,6 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
615
626
|
}>, import("@feathersjs/typebox").TObject<{
|
|
616
627
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
617
628
|
} | undefined>]>>]>>;
|
|
618
|
-
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
619
|
-
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
620
|
-
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
621
|
-
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
622
|
-
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
623
|
-
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
624
|
-
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
625
|
-
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
626
|
-
}>, import("@feathersjs/typebox").TObject<{
|
|
627
|
-
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
628
|
-
} | undefined>]>>]>>;
|
|
629
629
|
}>>]>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
630
630
|
export type StrategiesBacktestQuery = Static<typeof strategiesBacktestQuerySchema>;
|
|
631
631
|
export declare const strategiesBacktestQueryValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
@@ -635,15 +635,15 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
635
635
|
$sort: {
|
|
636
636
|
_id?: number | undefined;
|
|
637
637
|
createdAt?: number | undefined;
|
|
638
|
+
stoppedAt?: number | undefined;
|
|
638
639
|
results?: number | undefined;
|
|
639
640
|
exchangeId?: number | undefined;
|
|
640
641
|
strategyId?: number | undefined;
|
|
641
642
|
status?: number | undefined;
|
|
642
643
|
traderId?: number | undefined;
|
|
643
644
|
jobId?: number | undefined;
|
|
644
|
-
stoppedAt?: number | undefined;
|
|
645
645
|
};
|
|
646
|
-
$select: ("_id" | "createdAt" | "results" | "exchangeId" | "strategyId" | "status" | "traderId" | "jobId"
|
|
646
|
+
$select: ("_id" | "createdAt" | "stoppedAt" | "results" | "exchangeId" | "strategyId" | "status" | "traderId" | "jobId")[];
|
|
647
647
|
$and: ({
|
|
648
648
|
_id?: string | {} | Partial<{
|
|
649
649
|
$gt: string | {};
|
|
@@ -655,6 +655,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
655
655
|
$nin: string | {} | (string | {})[];
|
|
656
656
|
} & {}> | undefined;
|
|
657
657
|
createdAt?: any;
|
|
658
|
+
stoppedAt?: any;
|
|
658
659
|
results?: any;
|
|
659
660
|
exchangeId?: unknown;
|
|
660
661
|
strategyId?: unknown;
|
|
@@ -677,7 +678,6 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
677
678
|
$in: string | string[];
|
|
678
679
|
$nin: string | string[];
|
|
679
680
|
} & {}> | undefined;
|
|
680
|
-
stoppedAt?: any;
|
|
681
681
|
} | {
|
|
682
682
|
$or: {
|
|
683
683
|
_id?: string | {} | Partial<{
|
|
@@ -690,6 +690,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
690
690
|
$nin: string | {} | (string | {})[];
|
|
691
691
|
} & {}> | undefined;
|
|
692
692
|
createdAt?: any;
|
|
693
|
+
stoppedAt?: any;
|
|
693
694
|
results?: any;
|
|
694
695
|
exchangeId?: unknown;
|
|
695
696
|
strategyId?: unknown;
|
|
@@ -712,7 +713,6 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
712
713
|
$in: string | string[];
|
|
713
714
|
$nin: string | string[];
|
|
714
715
|
} & {}> | undefined;
|
|
715
|
-
stoppedAt?: any;
|
|
716
716
|
}[];
|
|
717
717
|
})[];
|
|
718
718
|
$or: {
|
|
@@ -726,6 +726,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
726
726
|
$nin: string | {} | (string | {})[];
|
|
727
727
|
} & {}> | undefined;
|
|
728
728
|
createdAt?: any;
|
|
729
|
+
stoppedAt?: any;
|
|
729
730
|
results?: any;
|
|
730
731
|
exchangeId?: unknown;
|
|
731
732
|
strategyId?: unknown;
|
|
@@ -748,7 +749,6 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
748
749
|
$in: string | string[];
|
|
749
750
|
$nin: string | string[];
|
|
750
751
|
} & {}> | undefined;
|
|
751
|
-
stoppedAt?: any;
|
|
752
752
|
}[];
|
|
753
753
|
}> & {
|
|
754
754
|
_id?: string | {} | Partial<{
|
|
@@ -761,6 +761,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
761
761
|
$nin: string | {} | (string | {})[];
|
|
762
762
|
} & {}> | undefined;
|
|
763
763
|
createdAt?: any;
|
|
764
|
+
stoppedAt?: any;
|
|
764
765
|
results?: any;
|
|
765
766
|
exchangeId?: unknown;
|
|
766
767
|
strategyId?: unknown;
|
|
@@ -783,5 +784,4 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
783
784
|
$in: string | string[];
|
|
784
785
|
$nin: string | string[];
|
|
785
786
|
} & {}> | undefined;
|
|
786
|
-
stoppedAt?: any;
|
|
787
787
|
} & {}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
@@ -35,13 +35,13 @@ export declare const strategiesHyperoptSchema: import("@feathersjs/typebox").TOb
|
|
|
35
35
|
export type StrategiesHyperopt = Static<typeof strategiesHyperoptSchema>;
|
|
36
36
|
export declare const strategiesHyperoptValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
37
37
|
export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Resolver<{
|
|
38
|
+
stoppedAt?: any;
|
|
38
39
|
results?: any;
|
|
39
40
|
exchangeId?: string | {} | undefined;
|
|
40
41
|
status?: string | undefined;
|
|
41
42
|
traderId?: string | {} | undefined;
|
|
42
43
|
jobId?: string | undefined;
|
|
43
44
|
startedAt?: any;
|
|
44
|
-
stoppedAt?: any;
|
|
45
45
|
took?: number | undefined;
|
|
46
46
|
attempts?: any;
|
|
47
47
|
progress?: any;
|
|
@@ -66,13 +66,13 @@ export declare const strategiesHyperoptResolver: import("@feathersjs/schema").Re
|
|
|
66
66
|
epochs: number;
|
|
67
67
|
}, HookContext<StrategiesHyperoptService<import("./hyperopt.class").StrategiesHyperoptParams>>>;
|
|
68
68
|
export declare const strategiesHyperoptExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
69
|
+
stoppedAt?: any;
|
|
69
70
|
results?: any;
|
|
70
71
|
exchangeId?: string | {} | undefined;
|
|
71
72
|
status?: string | undefined;
|
|
72
73
|
traderId?: string | {} | undefined;
|
|
73
74
|
jobId?: string | undefined;
|
|
74
75
|
startedAt?: any;
|
|
75
|
-
stoppedAt?: any;
|
|
76
76
|
took?: number | undefined;
|
|
77
77
|
attempts?: any;
|
|
78
78
|
progress?: any;
|
|
@@ -130,13 +130,13 @@ export declare const strategiesHyperoptDataSchema: import("@feathersjs/typebox")
|
|
|
130
130
|
export type StrategiesHyperoptData = Static<typeof strategiesHyperoptDataSchema>;
|
|
131
131
|
export declare const strategiesHyperoptDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
132
132
|
export declare const strategiesHyperoptDataResolver: import("@feathersjs/schema").Resolver<{
|
|
133
|
+
stoppedAt?: any;
|
|
133
134
|
results?: any;
|
|
134
135
|
exchangeId?: string | {} | undefined;
|
|
135
136
|
status?: string | undefined;
|
|
136
137
|
traderId?: string | {} | undefined;
|
|
137
138
|
jobId?: string | undefined;
|
|
138
139
|
startedAt?: any;
|
|
139
|
-
stoppedAt?: any;
|
|
140
140
|
took?: number | undefined;
|
|
141
141
|
attempts?: any;
|
|
142
142
|
progress?: any;
|
|
@@ -194,13 +194,13 @@ export declare const strategiesHyperoptPatchSchema: import("@feathersjs/typebox"
|
|
|
194
194
|
export type StrategiesHyperoptPatch = Static<typeof strategiesHyperoptPatchSchema>;
|
|
195
195
|
export declare const strategiesHyperoptPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
196
196
|
export declare const strategiesHyperoptPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
197
|
+
stoppedAt?: any;
|
|
197
198
|
results?: any;
|
|
198
199
|
exchangeId?: string | {} | undefined;
|
|
199
200
|
status?: string | undefined;
|
|
200
201
|
traderId?: string | {} | undefined;
|
|
201
202
|
jobId?: string | undefined;
|
|
202
203
|
startedAt?: any;
|
|
203
|
-
stoppedAt?: any;
|
|
204
204
|
took?: number | undefined;
|
|
205
205
|
attempts?: any;
|
|
206
206
|
progress?: any;
|