@cryptorobot.ai/client 0.0.32 → 0.0.35
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/app.d.ts +1 -0
- package/lib/client.d.ts +2 -0
- package/lib/client.js +7 -5
- package/lib/configuration.d.ts +41 -1
- package/lib/helpers/app.helper.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +1 -1
- package/lib/helpers/funnel.helper.d.ts +2 -0
- package/lib/helpers/push-notification.helper.d.ts +1 -0
- package/lib/hooks/application/setup-ccxt-load-marketplaces-mocked.d.ts +3 -0
- package/lib/hooks/application/setup-fs.d.ts +3 -0
- package/lib/hooks/revenuecat-is-subscription-active.d.ts +2 -0
- package/lib/services/auth-management/auth-management.shared.js +1 -12
- package/lib/services/config/config.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.class.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +32 -24
- package/lib/services/exchanges/download/download.schema.d.ts +32 -24
- package/lib/services/exchanges/exchanges.d.ts +1 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +85 -77
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +32 -24
- package/lib/services/index.d.ts +1 -1
- package/lib/services/messages/messages.schema.d.ts +80 -32
- package/lib/services/strategies/backtest/backtest.d.ts +1 -0
- package/lib/services/strategies/backtest/backtest.schema.d.ts +133 -197
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/indicators/indicators.schema.d.ts +61 -61
- package/lib/services/strategies/strategies.d.ts +1 -0
- package/lib/services/strategies/strategies.schema.d.ts +36 -20
- package/lib/services/strategies/templates/templates.schema.d.ts +9 -1
- package/lib/services/stripe/webhooks/webhooks.class.d.ts +26 -0
- package/lib/services/stripe/webhooks/webhooks.d.ts +9 -0
- package/lib/services/stripe/webhooks/webhooks.shared.d.ts +13 -0
- package/lib/services/stripe/webhooks/webhooks.shared.js +13 -0
- package/lib/services/traders/pods/api/api.schema.d.ts +116 -76
- package/lib/services/traders/pods/pods.schema.d.ts +92 -60
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +217 -3
- package/lib/services/traders/traders.schema.d.ts +141 -133
- package/lib/services/users/users.d.ts +1 -0
- package/lib/services/users/users.helper.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +236 -88
- package/package.json +1 -1
|
@@ -3,10 +3,10 @@ import type { HookContext } from '../../../declarations';
|
|
|
3
3
|
import type { StrategiesBacktestService } from './backtest.class';
|
|
4
4
|
export declare const strategiesBacktestSchema: import("@feathersjs/typebox").TObject<{
|
|
5
5
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
6
|
-
traderId: import("@feathersjs/typebox").TString<string>;
|
|
7
|
-
|
|
6
|
+
traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
7
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
8
|
+
exchangeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
8
9
|
jobId: import("@feathersjs/typebox").TString<string>;
|
|
9
|
-
strategyId: import("@feathersjs/typebox").TAny;
|
|
10
10
|
status: import("@feathersjs/typebox").TString<string>;
|
|
11
11
|
overrides: import("@feathersjs/typebox").TObject<{
|
|
12
12
|
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
@@ -41,10 +41,10 @@ export declare const strategiesBacktestResolver: import("@feathersjs/schema").Re
|
|
|
41
41
|
protections: boolean;
|
|
42
42
|
eps: boolean;
|
|
43
43
|
};
|
|
44
|
-
exchangeId:
|
|
45
|
-
strategyId:
|
|
44
|
+
exchangeId: unknown;
|
|
45
|
+
strategyId: unknown;
|
|
46
46
|
status: string;
|
|
47
|
-
traderId:
|
|
47
|
+
traderId: unknown;
|
|
48
48
|
jobId: string;
|
|
49
49
|
overrides: {
|
|
50
50
|
dry_run_wallet: number;
|
|
@@ -66,10 +66,10 @@ export declare const strategiesBacktestExternalResolver: import("@feathersjs/sch
|
|
|
66
66
|
protections: boolean;
|
|
67
67
|
eps: boolean;
|
|
68
68
|
};
|
|
69
|
-
exchangeId:
|
|
70
|
-
strategyId:
|
|
69
|
+
exchangeId: unknown;
|
|
70
|
+
strategyId: unknown;
|
|
71
71
|
status: string;
|
|
72
|
-
traderId:
|
|
72
|
+
traderId: unknown;
|
|
73
73
|
jobId: string;
|
|
74
74
|
overrides: {
|
|
75
75
|
dry_run_wallet: number;
|
|
@@ -80,10 +80,10 @@ export declare const strategiesBacktestExternalResolver: import("@feathersjs/sch
|
|
|
80
80
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
81
81
|
export declare const strategiesBacktestDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
82
82
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
83
|
-
traderId: import("@feathersjs/typebox").TString<string>;
|
|
84
|
-
|
|
83
|
+
traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
84
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
85
|
+
exchangeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
85
86
|
jobId: import("@feathersjs/typebox").TString<string>;
|
|
86
|
-
strategyId: import("@feathersjs/typebox").TAny;
|
|
87
87
|
status: import("@feathersjs/typebox").TString<string>;
|
|
88
88
|
overrides: import("@feathersjs/typebox").TObject<{
|
|
89
89
|
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
@@ -102,7 +102,7 @@ export declare const strategiesBacktestDataSchema: import("@feathersjs/typebox")
|
|
|
102
102
|
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
103
103
|
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
104
104
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
105
|
-
}>, ["traderId", "exchangeId", "overrides", "options", "start", "end"]>;
|
|
105
|
+
}>, ["traderId", "strategyId", "exchangeId", "overrides", "options", "start", "end"]>;
|
|
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<{
|
|
@@ -118,10 +118,10 @@ export declare const strategiesBacktestDataResolver: import("@feathersjs/schema"
|
|
|
118
118
|
protections: boolean;
|
|
119
119
|
eps: boolean;
|
|
120
120
|
};
|
|
121
|
-
exchangeId:
|
|
122
|
-
strategyId:
|
|
121
|
+
exchangeId: unknown;
|
|
122
|
+
strategyId: unknown;
|
|
123
123
|
status: string;
|
|
124
|
-
traderId:
|
|
124
|
+
traderId: unknown;
|
|
125
125
|
jobId: string;
|
|
126
126
|
overrides: {
|
|
127
127
|
dry_run_wallet: number;
|
|
@@ -132,10 +132,10 @@ export declare const strategiesBacktestDataResolver: import("@feathersjs/schema"
|
|
|
132
132
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
133
133
|
export declare const strategiesBacktestPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
134
134
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
135
|
-
traderId: import("@feathersjs/typebox").TString<string>;
|
|
136
|
-
|
|
135
|
+
traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
136
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
137
|
+
exchangeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
137
138
|
jobId: import("@feathersjs/typebox").TString<string>;
|
|
138
|
-
strategyId: import("@feathersjs/typebox").TAny;
|
|
139
139
|
status: import("@feathersjs/typebox").TString<string>;
|
|
140
140
|
overrides: import("@feathersjs/typebox").TObject<{
|
|
141
141
|
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
@@ -170,10 +170,10 @@ export declare const strategiesBacktestPatchResolver: import("@feathersjs/schema
|
|
|
170
170
|
protections: boolean;
|
|
171
171
|
eps: boolean;
|
|
172
172
|
};
|
|
173
|
-
exchangeId:
|
|
174
|
-
strategyId:
|
|
173
|
+
exchangeId: unknown;
|
|
174
|
+
strategyId: unknown;
|
|
175
175
|
status: string;
|
|
176
|
-
traderId:
|
|
176
|
+
traderId: unknown;
|
|
177
177
|
jobId: string;
|
|
178
178
|
overrides: {
|
|
179
179
|
dry_run_wallet: number;
|
|
@@ -184,10 +184,10 @@ export declare const strategiesBacktestPatchResolver: import("@feathersjs/schema
|
|
|
184
184
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
185
185
|
export declare const strategiesBacktestQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
186
186
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
187
|
-
traderId: import("@feathersjs/typebox").TString<string>;
|
|
188
|
-
|
|
187
|
+
traderId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
188
|
+
strategyId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
189
|
+
exchangeId: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
189
190
|
jobId: import("@feathersjs/typebox").TString<string>;
|
|
190
|
-
strategyId: import("@feathersjs/typebox").TAny;
|
|
191
191
|
status: import("@feathersjs/typebox").TString<string>;
|
|
192
192
|
overrides: import("@feathersjs/typebox").TObject<{
|
|
193
193
|
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
@@ -256,25 +256,25 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
256
256
|
}>, import("@feathersjs/typebox").TObject<{
|
|
257
257
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
258
258
|
} | undefined>]>>]>>;
|
|
259
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
260
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
261
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
262
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
263
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
264
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
265
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
266
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
259
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
260
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
261
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
262
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
263
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
264
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
265
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
266
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
267
267
|
}>, import("@feathersjs/typebox").TObject<{
|
|
268
268
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
269
269
|
} | undefined>]>>]>>;
|
|
270
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
271
|
-
$gt: import("@feathersjs/typebox").
|
|
272
|
-
$gte: import("@feathersjs/typebox").
|
|
273
|
-
$lt: import("@feathersjs/typebox").
|
|
274
|
-
$lte: import("@feathersjs/typebox").
|
|
275
|
-
$ne: import("@feathersjs/typebox").
|
|
276
|
-
$in: import("@feathersjs/typebox").
|
|
277
|
-
$nin: import("@feathersjs/typebox").
|
|
270
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
271
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
272
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
273
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
274
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
275
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
276
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
277
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
278
278
|
}>, import("@feathersjs/typebox").TObject<{
|
|
279
279
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
280
280
|
} | undefined>]>>]>>;
|
|
@@ -289,14 +289,14 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
289
289
|
}>, import("@feathersjs/typebox").TObject<{
|
|
290
290
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
291
291
|
} | undefined>]>>]>>;
|
|
292
|
-
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
293
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
294
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
295
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
296
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
297
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
298
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
299
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
292
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
293
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
294
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
295
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
296
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
297
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
298
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
299
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
300
300
|
}>, import("@feathersjs/typebox").TObject<{
|
|
301
301
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
302
302
|
} | undefined>]>>]>>;
|
|
@@ -357,25 +357,25 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
357
357
|
}>, import("@feathersjs/typebox").TObject<{
|
|
358
358
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
359
359
|
} | undefined>]>>]>>;
|
|
360
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
361
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
362
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
363
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
364
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
365
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
366
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
367
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
360
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
361
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
362
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
363
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
364
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
365
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
366
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
367
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
368
368
|
}>, import("@feathersjs/typebox").TObject<{
|
|
369
369
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
370
370
|
} | undefined>]>>]>>;
|
|
371
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
372
|
-
$gt: import("@feathersjs/typebox").
|
|
373
|
-
$gte: import("@feathersjs/typebox").
|
|
374
|
-
$lt: import("@feathersjs/typebox").
|
|
375
|
-
$lte: import("@feathersjs/typebox").
|
|
376
|
-
$ne: import("@feathersjs/typebox").
|
|
377
|
-
$in: import("@feathersjs/typebox").
|
|
378
|
-
$nin: import("@feathersjs/typebox").
|
|
371
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
372
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
373
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
374
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
375
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
376
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
377
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
378
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
379
379
|
}>, import("@feathersjs/typebox").TObject<{
|
|
380
380
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
381
381
|
} | undefined>]>>]>>;
|
|
@@ -390,14 +390,14 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
390
390
|
}>, import("@feathersjs/typebox").TObject<{
|
|
391
391
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
392
392
|
} | undefined>]>>]>>;
|
|
393
|
-
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
394
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
395
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
396
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
397
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
398
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
399
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
400
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
393
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
394
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
395
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
396
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
397
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
398
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
399
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
400
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
401
401
|
}>, import("@feathersjs/typebox").TObject<{
|
|
402
402
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
403
403
|
} | undefined>]>>]>>;
|
|
@@ -459,25 +459,25 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
459
459
|
}>, import("@feathersjs/typebox").TObject<{
|
|
460
460
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
461
461
|
} | undefined>]>>]>>;
|
|
462
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
463
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
464
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
465
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
466
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
467
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
468
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
469
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
462
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
463
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
464
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
465
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
466
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
467
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
468
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
469
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
470
470
|
}>, import("@feathersjs/typebox").TObject<{
|
|
471
471
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
472
472
|
} | undefined>]>>]>>;
|
|
473
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
474
|
-
$gt: import("@feathersjs/typebox").
|
|
475
|
-
$gte: import("@feathersjs/typebox").
|
|
476
|
-
$lt: import("@feathersjs/typebox").
|
|
477
|
-
$lte: import("@feathersjs/typebox").
|
|
478
|
-
$ne: import("@feathersjs/typebox").
|
|
479
|
-
$in: import("@feathersjs/typebox").
|
|
480
|
-
$nin: import("@feathersjs/typebox").
|
|
473
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
474
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
475
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
476
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
477
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
478
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
479
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
480
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
481
481
|
}>, import("@feathersjs/typebox").TObject<{
|
|
482
482
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
483
483
|
} | undefined>]>>]>>;
|
|
@@ -492,14 +492,14 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
492
492
|
}>, import("@feathersjs/typebox").TObject<{
|
|
493
493
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
494
494
|
} | undefined>]>>]>>;
|
|
495
|
-
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
496
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
497
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
498
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
499
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
500
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
501
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
502
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
495
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
496
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
497
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
498
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
499
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
500
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
501
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
502
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
503
503
|
}>, import("@feathersjs/typebox").TObject<{
|
|
504
504
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
505
505
|
} | undefined>]>>]>>;
|
|
@@ -560,25 +560,25 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
560
560
|
}>, import("@feathersjs/typebox").TObject<{
|
|
561
561
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
562
562
|
} | undefined>]>>]>>;
|
|
563
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
564
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
565
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
566
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
567
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
568
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
569
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
570
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
563
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
564
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
565
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
566
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
567
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
568
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
569
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
570
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
571
571
|
}>, import("@feathersjs/typebox").TObject<{
|
|
572
572
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
573
573
|
} | undefined>]>>]>>;
|
|
574
|
-
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").
|
|
575
|
-
$gt: import("@feathersjs/typebox").
|
|
576
|
-
$gte: import("@feathersjs/typebox").
|
|
577
|
-
$lt: import("@feathersjs/typebox").
|
|
578
|
-
$lte: import("@feathersjs/typebox").
|
|
579
|
-
$ne: import("@feathersjs/typebox").
|
|
580
|
-
$in: import("@feathersjs/typebox").
|
|
581
|
-
$nin: import("@feathersjs/typebox").
|
|
574
|
+
strategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
575
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
576
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
577
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
578
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
579
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
580
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
581
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
582
582
|
}>, import("@feathersjs/typebox").TObject<{
|
|
583
583
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
584
584
|
} | undefined>]>>]>>;
|
|
@@ -593,14 +593,14 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
593
593
|
}>, import("@feathersjs/typebox").TObject<{
|
|
594
594
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
595
595
|
} | undefined>]>>]>>;
|
|
596
|
-
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
597
|
-
$gt: import("@feathersjs/typebox").TString<string>;
|
|
598
|
-
$gte: import("@feathersjs/typebox").TString<string>;
|
|
599
|
-
$lt: import("@feathersjs/typebox").TString<string>;
|
|
600
|
-
$lte: import("@feathersjs/typebox").TString<string>;
|
|
601
|
-
$ne: import("@feathersjs/typebox").TString<string>;
|
|
602
|
-
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
603
|
-
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
596
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, 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<{
|
|
597
|
+
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
598
|
+
$gte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
599
|
+
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
600
|
+
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
601
|
+
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>;
|
|
602
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
603
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TUnknown, import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>]>>;
|
|
604
604
|
}>, import("@feathersjs/typebox").TObject<{
|
|
605
605
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
606
606
|
} | undefined>]>>]>>;
|
|
@@ -656,16 +656,8 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
656
656
|
} & {}> | undefined;
|
|
657
657
|
createdAt?: any;
|
|
658
658
|
results?: any;
|
|
659
|
-
exchangeId?:
|
|
660
|
-
|
|
661
|
-
$gte: string;
|
|
662
|
-
$lt: string;
|
|
663
|
-
$lte: string;
|
|
664
|
-
$ne: string;
|
|
665
|
-
$in: string | string[];
|
|
666
|
-
$nin: string | string[];
|
|
667
|
-
} & {}> | undefined;
|
|
668
|
-
strategyId?: any;
|
|
659
|
+
exchangeId?: unknown;
|
|
660
|
+
strategyId?: unknown;
|
|
669
661
|
status?: string | Partial<{
|
|
670
662
|
$gt: string;
|
|
671
663
|
$gte: string;
|
|
@@ -675,15 +667,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
675
667
|
$in: string | string[];
|
|
676
668
|
$nin: string | string[];
|
|
677
669
|
} & {}> | undefined;
|
|
678
|
-
traderId?:
|
|
679
|
-
$gt: string;
|
|
680
|
-
$gte: string;
|
|
681
|
-
$lt: string;
|
|
682
|
-
$lte: string;
|
|
683
|
-
$ne: string;
|
|
684
|
-
$in: string | string[];
|
|
685
|
-
$nin: string | string[];
|
|
686
|
-
} & {}> | undefined;
|
|
670
|
+
traderId?: unknown;
|
|
687
671
|
jobId?: string | Partial<{
|
|
688
672
|
$gt: string;
|
|
689
673
|
$gte: string;
|
|
@@ -707,16 +691,8 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
707
691
|
} & {}> | undefined;
|
|
708
692
|
createdAt?: any;
|
|
709
693
|
results?: any;
|
|
710
|
-
exchangeId?:
|
|
711
|
-
|
|
712
|
-
$gte: string;
|
|
713
|
-
$lt: string;
|
|
714
|
-
$lte: string;
|
|
715
|
-
$ne: string;
|
|
716
|
-
$in: string | string[];
|
|
717
|
-
$nin: string | string[];
|
|
718
|
-
} & {}> | undefined;
|
|
719
|
-
strategyId?: any;
|
|
694
|
+
exchangeId?: unknown;
|
|
695
|
+
strategyId?: unknown;
|
|
720
696
|
status?: string | Partial<{
|
|
721
697
|
$gt: string;
|
|
722
698
|
$gte: string;
|
|
@@ -726,15 +702,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
726
702
|
$in: string | string[];
|
|
727
703
|
$nin: string | string[];
|
|
728
704
|
} & {}> | undefined;
|
|
729
|
-
traderId?:
|
|
730
|
-
$gt: string;
|
|
731
|
-
$gte: string;
|
|
732
|
-
$lt: string;
|
|
733
|
-
$lte: string;
|
|
734
|
-
$ne: string;
|
|
735
|
-
$in: string | string[];
|
|
736
|
-
$nin: string | string[];
|
|
737
|
-
} & {}> | undefined;
|
|
705
|
+
traderId?: unknown;
|
|
738
706
|
jobId?: string | Partial<{
|
|
739
707
|
$gt: string;
|
|
740
708
|
$gte: string;
|
|
@@ -759,16 +727,8 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
759
727
|
} & {}> | undefined;
|
|
760
728
|
createdAt?: any;
|
|
761
729
|
results?: any;
|
|
762
|
-
exchangeId?:
|
|
763
|
-
|
|
764
|
-
$gte: string;
|
|
765
|
-
$lt: string;
|
|
766
|
-
$lte: string;
|
|
767
|
-
$ne: string;
|
|
768
|
-
$in: string | string[];
|
|
769
|
-
$nin: string | string[];
|
|
770
|
-
} & {}> | undefined;
|
|
771
|
-
strategyId?: any;
|
|
730
|
+
exchangeId?: unknown;
|
|
731
|
+
strategyId?: unknown;
|
|
772
732
|
status?: string | Partial<{
|
|
773
733
|
$gt: string;
|
|
774
734
|
$gte: string;
|
|
@@ -778,15 +738,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
778
738
|
$in: string | string[];
|
|
779
739
|
$nin: string | string[];
|
|
780
740
|
} & {}> | undefined;
|
|
781
|
-
traderId?:
|
|
782
|
-
$gt: string;
|
|
783
|
-
$gte: string;
|
|
784
|
-
$lt: string;
|
|
785
|
-
$lte: string;
|
|
786
|
-
$ne: string;
|
|
787
|
-
$in: string | string[];
|
|
788
|
-
$nin: string | string[];
|
|
789
|
-
} & {}> | undefined;
|
|
741
|
+
traderId?: unknown;
|
|
790
742
|
jobId?: string | Partial<{
|
|
791
743
|
$gt: string;
|
|
792
744
|
$gte: string;
|
|
@@ -810,16 +762,8 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
810
762
|
} & {}> | undefined;
|
|
811
763
|
createdAt?: any;
|
|
812
764
|
results?: any;
|
|
813
|
-
exchangeId?:
|
|
814
|
-
|
|
815
|
-
$gte: string;
|
|
816
|
-
$lt: string;
|
|
817
|
-
$lte: string;
|
|
818
|
-
$ne: string;
|
|
819
|
-
$in: string | string[];
|
|
820
|
-
$nin: string | string[];
|
|
821
|
-
} & {}> | undefined;
|
|
822
|
-
strategyId?: any;
|
|
765
|
+
exchangeId?: unknown;
|
|
766
|
+
strategyId?: unknown;
|
|
823
767
|
status?: string | Partial<{
|
|
824
768
|
$gt: string;
|
|
825
769
|
$gte: string;
|
|
@@ -829,15 +773,7 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
829
773
|
$in: string | string[];
|
|
830
774
|
$nin: string | string[];
|
|
831
775
|
} & {}> | undefined;
|
|
832
|
-
traderId?:
|
|
833
|
-
$gt: string;
|
|
834
|
-
$gte: string;
|
|
835
|
-
$lt: string;
|
|
836
|
-
$lte: string;
|
|
837
|
-
$ne: string;
|
|
838
|
-
$in: string | string[];
|
|
839
|
-
$nin: string | string[];
|
|
840
|
-
} & {}> | undefined;
|
|
776
|
+
traderId?: unknown;
|
|
841
777
|
jobId?: string | Partial<{
|
|
842
778
|
$gt: string;
|
|
843
779
|
$gte: string;
|