@cryptorobot.ai/client 0.0.19 → 0.0.25
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/client.d.ts +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +519 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +9 -2
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -5,82 +5,213 @@ export declare const strategiesBacktestSchema: import("@feathersjs/typebox").TOb
|
|
|
5
5
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
6
6
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
7
7
|
exchangeId: import("@feathersjs/typebox").TString<string>;
|
|
8
|
+
jobId: import("@feathersjs/typebox").TString<string>;
|
|
9
|
+
status: import("@feathersjs/typebox").TString<string>;
|
|
10
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
11
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
12
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
13
|
+
}>;
|
|
14
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
15
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
16
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
17
|
+
}>;
|
|
18
|
+
start: import("@feathersjs/typebox").TAny;
|
|
19
|
+
end: import("@feathersjs/typebox").TAny;
|
|
8
20
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
9
21
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
22
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
23
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
24
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
25
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
10
26
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
11
27
|
}>;
|
|
12
28
|
export type StrategiesBacktest = Static<typeof strategiesBacktestSchema>;
|
|
13
29
|
export declare const strategiesBacktestValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
14
30
|
export declare const strategiesBacktestResolver: import("@feathersjs/schema").Resolver<{
|
|
15
31
|
results?: any;
|
|
32
|
+
startedAt?: any;
|
|
33
|
+
stoppedAt?: any;
|
|
34
|
+
took?: number | undefined;
|
|
35
|
+
attempts?: any;
|
|
16
36
|
_id: string | {};
|
|
17
37
|
createdAt: any;
|
|
18
38
|
updatedAt: any;
|
|
19
|
-
|
|
39
|
+
options: {
|
|
40
|
+
protections: boolean;
|
|
41
|
+
eps: boolean;
|
|
42
|
+
};
|
|
20
43
|
exchangeId: string;
|
|
44
|
+
status: string;
|
|
45
|
+
traderId: string;
|
|
46
|
+
jobId: string;
|
|
47
|
+
overrides: {
|
|
48
|
+
dry_run_wallet: number;
|
|
49
|
+
max_open_trades: number;
|
|
50
|
+
};
|
|
51
|
+
start: any;
|
|
52
|
+
end: any;
|
|
21
53
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
22
54
|
export declare const strategiesBacktestExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
23
55
|
results?: any;
|
|
56
|
+
startedAt?: any;
|
|
57
|
+
stoppedAt?: any;
|
|
58
|
+
took?: number | undefined;
|
|
59
|
+
attempts?: any;
|
|
24
60
|
_id: string | {};
|
|
25
61
|
createdAt: any;
|
|
26
62
|
updatedAt: any;
|
|
27
|
-
|
|
63
|
+
options: {
|
|
64
|
+
protections: boolean;
|
|
65
|
+
eps: boolean;
|
|
66
|
+
};
|
|
28
67
|
exchangeId: string;
|
|
68
|
+
status: string;
|
|
69
|
+
traderId: string;
|
|
70
|
+
jobId: string;
|
|
71
|
+
overrides: {
|
|
72
|
+
dry_run_wallet: number;
|
|
73
|
+
max_open_trades: number;
|
|
74
|
+
};
|
|
75
|
+
start: any;
|
|
76
|
+
end: any;
|
|
29
77
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
30
78
|
export declare const strategiesBacktestDataSchema: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
31
79
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
32
80
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
33
81
|
exchangeId: import("@feathersjs/typebox").TString<string>;
|
|
82
|
+
jobId: import("@feathersjs/typebox").TString<string>;
|
|
83
|
+
status: import("@feathersjs/typebox").TString<string>;
|
|
84
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
85
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
86
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
87
|
+
}>;
|
|
88
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
89
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
90
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
91
|
+
}>;
|
|
92
|
+
start: import("@feathersjs/typebox").TAny;
|
|
93
|
+
end: import("@feathersjs/typebox").TAny;
|
|
34
94
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
35
95
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
96
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
97
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
98
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
99
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
36
100
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
37
|
-
}>, ["traderId", "exchangeId"]>;
|
|
101
|
+
}>, ["traderId", "exchangeId", "overrides", "options", "start", "end"]>;
|
|
38
102
|
export type StrategiesBacktestData = Static<typeof strategiesBacktestDataSchema>;
|
|
39
103
|
export declare const strategiesBacktestDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
40
104
|
export declare const strategiesBacktestDataResolver: import("@feathersjs/schema").Resolver<{
|
|
41
105
|
results?: any;
|
|
106
|
+
startedAt?: any;
|
|
107
|
+
stoppedAt?: any;
|
|
108
|
+
took?: number | undefined;
|
|
109
|
+
attempts?: any;
|
|
42
110
|
_id: string | {};
|
|
43
111
|
createdAt: any;
|
|
44
112
|
updatedAt: any;
|
|
45
|
-
|
|
113
|
+
options: {
|
|
114
|
+
protections: boolean;
|
|
115
|
+
eps: boolean;
|
|
116
|
+
};
|
|
46
117
|
exchangeId: string;
|
|
118
|
+
status: string;
|
|
119
|
+
traderId: string;
|
|
120
|
+
jobId: string;
|
|
121
|
+
overrides: {
|
|
122
|
+
dry_run_wallet: number;
|
|
123
|
+
max_open_trades: number;
|
|
124
|
+
};
|
|
125
|
+
start: any;
|
|
126
|
+
end: any;
|
|
47
127
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
48
128
|
export declare const strategiesBacktestPatchSchema: import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
49
129
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
50
130
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
51
131
|
exchangeId: import("@feathersjs/typebox").TString<string>;
|
|
132
|
+
jobId: import("@feathersjs/typebox").TString<string>;
|
|
133
|
+
status: import("@feathersjs/typebox").TString<string>;
|
|
134
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
135
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
136
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
137
|
+
}>;
|
|
138
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
139
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
140
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
141
|
+
}>;
|
|
142
|
+
start: import("@feathersjs/typebox").TAny;
|
|
143
|
+
end: import("@feathersjs/typebox").TAny;
|
|
52
144
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
53
145
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
146
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
147
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
148
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
149
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
54
150
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
55
151
|
}>>;
|
|
56
152
|
export type StrategiesBacktestPatch = Static<typeof strategiesBacktestPatchSchema>;
|
|
57
153
|
export declare const strategiesBacktestPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
58
154
|
export declare const strategiesBacktestPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
59
155
|
results?: any;
|
|
156
|
+
startedAt?: any;
|
|
157
|
+
stoppedAt?: any;
|
|
158
|
+
took?: number | undefined;
|
|
159
|
+
attempts?: any;
|
|
60
160
|
_id: string | {};
|
|
61
161
|
createdAt: any;
|
|
62
162
|
updatedAt: any;
|
|
63
|
-
|
|
163
|
+
options: {
|
|
164
|
+
protections: boolean;
|
|
165
|
+
eps: boolean;
|
|
166
|
+
};
|
|
64
167
|
exchangeId: string;
|
|
168
|
+
status: string;
|
|
169
|
+
traderId: string;
|
|
170
|
+
jobId: string;
|
|
171
|
+
overrides: {
|
|
172
|
+
dry_run_wallet: number;
|
|
173
|
+
max_open_trades: number;
|
|
174
|
+
};
|
|
175
|
+
start: any;
|
|
176
|
+
end: any;
|
|
65
177
|
}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|
|
66
178
|
export declare const strategiesBacktestQueryProperties: import("@feathersjs/typebox").TPick<import("@feathersjs/typebox").TObject<{
|
|
67
179
|
_id: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
68
180
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
69
181
|
exchangeId: import("@feathersjs/typebox").TString<string>;
|
|
182
|
+
jobId: import("@feathersjs/typebox").TString<string>;
|
|
183
|
+
status: import("@feathersjs/typebox").TString<string>;
|
|
184
|
+
overrides: import("@feathersjs/typebox").TObject<{
|
|
185
|
+
max_open_trades: import("@feathersjs/typebox").TNumber;
|
|
186
|
+
dry_run_wallet: import("@feathersjs/typebox").TNumber;
|
|
187
|
+
}>;
|
|
188
|
+
options: import("@feathersjs/typebox").TObject<{
|
|
189
|
+
protections: import("@feathersjs/typebox").TBoolean;
|
|
190
|
+
eps: import("@feathersjs/typebox").TBoolean;
|
|
191
|
+
}>;
|
|
192
|
+
start: import("@feathersjs/typebox").TAny;
|
|
193
|
+
end: import("@feathersjs/typebox").TAny;
|
|
70
194
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
71
195
|
updatedAt: import("@feathersjs/typebox").TAny;
|
|
196
|
+
startedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
197
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
198
|
+
took: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
199
|
+
attempts: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
72
200
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
73
|
-
}>, ["_id", "traderId", "exchangeId", "results"]>;
|
|
201
|
+
}>, ["_id", "traderId", "exchangeId", "results", "createdAt", "stoppedAt", "jobId"]>;
|
|
74
202
|
export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
75
203
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
76
204
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
77
205
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
78
206
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
79
|
-
|
|
80
|
-
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
207
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
81
208
|
results: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
209
|
+
exchangeId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
210
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
211
|
+
jobId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
212
|
+
stoppedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
82
213
|
}>;
|
|
83
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "
|
|
214
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "results" | "exchangeId" | "traderId" | "jobId" | "stoppedAt")[]>;
|
|
84
215
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
85
216
|
_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<{
|
|
86
217
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -88,8 +219,41 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
88
219
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
89
220
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
90
221
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
91
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
92
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
222
|
+
$in: 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").TObject<{}>]>>;
|
|
223
|
+
$nin: 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").TObject<{}>]>>;
|
|
224
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
225
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
226
|
+
} | undefined>]>>]>>;
|
|
227
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
228
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
229
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
230
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
231
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
232
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
233
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
234
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
235
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
236
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
237
|
+
} | undefined>]>>]>>;
|
|
238
|
+
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<{
|
|
239
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
240
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
241
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
242
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
243
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
244
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
245
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
246
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
247
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
248
|
+
} | undefined>]>>]>>;
|
|
249
|
+
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<{
|
|
250
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
251
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
252
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
253
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
254
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
255
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
256
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
93
257
|
}>, import("@feathersjs/typebox").TObject<{
|
|
94
258
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
95
259
|
} | undefined>]>>]>>;
|
|
@@ -99,30 +263,30 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
99
263
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
100
264
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
101
265
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
102
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
103
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
266
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
267
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
104
268
|
}>, import("@feathersjs/typebox").TObject<{
|
|
105
269
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
106
270
|
} | undefined>]>>]>>;
|
|
107
|
-
|
|
271
|
+
jobId: 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<{
|
|
108
272
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
109
273
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
110
274
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
111
275
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
112
276
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
113
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
114
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
277
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
278
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
115
279
|
}>, import("@feathersjs/typebox").TObject<{
|
|
116
280
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
117
281
|
} | undefined>]>>]>>;
|
|
118
|
-
|
|
282
|
+
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<{
|
|
119
283
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
120
284
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
121
285
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
122
286
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
123
287
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
124
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
125
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
288
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
289
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
126
290
|
}>, import("@feathersjs/typebox").TObject<{
|
|
127
291
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
128
292
|
} | undefined>]>>]>>;
|
|
@@ -134,8 +298,41 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
134
298
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
135
299
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
136
300
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
137
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
138
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
301
|
+
$in: 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").TObject<{}>]>>;
|
|
302
|
+
$nin: 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").TObject<{}>]>>;
|
|
303
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
304
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
305
|
+
} | undefined>]>>]>>;
|
|
306
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
307
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
308
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
309
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
310
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
311
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
312
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
313
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
314
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
315
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
316
|
+
} | undefined>]>>]>>;
|
|
317
|
+
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<{
|
|
318
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
319
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
320
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
321
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
322
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
323
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
324
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
325
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
326
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
327
|
+
} | undefined>]>>]>>;
|
|
328
|
+
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<{
|
|
329
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
330
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
331
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
332
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
333
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
334
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
335
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
139
336
|
}>, import("@feathersjs/typebox").TObject<{
|
|
140
337
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
141
338
|
} | undefined>]>>]>>;
|
|
@@ -145,30 +342,30 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
145
342
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
146
343
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
147
344
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
148
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
149
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
345
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
346
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
150
347
|
}>, import("@feathersjs/typebox").TObject<{
|
|
151
348
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
152
349
|
} | undefined>]>>]>>;
|
|
153
|
-
|
|
350
|
+
jobId: 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<{
|
|
154
351
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
155
352
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
156
353
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
157
354
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
158
355
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
159
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
160
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
356
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
357
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
161
358
|
}>, import("@feathersjs/typebox").TObject<{
|
|
162
359
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
163
360
|
} | undefined>]>>]>>;
|
|
164
|
-
|
|
361
|
+
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<{
|
|
165
362
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
166
363
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
167
364
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
168
365
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
169
366
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
170
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
171
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
367
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
368
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
172
369
|
}>, import("@feathersjs/typebox").TObject<{
|
|
173
370
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
174
371
|
} | undefined>]>>]>>;
|
|
@@ -181,8 +378,41 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
181
378
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
182
379
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
183
380
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
184
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
185
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
381
|
+
$in: 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").TObject<{}>]>>;
|
|
382
|
+
$nin: 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").TObject<{}>]>>;
|
|
383
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
384
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
385
|
+
} | undefined>]>>]>>;
|
|
386
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
387
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
388
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
389
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
390
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
391
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
392
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
393
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
394
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
395
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
396
|
+
} | undefined>]>>]>>;
|
|
397
|
+
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<{
|
|
398
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
399
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
400
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
401
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
402
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
403
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
404
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
405
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
406
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
407
|
+
} | undefined>]>>]>>;
|
|
408
|
+
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<{
|
|
409
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
410
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
411
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
412
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
413
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
414
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
415
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
186
416
|
}>, import("@feathersjs/typebox").TObject<{
|
|
187
417
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
188
418
|
} | undefined>]>>]>>;
|
|
@@ -192,30 +422,30 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
192
422
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
193
423
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
194
424
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
195
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
196
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
425
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
426
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
197
427
|
}>, import("@feathersjs/typebox").TObject<{
|
|
198
428
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
199
429
|
} | undefined>]>>]>>;
|
|
200
|
-
|
|
430
|
+
jobId: 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<{
|
|
201
431
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
202
432
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
203
433
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
204
434
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
205
435
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
206
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
207
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
436
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
437
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
208
438
|
}>, import("@feathersjs/typebox").TObject<{
|
|
209
439
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
210
440
|
} | undefined>]>>]>>;
|
|
211
|
-
|
|
441
|
+
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<{
|
|
212
442
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
213
443
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
214
444
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
215
445
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
216
446
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
217
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
218
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
447
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
448
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
219
449
|
}>, import("@feathersjs/typebox").TObject<{
|
|
220
450
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
221
451
|
} | undefined>]>>]>>;
|
|
@@ -227,8 +457,41 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
227
457
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
228
458
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
229
459
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
230
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
231
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
460
|
+
$in: 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").TObject<{}>]>>;
|
|
461
|
+
$nin: 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").TObject<{}>]>>;
|
|
462
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
463
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
464
|
+
} | undefined>]>>]>>;
|
|
465
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
466
|
+
$gt: import("@feathersjs/typebox").TAny;
|
|
467
|
+
$gte: import("@feathersjs/typebox").TAny;
|
|
468
|
+
$lt: import("@feathersjs/typebox").TAny;
|
|
469
|
+
$lte: import("@feathersjs/typebox").TAny;
|
|
470
|
+
$ne: import("@feathersjs/typebox").TAny;
|
|
471
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
472
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
473
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
474
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
475
|
+
} | undefined>]>>]>>;
|
|
476
|
+
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<{
|
|
477
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
478
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
479
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
480
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
481
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
482
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
483
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
484
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
485
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
486
|
+
} | undefined>]>>]>>;
|
|
487
|
+
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<{
|
|
488
|
+
$gt: import("@feathersjs/typebox").TString<string>;
|
|
489
|
+
$gte: import("@feathersjs/typebox").TString<string>;
|
|
490
|
+
$lt: import("@feathersjs/typebox").TString<string>;
|
|
491
|
+
$lte: import("@feathersjs/typebox").TString<string>;
|
|
492
|
+
$ne: import("@feathersjs/typebox").TString<string>;
|
|
493
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
494
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
232
495
|
}>, import("@feathersjs/typebox").TObject<{
|
|
233
496
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
234
497
|
} | undefined>]>>]>>;
|
|
@@ -238,30 +501,30 @@ export declare const strategiesBacktestQuerySchema: import("@feathersjs/typebox"
|
|
|
238
501
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
239
502
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
240
503
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
241
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
242
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
504
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
505
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
243
506
|
}>, import("@feathersjs/typebox").TObject<{
|
|
244
507
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
245
508
|
} | undefined>]>>]>>;
|
|
246
|
-
|
|
509
|
+
jobId: 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<{
|
|
247
510
|
$gt: import("@feathersjs/typebox").TString<string>;
|
|
248
511
|
$gte: import("@feathersjs/typebox").TString<string>;
|
|
249
512
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
250
513
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
251
514
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
252
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
253
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
515
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
516
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
254
517
|
}>, import("@feathersjs/typebox").TObject<{
|
|
255
518
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
256
519
|
} | undefined>]>>]>>;
|
|
257
|
-
|
|
520
|
+
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<{
|
|
258
521
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
259
522
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
260
523
|
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
261
524
|
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
262
525
|
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
263
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
264
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
526
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
527
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>>;
|
|
265
528
|
}>, import("@feathersjs/typebox").TObject<{
|
|
266
529
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
267
530
|
} | undefined>]>>]>>;
|
|
@@ -273,11 +536,14 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
273
536
|
$skip: number;
|
|
274
537
|
$sort: {
|
|
275
538
|
_id?: number | undefined;
|
|
276
|
-
|
|
277
|
-
exchangeId?: number | undefined;
|
|
539
|
+
createdAt?: number | undefined;
|
|
278
540
|
results?: number | undefined;
|
|
541
|
+
exchangeId?: number | undefined;
|
|
542
|
+
traderId?: number | undefined;
|
|
543
|
+
jobId?: number | undefined;
|
|
544
|
+
stoppedAt?: number | undefined;
|
|
279
545
|
};
|
|
280
|
-
$select: ("_id" | "
|
|
546
|
+
$select: ("_id" | "createdAt" | "results" | "exchangeId" | "traderId" | "jobId" | "stoppedAt")[];
|
|
281
547
|
$and: ({
|
|
282
548
|
_id?: string | {} | Partial<{
|
|
283
549
|
$gt: string | {};
|
|
@@ -285,8 +551,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
285
551
|
$lt: string | {};
|
|
286
552
|
$lte: string | {};
|
|
287
553
|
$ne: string | {};
|
|
288
|
-
$in: (string | {})[];
|
|
289
|
-
$nin: (string | {})[];
|
|
554
|
+
$in: string | {} | (string | {})[];
|
|
555
|
+
$nin: string | {} | (string | {})[];
|
|
556
|
+
} & {}> | undefined;
|
|
557
|
+
createdAt?: any;
|
|
558
|
+
results?: any;
|
|
559
|
+
exchangeId?: string | Partial<{
|
|
560
|
+
$gt: string;
|
|
561
|
+
$gte: string;
|
|
562
|
+
$lt: string;
|
|
563
|
+
$lte: string;
|
|
564
|
+
$ne: string;
|
|
565
|
+
$in: string | string[];
|
|
566
|
+
$nin: string | string[];
|
|
290
567
|
} & {}> | undefined;
|
|
291
568
|
traderId?: string | Partial<{
|
|
292
569
|
$gt: string;
|
|
@@ -294,19 +571,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
294
571
|
$lt: string;
|
|
295
572
|
$lte: string;
|
|
296
573
|
$ne: string;
|
|
297
|
-
$in: string[];
|
|
298
|
-
$nin: string[];
|
|
574
|
+
$in: string | string[];
|
|
575
|
+
$nin: string | string[];
|
|
299
576
|
} & {}> | undefined;
|
|
300
|
-
|
|
577
|
+
jobId?: string | Partial<{
|
|
301
578
|
$gt: string;
|
|
302
579
|
$gte: string;
|
|
303
580
|
$lt: string;
|
|
304
581
|
$lte: string;
|
|
305
582
|
$ne: string;
|
|
306
|
-
$in: string[];
|
|
307
|
-
$nin: string[];
|
|
583
|
+
$in: string | string[];
|
|
584
|
+
$nin: string | string[];
|
|
308
585
|
} & {}> | undefined;
|
|
309
|
-
|
|
586
|
+
stoppedAt?: any;
|
|
310
587
|
} | {
|
|
311
588
|
$or: {
|
|
312
589
|
_id?: string | {} | Partial<{
|
|
@@ -315,8 +592,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
315
592
|
$lt: string | {};
|
|
316
593
|
$lte: string | {};
|
|
317
594
|
$ne: string | {};
|
|
318
|
-
$in: (string | {})[];
|
|
319
|
-
$nin: (string | {})[];
|
|
595
|
+
$in: string | {} | (string | {})[];
|
|
596
|
+
$nin: string | {} | (string | {})[];
|
|
597
|
+
} & {}> | undefined;
|
|
598
|
+
createdAt?: any;
|
|
599
|
+
results?: any;
|
|
600
|
+
exchangeId?: string | Partial<{
|
|
601
|
+
$gt: string;
|
|
602
|
+
$gte: string;
|
|
603
|
+
$lt: string;
|
|
604
|
+
$lte: string;
|
|
605
|
+
$ne: string;
|
|
606
|
+
$in: string | string[];
|
|
607
|
+
$nin: string | string[];
|
|
320
608
|
} & {}> | undefined;
|
|
321
609
|
traderId?: string | Partial<{
|
|
322
610
|
$gt: string;
|
|
@@ -324,19 +612,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
324
612
|
$lt: string;
|
|
325
613
|
$lte: string;
|
|
326
614
|
$ne: string;
|
|
327
|
-
$in: string[];
|
|
328
|
-
$nin: string[];
|
|
615
|
+
$in: string | string[];
|
|
616
|
+
$nin: string | string[];
|
|
329
617
|
} & {}> | undefined;
|
|
330
|
-
|
|
618
|
+
jobId?: string | Partial<{
|
|
331
619
|
$gt: string;
|
|
332
620
|
$gte: string;
|
|
333
621
|
$lt: string;
|
|
334
622
|
$lte: string;
|
|
335
623
|
$ne: string;
|
|
336
|
-
$in: string[];
|
|
337
|
-
$nin: string[];
|
|
624
|
+
$in: string | string[];
|
|
625
|
+
$nin: string | string[];
|
|
338
626
|
} & {}> | undefined;
|
|
339
|
-
|
|
627
|
+
stoppedAt?: any;
|
|
340
628
|
}[];
|
|
341
629
|
})[];
|
|
342
630
|
$or: {
|
|
@@ -346,8 +634,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
346
634
|
$lt: string | {};
|
|
347
635
|
$lte: string | {};
|
|
348
636
|
$ne: string | {};
|
|
349
|
-
$in: (string | {})[];
|
|
350
|
-
$nin: (string | {})[];
|
|
637
|
+
$in: string | {} | (string | {})[];
|
|
638
|
+
$nin: string | {} | (string | {})[];
|
|
639
|
+
} & {}> | undefined;
|
|
640
|
+
createdAt?: any;
|
|
641
|
+
results?: any;
|
|
642
|
+
exchangeId?: string | Partial<{
|
|
643
|
+
$gt: string;
|
|
644
|
+
$gte: string;
|
|
645
|
+
$lt: string;
|
|
646
|
+
$lte: string;
|
|
647
|
+
$ne: string;
|
|
648
|
+
$in: string | string[];
|
|
649
|
+
$nin: string | string[];
|
|
351
650
|
} & {}> | undefined;
|
|
352
651
|
traderId?: string | Partial<{
|
|
353
652
|
$gt: string;
|
|
@@ -355,19 +654,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
355
654
|
$lt: string;
|
|
356
655
|
$lte: string;
|
|
357
656
|
$ne: string;
|
|
358
|
-
$in: string[];
|
|
359
|
-
$nin: string[];
|
|
657
|
+
$in: string | string[];
|
|
658
|
+
$nin: string | string[];
|
|
360
659
|
} & {}> | undefined;
|
|
361
|
-
|
|
660
|
+
jobId?: string | Partial<{
|
|
362
661
|
$gt: string;
|
|
363
662
|
$gte: string;
|
|
364
663
|
$lt: string;
|
|
365
664
|
$lte: string;
|
|
366
665
|
$ne: string;
|
|
367
|
-
$in: string[];
|
|
368
|
-
$nin: string[];
|
|
666
|
+
$in: string | string[];
|
|
667
|
+
$nin: string | string[];
|
|
369
668
|
} & {}> | undefined;
|
|
370
|
-
|
|
669
|
+
stoppedAt?: any;
|
|
371
670
|
}[];
|
|
372
671
|
}> & {
|
|
373
672
|
_id?: string | {} | Partial<{
|
|
@@ -376,8 +675,19 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
376
675
|
$lt: string | {};
|
|
377
676
|
$lte: string | {};
|
|
378
677
|
$ne: string | {};
|
|
379
|
-
$in: (string | {})[];
|
|
380
|
-
$nin: (string | {})[];
|
|
678
|
+
$in: string | {} | (string | {})[];
|
|
679
|
+
$nin: string | {} | (string | {})[];
|
|
680
|
+
} & {}> | undefined;
|
|
681
|
+
createdAt?: any;
|
|
682
|
+
results?: any;
|
|
683
|
+
exchangeId?: string | Partial<{
|
|
684
|
+
$gt: string;
|
|
685
|
+
$gte: string;
|
|
686
|
+
$lt: string;
|
|
687
|
+
$lte: string;
|
|
688
|
+
$ne: string;
|
|
689
|
+
$in: string | string[];
|
|
690
|
+
$nin: string | string[];
|
|
381
691
|
} & {}> | undefined;
|
|
382
692
|
traderId?: string | Partial<{
|
|
383
693
|
$gt: string;
|
|
@@ -385,17 +695,17 @@ export declare const strategiesBacktestQueryResolver: import("@feathersjs/schema
|
|
|
385
695
|
$lt: string;
|
|
386
696
|
$lte: string;
|
|
387
697
|
$ne: string;
|
|
388
|
-
$in: string[];
|
|
389
|
-
$nin: string[];
|
|
698
|
+
$in: string | string[];
|
|
699
|
+
$nin: string | string[];
|
|
390
700
|
} & {}> | undefined;
|
|
391
|
-
|
|
701
|
+
jobId?: string | Partial<{
|
|
392
702
|
$gt: string;
|
|
393
703
|
$gte: string;
|
|
394
704
|
$lt: string;
|
|
395
705
|
$lte: string;
|
|
396
706
|
$ne: string;
|
|
397
|
-
$in: string[];
|
|
398
|
-
$nin: string[];
|
|
707
|
+
$in: string | string[];
|
|
708
|
+
$nin: string | string[];
|
|
399
709
|
} & {}> | undefined;
|
|
400
|
-
|
|
710
|
+
stoppedAt?: any;
|
|
401
711
|
} & {}, HookContext<StrategiesBacktestService<import("./backtest.class").StrategiesBacktestParams>>>;
|