@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
|
@@ -223,6 +223,9 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
223
223
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
224
224
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
225
225
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
226
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
227
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
228
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
226
229
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
227
230
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
228
231
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -518,6 +521,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
518
521
|
updatedAt?: any;
|
|
519
522
|
error?: any;
|
|
520
523
|
login?: string | undefined;
|
|
524
|
+
userId?: string | {} | undefined;
|
|
521
525
|
connected?: boolean | undefined;
|
|
522
526
|
downloaded?: {
|
|
523
527
|
updatedAt: any;
|
|
@@ -547,17 +551,18 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
547
551
|
whitelist?: any[] | undefined;
|
|
548
552
|
ccxt_async_config?: any;
|
|
549
553
|
which?: string | undefined;
|
|
554
|
+
stakeCurrencies?: any[] | undefined;
|
|
555
|
+
popularStakeCurrency?: string | null | undefined;
|
|
556
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
550
557
|
requiredCredentials?: any;
|
|
551
558
|
uid?: string | undefined;
|
|
552
559
|
twofa?: string | undefined;
|
|
553
560
|
privateKey?: string | undefined;
|
|
554
561
|
walletAddress?: string | undefined;
|
|
555
|
-
userId?: string | {} | undefined;
|
|
556
562
|
__v?: any;
|
|
557
563
|
}>;
|
|
558
564
|
exchangeId: string;
|
|
559
565
|
strategy: Partial<{
|
|
560
|
-
_id?: string | {} | undefined;
|
|
561
566
|
traders?: {
|
|
562
567
|
telegram?: {
|
|
563
568
|
access_hash?: string | null | undefined;
|
|
@@ -595,6 +600,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
595
600
|
balance_dust_level: number;
|
|
596
601
|
} | undefined;
|
|
597
602
|
_id?: string | {} | undefined;
|
|
603
|
+
running?: boolean | undefined;
|
|
598
604
|
plugins?: {
|
|
599
605
|
number_assets?: number | undefined;
|
|
600
606
|
refresh_period?: number | undefined;
|
|
@@ -611,7 +617,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
611
617
|
exit: number;
|
|
612
618
|
} | undefined;
|
|
613
619
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
614
|
-
running?: boolean | undefined;
|
|
615
620
|
tradable_balance_ratio?: number | undefined;
|
|
616
621
|
webhook?: {
|
|
617
622
|
url: string;
|
|
@@ -701,9 +706,9 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
701
706
|
key: string;
|
|
702
707
|
createdAt: any;
|
|
703
708
|
updatedAt: any;
|
|
709
|
+
userId: any;
|
|
704
710
|
connected: boolean;
|
|
705
711
|
which: string;
|
|
706
|
-
userId: any;
|
|
707
712
|
"traders/pods": any;
|
|
708
713
|
exchange: any;
|
|
709
714
|
exchangeId: any;
|
|
@@ -742,6 +747,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
742
747
|
CORS_origins: string[];
|
|
743
748
|
};
|
|
744
749
|
}[] | undefined;
|
|
750
|
+
_id?: string | {} | undefined;
|
|
745
751
|
createdAt?: any;
|
|
746
752
|
updatedAt?: any;
|
|
747
753
|
userId?: string | {} | undefined;
|
|
@@ -849,6 +855,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
849
855
|
balance_dust_level: number;
|
|
850
856
|
} | undefined;
|
|
851
857
|
_id?: string | {} | undefined;
|
|
858
|
+
running?: boolean | undefined;
|
|
852
859
|
plugins?: {
|
|
853
860
|
number_assets?: number | undefined;
|
|
854
861
|
refresh_period?: number | undefined;
|
|
@@ -865,7 +872,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
865
872
|
exit: number;
|
|
866
873
|
} | undefined;
|
|
867
874
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
868
|
-
running?: boolean | undefined;
|
|
869
875
|
tradable_balance_ratio?: number | undefined;
|
|
870
876
|
webhook?: {
|
|
871
877
|
url: string;
|
|
@@ -955,9 +961,9 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
955
961
|
key: string;
|
|
956
962
|
createdAt: any;
|
|
957
963
|
updatedAt: any;
|
|
964
|
+
userId: any;
|
|
958
965
|
connected: boolean;
|
|
959
966
|
which: string;
|
|
960
|
-
userId: any;
|
|
961
967
|
"traders/pods": any;
|
|
962
968
|
exchange: any;
|
|
963
969
|
exchangeId: any;
|
|
@@ -1015,6 +1021,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1015
1021
|
updatedAt?: any;
|
|
1016
1022
|
error?: any;
|
|
1017
1023
|
login?: string | undefined;
|
|
1024
|
+
userId?: string | {} | undefined;
|
|
1018
1025
|
connected?: boolean | undefined;
|
|
1019
1026
|
downloaded?: {
|
|
1020
1027
|
updatedAt: any;
|
|
@@ -1044,17 +1051,18 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1044
1051
|
whitelist?: any[] | undefined;
|
|
1045
1052
|
ccxt_async_config?: any;
|
|
1046
1053
|
which?: string | undefined;
|
|
1054
|
+
stakeCurrencies?: any[] | undefined;
|
|
1055
|
+
popularStakeCurrency?: string | null | undefined;
|
|
1056
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
1047
1057
|
requiredCredentials?: any;
|
|
1048
1058
|
uid?: string | undefined;
|
|
1049
1059
|
twofa?: string | undefined;
|
|
1050
1060
|
privateKey?: string | undefined;
|
|
1051
1061
|
walletAddress?: string | undefined;
|
|
1052
|
-
userId?: string | {} | undefined;
|
|
1053
1062
|
__v?: any;
|
|
1054
1063
|
}>;
|
|
1055
1064
|
exchangeId: string;
|
|
1056
1065
|
strategy: Partial<{
|
|
1057
|
-
_id?: string | {} | undefined;
|
|
1058
1066
|
traders?: {
|
|
1059
1067
|
telegram?: {
|
|
1060
1068
|
access_hash?: string | null | undefined;
|
|
@@ -1092,6 +1100,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1092
1100
|
balance_dust_level: number;
|
|
1093
1101
|
} | undefined;
|
|
1094
1102
|
_id?: string | {} | undefined;
|
|
1103
|
+
running?: boolean | undefined;
|
|
1095
1104
|
plugins?: {
|
|
1096
1105
|
number_assets?: number | undefined;
|
|
1097
1106
|
refresh_period?: number | undefined;
|
|
@@ -1108,7 +1117,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1108
1117
|
exit: number;
|
|
1109
1118
|
} | undefined;
|
|
1110
1119
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1111
|
-
running?: boolean | undefined;
|
|
1112
1120
|
tradable_balance_ratio?: number | undefined;
|
|
1113
1121
|
webhook?: {
|
|
1114
1122
|
url: string;
|
|
@@ -1198,9 +1206,9 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1198
1206
|
key: string;
|
|
1199
1207
|
createdAt: any;
|
|
1200
1208
|
updatedAt: any;
|
|
1209
|
+
userId: any;
|
|
1201
1210
|
connected: boolean;
|
|
1202
1211
|
which: string;
|
|
1203
|
-
userId: any;
|
|
1204
1212
|
"traders/pods": any;
|
|
1205
1213
|
exchange: any;
|
|
1206
1214
|
exchangeId: any;
|
|
@@ -1239,6 +1247,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1239
1247
|
CORS_origins: string[];
|
|
1240
1248
|
};
|
|
1241
1249
|
}[] | undefined;
|
|
1250
|
+
_id?: string | {} | undefined;
|
|
1242
1251
|
createdAt?: any;
|
|
1243
1252
|
updatedAt?: any;
|
|
1244
1253
|
userId?: string | {} | undefined;
|
|
@@ -1346,6 +1355,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1346
1355
|
balance_dust_level: number;
|
|
1347
1356
|
} | undefined;
|
|
1348
1357
|
_id?: string | {} | undefined;
|
|
1358
|
+
running?: boolean | undefined;
|
|
1349
1359
|
plugins?: {
|
|
1350
1360
|
number_assets?: number | undefined;
|
|
1351
1361
|
refresh_period?: number | undefined;
|
|
@@ -1362,7 +1372,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1362
1372
|
exit: number;
|
|
1363
1373
|
} | undefined;
|
|
1364
1374
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1365
|
-
running?: boolean | undefined;
|
|
1366
1375
|
tradable_balance_ratio?: number | undefined;
|
|
1367
1376
|
webhook?: {
|
|
1368
1377
|
url: string;
|
|
@@ -1452,9 +1461,9 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1452
1461
|
key: string;
|
|
1453
1462
|
createdAt: any;
|
|
1454
1463
|
updatedAt: any;
|
|
1464
|
+
userId: any;
|
|
1455
1465
|
connected: boolean;
|
|
1456
1466
|
which: string;
|
|
1457
|
-
userId: any;
|
|
1458
1467
|
"traders/pods": any;
|
|
1459
1468
|
exchange: any;
|
|
1460
1469
|
exchangeId: any;
|
|
@@ -1716,6 +1725,9 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1716
1725
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
1717
1726
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1718
1727
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1728
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
1729
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
1730
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1719
1731
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
1720
1732
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
1721
1733
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -2011,6 +2023,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2011
2023
|
updatedAt?: any;
|
|
2012
2024
|
error?: any;
|
|
2013
2025
|
login?: string | undefined;
|
|
2026
|
+
userId?: string | {} | undefined;
|
|
2014
2027
|
connected?: boolean | undefined;
|
|
2015
2028
|
downloaded?: {
|
|
2016
2029
|
updatedAt: any;
|
|
@@ -2040,17 +2053,18 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2040
2053
|
whitelist?: any[] | undefined;
|
|
2041
2054
|
ccxt_async_config?: any;
|
|
2042
2055
|
which?: string | undefined;
|
|
2056
|
+
stakeCurrencies?: any[] | undefined;
|
|
2057
|
+
popularStakeCurrency?: string | null | undefined;
|
|
2058
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
2043
2059
|
requiredCredentials?: any;
|
|
2044
2060
|
uid?: string | undefined;
|
|
2045
2061
|
twofa?: string | undefined;
|
|
2046
2062
|
privateKey?: string | undefined;
|
|
2047
2063
|
walletAddress?: string | undefined;
|
|
2048
|
-
userId?: string | {} | undefined;
|
|
2049
2064
|
__v?: any;
|
|
2050
2065
|
}>;
|
|
2051
2066
|
exchangeId: string;
|
|
2052
2067
|
strategy: Partial<{
|
|
2053
|
-
_id?: string | {} | undefined;
|
|
2054
2068
|
traders?: {
|
|
2055
2069
|
telegram?: {
|
|
2056
2070
|
access_hash?: string | null | undefined;
|
|
@@ -2088,6 +2102,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2088
2102
|
balance_dust_level: number;
|
|
2089
2103
|
} | undefined;
|
|
2090
2104
|
_id?: string | {} | undefined;
|
|
2105
|
+
running?: boolean | undefined;
|
|
2091
2106
|
plugins?: {
|
|
2092
2107
|
number_assets?: number | undefined;
|
|
2093
2108
|
refresh_period?: number | undefined;
|
|
@@ -2104,7 +2119,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2104
2119
|
exit: number;
|
|
2105
2120
|
} | undefined;
|
|
2106
2121
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2107
|
-
running?: boolean | undefined;
|
|
2108
2122
|
tradable_balance_ratio?: number | undefined;
|
|
2109
2123
|
webhook?: {
|
|
2110
2124
|
url: string;
|
|
@@ -2194,9 +2208,9 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2194
2208
|
key: string;
|
|
2195
2209
|
createdAt: any;
|
|
2196
2210
|
updatedAt: any;
|
|
2211
|
+
userId: any;
|
|
2197
2212
|
connected: boolean;
|
|
2198
2213
|
which: string;
|
|
2199
|
-
userId: any;
|
|
2200
2214
|
"traders/pods": any;
|
|
2201
2215
|
exchange: any;
|
|
2202
2216
|
exchangeId: any;
|
|
@@ -2235,6 +2249,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2235
2249
|
CORS_origins: string[];
|
|
2236
2250
|
};
|
|
2237
2251
|
}[] | undefined;
|
|
2252
|
+
_id?: string | {} | undefined;
|
|
2238
2253
|
createdAt?: any;
|
|
2239
2254
|
updatedAt?: any;
|
|
2240
2255
|
userId?: string | {} | undefined;
|
|
@@ -2342,6 +2357,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2342
2357
|
balance_dust_level: number;
|
|
2343
2358
|
} | undefined;
|
|
2344
2359
|
_id?: string | {} | undefined;
|
|
2360
|
+
running?: boolean | undefined;
|
|
2345
2361
|
plugins?: {
|
|
2346
2362
|
number_assets?: number | undefined;
|
|
2347
2363
|
refresh_period?: number | undefined;
|
|
@@ -2358,7 +2374,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2358
2374
|
exit: number;
|
|
2359
2375
|
} | undefined;
|
|
2360
2376
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2361
|
-
running?: boolean | undefined;
|
|
2362
2377
|
tradable_balance_ratio?: number | undefined;
|
|
2363
2378
|
webhook?: {
|
|
2364
2379
|
url: string;
|
|
@@ -2448,9 +2463,9 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2448
2463
|
key: string;
|
|
2449
2464
|
createdAt: any;
|
|
2450
2465
|
updatedAt: any;
|
|
2466
|
+
userId: any;
|
|
2451
2467
|
connected: boolean;
|
|
2452
2468
|
which: string;
|
|
2453
|
-
userId: any;
|
|
2454
2469
|
"traders/pods": any;
|
|
2455
2470
|
exchange: any;
|
|
2456
2471
|
exchangeId: any;
|
|
@@ -2712,6 +2727,9 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2712
2727
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2713
2728
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2714
2729
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2730
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2731
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2732
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2715
2733
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2716
2734
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
2717
2735
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -3007,6 +3025,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3007
3025
|
updatedAt?: any;
|
|
3008
3026
|
error?: any;
|
|
3009
3027
|
login?: string | undefined;
|
|
3028
|
+
userId?: string | {} | undefined;
|
|
3010
3029
|
connected?: boolean | undefined;
|
|
3011
3030
|
downloaded?: {
|
|
3012
3031
|
updatedAt: any;
|
|
@@ -3036,17 +3055,18 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3036
3055
|
whitelist?: any[] | undefined;
|
|
3037
3056
|
ccxt_async_config?: any;
|
|
3038
3057
|
which?: string | undefined;
|
|
3058
|
+
stakeCurrencies?: any[] | undefined;
|
|
3059
|
+
popularStakeCurrency?: string | null | undefined;
|
|
3060
|
+
notifyAboutWhitelistByEmail?: boolean | undefined;
|
|
3039
3061
|
requiredCredentials?: any;
|
|
3040
3062
|
uid?: string | undefined;
|
|
3041
3063
|
twofa?: string | undefined;
|
|
3042
3064
|
privateKey?: string | undefined;
|
|
3043
3065
|
walletAddress?: string | undefined;
|
|
3044
|
-
userId?: string | {} | undefined;
|
|
3045
3066
|
__v?: any;
|
|
3046
3067
|
}>;
|
|
3047
3068
|
exchangeId: string;
|
|
3048
3069
|
strategy: Partial<{
|
|
3049
|
-
_id?: string | {} | undefined;
|
|
3050
3070
|
traders?: {
|
|
3051
3071
|
telegram?: {
|
|
3052
3072
|
access_hash?: string | null | undefined;
|
|
@@ -3084,6 +3104,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3084
3104
|
balance_dust_level: number;
|
|
3085
3105
|
} | undefined;
|
|
3086
3106
|
_id?: string | {} | undefined;
|
|
3107
|
+
running?: boolean | undefined;
|
|
3087
3108
|
plugins?: {
|
|
3088
3109
|
number_assets?: number | undefined;
|
|
3089
3110
|
refresh_period?: number | undefined;
|
|
@@ -3100,7 +3121,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3100
3121
|
exit: number;
|
|
3101
3122
|
} | undefined;
|
|
3102
3123
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3103
|
-
running?: boolean | undefined;
|
|
3104
3124
|
tradable_balance_ratio?: number | undefined;
|
|
3105
3125
|
webhook?: {
|
|
3106
3126
|
url: string;
|
|
@@ -3190,9 +3210,9 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3190
3210
|
key: string;
|
|
3191
3211
|
createdAt: any;
|
|
3192
3212
|
updatedAt: any;
|
|
3213
|
+
userId: any;
|
|
3193
3214
|
connected: boolean;
|
|
3194
3215
|
which: string;
|
|
3195
|
-
userId: any;
|
|
3196
3216
|
"traders/pods": any;
|
|
3197
3217
|
exchange: any;
|
|
3198
3218
|
exchangeId: any;
|
|
@@ -3231,6 +3251,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3231
3251
|
CORS_origins: string[];
|
|
3232
3252
|
};
|
|
3233
3253
|
}[] | undefined;
|
|
3254
|
+
_id?: string | {} | undefined;
|
|
3234
3255
|
createdAt?: any;
|
|
3235
3256
|
updatedAt?: any;
|
|
3236
3257
|
userId?: string | {} | undefined;
|
|
@@ -3338,6 +3359,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3338
3359
|
balance_dust_level: number;
|
|
3339
3360
|
} | undefined;
|
|
3340
3361
|
_id?: string | {} | undefined;
|
|
3362
|
+
running?: boolean | undefined;
|
|
3341
3363
|
plugins?: {
|
|
3342
3364
|
number_assets?: number | undefined;
|
|
3343
3365
|
refresh_period?: number | undefined;
|
|
@@ -3354,7 +3376,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3354
3376
|
exit: number;
|
|
3355
3377
|
} | undefined;
|
|
3356
3378
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3357
|
-
running?: boolean | undefined;
|
|
3358
3379
|
tradable_balance_ratio?: number | undefined;
|
|
3359
3380
|
webhook?: {
|
|
3360
3381
|
url: string;
|
|
@@ -3444,9 +3465,9 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3444
3465
|
key: string;
|
|
3445
3466
|
createdAt: any;
|
|
3446
3467
|
updatedAt: any;
|
|
3468
|
+
userId: any;
|
|
3447
3469
|
connected: boolean;
|
|
3448
3470
|
which: string;
|
|
3449
|
-
userId: any;
|
|
3450
3471
|
"traders/pods": any;
|
|
3451
3472
|
exchange: any;
|
|
3452
3473
|
exchangeId: any;
|
|
@@ -3708,6 +3729,9 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3708
3729
|
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3709
3730
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3710
3731
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3732
|
+
stakeCurrencies: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3733
|
+
popularStakeCurrency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3734
|
+
notifyAboutWhitelistByEmail: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3711
3735
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3712
3736
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TNull, import("@feathersjs/typebox").TString<string>]>>;
|
|
3713
3737
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|