@cryptorobot.ai/client 0.0.34 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configuration.d.ts +30 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/messages/messages.schema.d.ts +40 -8
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/backtest/results/results.schema.d.ts +4 -4
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +97 -15
- package/lib/services/traders/pods/api/api.schema.d.ts +56 -32
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +48 -24
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/lib/services/users/users.schema.d.ts +40 -8
- package/package.json +1 -1
|
@@ -258,7 +258,6 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
|
|
|
258
258
|
export type Strategies = Static<typeof strategiesSchema>;
|
|
259
259
|
export declare const strategiesValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
260
260
|
export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
261
|
-
_id?: string | {} | undefined;
|
|
262
261
|
traders?: {
|
|
263
262
|
telegram?: {
|
|
264
263
|
access_hash?: string | null | undefined;
|
|
@@ -296,6 +295,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
296
295
|
balance_dust_level: number;
|
|
297
296
|
} | undefined;
|
|
298
297
|
_id?: string | {} | undefined;
|
|
298
|
+
running?: boolean | undefined;
|
|
299
299
|
plugins?: {
|
|
300
300
|
number_assets?: number | undefined;
|
|
301
301
|
refresh_period?: number | undefined;
|
|
@@ -312,7 +312,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
312
312
|
exit: number;
|
|
313
313
|
} | undefined;
|
|
314
314
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
315
|
-
running?: boolean | undefined;
|
|
316
315
|
tradable_balance_ratio?: number | undefined;
|
|
317
316
|
webhook?: {
|
|
318
317
|
url: string;
|
|
@@ -402,9 +401,9 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
402
401
|
key: string;
|
|
403
402
|
createdAt: any;
|
|
404
403
|
updatedAt: any;
|
|
404
|
+
userId: any;
|
|
405
405
|
connected: boolean;
|
|
406
406
|
which: string;
|
|
407
|
-
userId: any;
|
|
408
407
|
"traders/pods": any;
|
|
409
408
|
exchange: any;
|
|
410
409
|
exchangeId: any;
|
|
@@ -443,6 +442,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
443
442
|
CORS_origins: string[];
|
|
444
443
|
};
|
|
445
444
|
}[] | undefined;
|
|
445
|
+
_id?: string | {} | undefined;
|
|
446
446
|
createdAt?: any;
|
|
447
447
|
updatedAt?: any;
|
|
448
448
|
userId?: string | {} | undefined;
|
|
@@ -512,7 +512,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
512
512
|
'strategies/indicators': any;
|
|
513
513
|
}, HookContext<StrategiesService<import("./strategies.class").StrategiesParams>>>;
|
|
514
514
|
export declare const strategiesExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
515
|
-
_id?: string | {} | undefined;
|
|
516
515
|
traders?: {
|
|
517
516
|
telegram?: {
|
|
518
517
|
access_hash?: string | null | undefined;
|
|
@@ -550,6 +549,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
550
549
|
balance_dust_level: number;
|
|
551
550
|
} | undefined;
|
|
552
551
|
_id?: string | {} | undefined;
|
|
552
|
+
running?: boolean | undefined;
|
|
553
553
|
plugins?: {
|
|
554
554
|
number_assets?: number | undefined;
|
|
555
555
|
refresh_period?: number | undefined;
|
|
@@ -566,7 +566,6 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
566
566
|
exit: number;
|
|
567
567
|
} | undefined;
|
|
568
568
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
569
|
-
running?: boolean | undefined;
|
|
570
569
|
tradable_balance_ratio?: number | undefined;
|
|
571
570
|
webhook?: {
|
|
572
571
|
url: string;
|
|
@@ -656,9 +655,9 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
656
655
|
key: string;
|
|
657
656
|
createdAt: any;
|
|
658
657
|
updatedAt: any;
|
|
658
|
+
userId: any;
|
|
659
659
|
connected: boolean;
|
|
660
660
|
which: string;
|
|
661
|
-
userId: any;
|
|
662
661
|
"traders/pods": any;
|
|
663
662
|
exchange: any;
|
|
664
663
|
exchangeId: any;
|
|
@@ -697,6 +696,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
697
696
|
CORS_origins: string[];
|
|
698
697
|
};
|
|
699
698
|
}[] | undefined;
|
|
699
|
+
_id?: string | {} | undefined;
|
|
700
700
|
createdAt?: any;
|
|
701
701
|
updatedAt?: any;
|
|
702
702
|
userId?: string | {} | undefined;
|
|
@@ -1022,7 +1022,6 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
|
|
|
1022
1022
|
export type StrategiesData = Static<typeof strategiesDataSchema>;
|
|
1023
1023
|
export declare const strategiesDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
1024
1024
|
export declare const strategiesDataResolver: import("@feathersjs/schema").Resolver<{
|
|
1025
|
-
_id?: string | {} | undefined;
|
|
1026
1025
|
traders?: {
|
|
1027
1026
|
telegram?: {
|
|
1028
1027
|
access_hash?: string | null | undefined;
|
|
@@ -1060,6 +1059,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1060
1059
|
balance_dust_level: number;
|
|
1061
1060
|
} | undefined;
|
|
1062
1061
|
_id?: string | {} | undefined;
|
|
1062
|
+
running?: boolean | undefined;
|
|
1063
1063
|
plugins?: {
|
|
1064
1064
|
number_assets?: number | undefined;
|
|
1065
1065
|
refresh_period?: number | undefined;
|
|
@@ -1076,7 +1076,6 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1076
1076
|
exit: number;
|
|
1077
1077
|
} | undefined;
|
|
1078
1078
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1079
|
-
running?: boolean | undefined;
|
|
1080
1079
|
tradable_balance_ratio?: number | undefined;
|
|
1081
1080
|
webhook?: {
|
|
1082
1081
|
url: string;
|
|
@@ -1166,9 +1165,9 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1166
1165
|
key: string;
|
|
1167
1166
|
createdAt: any;
|
|
1168
1167
|
updatedAt: any;
|
|
1168
|
+
userId: any;
|
|
1169
1169
|
connected: boolean;
|
|
1170
1170
|
which: string;
|
|
1171
|
-
userId: any;
|
|
1172
1171
|
"traders/pods": any;
|
|
1173
1172
|
exchange: any;
|
|
1174
1173
|
exchangeId: any;
|
|
@@ -1207,6 +1206,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1207
1206
|
CORS_origins: string[];
|
|
1208
1207
|
};
|
|
1209
1208
|
}[] | undefined;
|
|
1209
|
+
_id?: string | {} | undefined;
|
|
1210
1210
|
createdAt?: any;
|
|
1211
1211
|
updatedAt?: any;
|
|
1212
1212
|
userId?: string | {} | undefined;
|
|
@@ -1532,7 +1532,6 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
|
|
|
1532
1532
|
export type StrategiesPatch = Static<typeof strategiesPatchSchema>;
|
|
1533
1533
|
export declare const strategiesPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
1534
1534
|
export declare const strategiesPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
1535
|
-
_id?: string | {} | undefined;
|
|
1536
1535
|
traders?: {
|
|
1537
1536
|
telegram?: {
|
|
1538
1537
|
access_hash?: string | null | undefined;
|
|
@@ -1570,6 +1569,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1570
1569
|
balance_dust_level: number;
|
|
1571
1570
|
} | undefined;
|
|
1572
1571
|
_id?: string | {} | undefined;
|
|
1572
|
+
running?: boolean | undefined;
|
|
1573
1573
|
plugins?: {
|
|
1574
1574
|
number_assets?: number | undefined;
|
|
1575
1575
|
refresh_period?: number | undefined;
|
|
@@ -1586,7 +1586,6 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1586
1586
|
exit: number;
|
|
1587
1587
|
} | undefined;
|
|
1588
1588
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1589
|
-
running?: boolean | undefined;
|
|
1590
1589
|
tradable_balance_ratio?: number | undefined;
|
|
1591
1590
|
webhook?: {
|
|
1592
1591
|
url: string;
|
|
@@ -1676,9 +1675,9 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1676
1675
|
key: string;
|
|
1677
1676
|
createdAt: any;
|
|
1678
1677
|
updatedAt: any;
|
|
1678
|
+
userId: any;
|
|
1679
1679
|
connected: boolean;
|
|
1680
1680
|
which: string;
|
|
1681
|
-
userId: any;
|
|
1682
1681
|
"traders/pods": any;
|
|
1683
1682
|
exchange: any;
|
|
1684
1683
|
exchangeId: any;
|
|
@@ -1717,6 +1716,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1717
1716
|
CORS_origins: string[];
|
|
1718
1717
|
};
|
|
1719
1718
|
}[] | undefined;
|
|
1719
|
+
_id?: string | {} | undefined;
|
|
1720
1720
|
createdAt?: any;
|
|
1721
1721
|
updatedAt?: any;
|
|
1722
1722
|
userId?: string | {} | undefined;
|
|
@@ -2038,7 +2038,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
|
|
|
2038
2038
|
values: import("@feathersjs/typebox").TAny;
|
|
2039
2039
|
}>>>;
|
|
2040
2040
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
2041
|
-
}>, ["_id", "name", "userId", "templateId", "createdAt", "updatedAt", "configured", "interval"]>;
|
|
2041
|
+
}>, ["_id", "name", "userId", "templateId", "createdAt", "updatedAt", "configured", "interval", "stoploss"]>;
|
|
2042
2042
|
export declare const strategiesQuerySchema: import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TObject<{
|
|
2043
2043
|
$limit: import("@feathersjs/typebox").TNumber;
|
|
2044
2044
|
$skip: import("@feathersjs/typebox").TNumber;
|
|
@@ -2050,9 +2050,10 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2050
2050
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2051
2051
|
templateId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2052
2052
|
interval: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2053
|
+
stoploss: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2053
2054
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
2054
2055
|
}>;
|
|
2055
|
-
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "interval" | "configured")[]>;
|
|
2056
|
+
$select: import("@feathersjs/typebox").TUnsafe<("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "interval" | "stoploss" | "configured")[]>;
|
|
2056
2057
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2057
2058
|
name: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2058
2059
|
$gt: import("@feathersjs/typebox").TAny;
|
|
@@ -2131,6 +2132,17 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2131
2132
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2132
2133
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2133
2134
|
} | undefined>]>>]>>;
|
|
2135
|
+
stoploss: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2136
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2137
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2138
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2139
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2140
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2141
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2142
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2143
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2144
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2145
|
+
} | undefined>]>>]>>;
|
|
2134
2146
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2135
2147
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2136
2148
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2221,6 +2233,17 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2221
2233
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2222
2234
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2223
2235
|
} | undefined>]>>]>>;
|
|
2236
|
+
stoploss: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2237
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2238
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2239
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2240
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2241
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2242
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2243
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2244
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2245
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2246
|
+
} | undefined>]>>]>>;
|
|
2224
2247
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2225
2248
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2226
2249
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2312,6 +2335,17 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2312
2335
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2313
2336
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2314
2337
|
} | undefined>]>>]>>;
|
|
2338
|
+
stoploss: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2339
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2340
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2341
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2342
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2343
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2344
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2345
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2346
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2347
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2348
|
+
} | undefined>]>>]>>;
|
|
2315
2349
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2316
2350
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2317
2351
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2402,6 +2436,17 @@ export declare const strategiesQuerySchema: import("@feathersjs/typebox").TInter
|
|
|
2402
2436
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2403
2437
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2404
2438
|
} | undefined>]>>]>>;
|
|
2439
|
+
stoploss: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2440
|
+
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2441
|
+
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2442
|
+
$lt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2443
|
+
$lte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2444
|
+
$ne: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2445
|
+
$in: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2446
|
+
$nin: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>>;
|
|
2447
|
+
}>, import("@feathersjs/typebox").TObject<{
|
|
2448
|
+
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
2449
|
+
} | undefined>]>>]>>;
|
|
2405
2450
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2406
2451
|
$gt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2407
2452
|
$gte: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2427,9 +2472,10 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2427
2472
|
userId?: number | undefined;
|
|
2428
2473
|
templateId?: number | undefined;
|
|
2429
2474
|
interval?: number | undefined;
|
|
2475
|
+
stoploss?: number | undefined;
|
|
2430
2476
|
configured?: number | undefined;
|
|
2431
2477
|
};
|
|
2432
|
-
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "interval" | "configured")[];
|
|
2478
|
+
$select: ("name" | "_id" | "createdAt" | "updatedAt" | "userId" | "templateId" | "interval" | "stoploss" | "configured")[];
|
|
2433
2479
|
$and: ({
|
|
2434
2480
|
name?: any;
|
|
2435
2481
|
_id?: string | {} | Partial<{
|
|
@@ -2470,6 +2516,15 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2470
2516
|
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2471
2517
|
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2472
2518
|
} & {}> | undefined;
|
|
2519
|
+
stoploss?: number | Partial<{
|
|
2520
|
+
$gt?: number | undefined;
|
|
2521
|
+
$gte?: number | undefined;
|
|
2522
|
+
$lt?: number | undefined;
|
|
2523
|
+
$lte?: number | undefined;
|
|
2524
|
+
$ne?: number | undefined;
|
|
2525
|
+
$in: number | number[];
|
|
2526
|
+
$nin: number | number[];
|
|
2527
|
+
} & {}> | undefined;
|
|
2473
2528
|
configured?: boolean | Partial<{
|
|
2474
2529
|
$gt?: boolean | undefined;
|
|
2475
2530
|
$gte?: boolean | undefined;
|
|
@@ -2520,6 +2575,15 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2520
2575
|
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2521
2576
|
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2522
2577
|
} & {}> | undefined;
|
|
2578
|
+
stoploss?: number | Partial<{
|
|
2579
|
+
$gt?: number | undefined;
|
|
2580
|
+
$gte?: number | undefined;
|
|
2581
|
+
$lt?: number | undefined;
|
|
2582
|
+
$lte?: number | undefined;
|
|
2583
|
+
$ne?: number | undefined;
|
|
2584
|
+
$in: number | number[];
|
|
2585
|
+
$nin: number | number[];
|
|
2586
|
+
} & {}> | undefined;
|
|
2523
2587
|
configured?: boolean | Partial<{
|
|
2524
2588
|
$gt?: boolean | undefined;
|
|
2525
2589
|
$gte?: boolean | undefined;
|
|
@@ -2571,6 +2635,15 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2571
2635
|
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2572
2636
|
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2573
2637
|
} & {}> | undefined;
|
|
2638
|
+
stoploss?: number | Partial<{
|
|
2639
|
+
$gt?: number | undefined;
|
|
2640
|
+
$gte?: number | undefined;
|
|
2641
|
+
$lt?: number | undefined;
|
|
2642
|
+
$lte?: number | undefined;
|
|
2643
|
+
$ne?: number | undefined;
|
|
2644
|
+
$in: number | number[];
|
|
2645
|
+
$nin: number | number[];
|
|
2646
|
+
} & {}> | undefined;
|
|
2574
2647
|
configured?: boolean | Partial<{
|
|
2575
2648
|
$gt?: boolean | undefined;
|
|
2576
2649
|
$gte?: boolean | undefined;
|
|
@@ -2621,6 +2694,15 @@ export declare const strategiesQueryResolver: import("@feathersjs/schema").Resol
|
|
|
2621
2694
|
$in: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2622
2695
|
$nin: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | ("1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w")[];
|
|
2623
2696
|
} & {}> | undefined;
|
|
2697
|
+
stoploss?: number | Partial<{
|
|
2698
|
+
$gt?: number | undefined;
|
|
2699
|
+
$gte?: number | undefined;
|
|
2700
|
+
$lt?: number | undefined;
|
|
2701
|
+
$lte?: number | undefined;
|
|
2702
|
+
$ne?: number | undefined;
|
|
2703
|
+
$in: number | number[];
|
|
2704
|
+
$nin: number | number[];
|
|
2705
|
+
} & {}> | undefined;
|
|
2624
2706
|
configured?: boolean | Partial<{
|
|
2625
2707
|
$gt?: boolean | undefined;
|
|
2626
2708
|
$gte?: boolean | undefined;
|