@cryptorobot.ai/client 0.0.35 → 0.0.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/configuration.d.ts +1 -0
- package/lib/helpers/ccxt.helper.d.ts +1 -0
- package/lib/helpers/mailer.helper.d.ts +14 -0
- package/lib/helpers/reports.helper.d.ts +5 -0
- package/lib/helpers/subscription.helper.d.ts +7 -15
- package/lib/hooks/get-pods-container-inspect.d.ts +2 -0
- package/lib/hooks/whitelist-set-default-by-volume.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +28 -4
- package/lib/services/exchanges/download/download.schema.d.ts +28 -4
- package/lib/services/exchanges/exchanges.schema.d.ts +246 -90
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +28 -4
- package/lib/services/homepage/homepage.schema.d.ts +9 -1
- package/lib/services/strategies/backtest/backtest.schema.d.ts +56 -56
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
- package/lib/services/strategies/strategies.schema.d.ts +93 -11
- package/lib/services/traders/pods/api/api.schema.d.ts +52 -28
- package/lib/services/traders/pods/events/events.class.d.ts +1 -1
- package/lib/services/traders/pods/events/events.schema.d.ts +8 -0
- package/lib/services/traders/pods/pods.schema.d.ts +44 -20
- package/lib/services/traders/traders.schema.d.ts +247 -115
- package/package.json +1 -1
|
@@ -295,6 +295,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
295
295
|
balance_dust_level: number;
|
|
296
296
|
} | undefined;
|
|
297
297
|
_id?: string | {} | undefined;
|
|
298
|
+
running?: boolean | undefined;
|
|
298
299
|
plugins?: {
|
|
299
300
|
number_assets?: number | undefined;
|
|
300
301
|
refresh_period?: number | undefined;
|
|
@@ -311,7 +312,6 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
311
312
|
exit: number;
|
|
312
313
|
} | undefined;
|
|
313
314
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
314
|
-
running?: boolean | undefined;
|
|
315
315
|
tradable_balance_ratio?: number | undefined;
|
|
316
316
|
webhook?: {
|
|
317
317
|
url: string;
|
|
@@ -401,9 +401,9 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
|
|
|
401
401
|
key: string;
|
|
402
402
|
createdAt: any;
|
|
403
403
|
updatedAt: any;
|
|
404
|
+
userId: any;
|
|
404
405
|
connected: boolean;
|
|
405
406
|
which: string;
|
|
406
|
-
userId: any;
|
|
407
407
|
"traders/pods": any;
|
|
408
408
|
exchange: any;
|
|
409
409
|
exchangeId: any;
|
|
@@ -549,6 +549,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
549
549
|
balance_dust_level: number;
|
|
550
550
|
} | undefined;
|
|
551
551
|
_id?: string | {} | undefined;
|
|
552
|
+
running?: boolean | undefined;
|
|
552
553
|
plugins?: {
|
|
553
554
|
number_assets?: number | undefined;
|
|
554
555
|
refresh_period?: number | undefined;
|
|
@@ -565,7 +566,6 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
565
566
|
exit: number;
|
|
566
567
|
} | undefined;
|
|
567
568
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
568
|
-
running?: boolean | undefined;
|
|
569
569
|
tradable_balance_ratio?: number | undefined;
|
|
570
570
|
webhook?: {
|
|
571
571
|
url: string;
|
|
@@ -655,9 +655,9 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
|
|
|
655
655
|
key: string;
|
|
656
656
|
createdAt: any;
|
|
657
657
|
updatedAt: any;
|
|
658
|
+
userId: any;
|
|
658
659
|
connected: boolean;
|
|
659
660
|
which: string;
|
|
660
|
-
userId: any;
|
|
661
661
|
"traders/pods": any;
|
|
662
662
|
exchange: any;
|
|
663
663
|
exchangeId: any;
|
|
@@ -1059,6 +1059,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1059
1059
|
balance_dust_level: number;
|
|
1060
1060
|
} | undefined;
|
|
1061
1061
|
_id?: string | {} | undefined;
|
|
1062
|
+
running?: boolean | undefined;
|
|
1062
1063
|
plugins?: {
|
|
1063
1064
|
number_assets?: number | undefined;
|
|
1064
1065
|
refresh_period?: number | undefined;
|
|
@@ -1075,7 +1076,6 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1075
1076
|
exit: number;
|
|
1076
1077
|
} | undefined;
|
|
1077
1078
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1078
|
-
running?: boolean | undefined;
|
|
1079
1079
|
tradable_balance_ratio?: number | undefined;
|
|
1080
1080
|
webhook?: {
|
|
1081
1081
|
url: string;
|
|
@@ -1165,9 +1165,9 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
|
|
|
1165
1165
|
key: string;
|
|
1166
1166
|
createdAt: any;
|
|
1167
1167
|
updatedAt: any;
|
|
1168
|
+
userId: any;
|
|
1168
1169
|
connected: boolean;
|
|
1169
1170
|
which: string;
|
|
1170
|
-
userId: any;
|
|
1171
1171
|
"traders/pods": any;
|
|
1172
1172
|
exchange: any;
|
|
1173
1173
|
exchangeId: any;
|
|
@@ -1569,6 +1569,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1569
1569
|
balance_dust_level: number;
|
|
1570
1570
|
} | undefined;
|
|
1571
1571
|
_id?: string | {} | undefined;
|
|
1572
|
+
running?: boolean | undefined;
|
|
1572
1573
|
plugins?: {
|
|
1573
1574
|
number_assets?: number | undefined;
|
|
1574
1575
|
refresh_period?: number | undefined;
|
|
@@ -1585,7 +1586,6 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1585
1586
|
exit: number;
|
|
1586
1587
|
} | undefined;
|
|
1587
1588
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1588
|
-
running?: boolean | undefined;
|
|
1589
1589
|
tradable_balance_ratio?: number | undefined;
|
|
1590
1590
|
webhook?: {
|
|
1591
1591
|
url: string;
|
|
@@ -1675,9 +1675,9 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
|
|
|
1675
1675
|
key: string;
|
|
1676
1676
|
createdAt: any;
|
|
1677
1677
|
updatedAt: any;
|
|
1678
|
+
userId: any;
|
|
1678
1679
|
connected: boolean;
|
|
1679
1680
|
which: string;
|
|
1680
|
-
userId: any;
|
|
1681
1681
|
"traders/pods": any;
|
|
1682
1682
|
exchange: any;
|
|
1683
1683
|
exchangeId: any;
|
|
@@ -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;
|