@cryptorobot.ai/client 0.0.38 → 0.0.39

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.
Files changed (32) hide show
  1. package/lib/src/client.js +4 -1
  2. package/lib/src/services/exchanges/balance/balance.schema.d.ts +16 -16
  3. package/lib/src/services/exchanges/download/download.schema.d.ts +58 -17
  4. package/lib/src/services/exchanges/download/webhooks/webhooks.schema.d.ts +4 -4
  5. package/lib/src/services/exchanges/exchanges.schema.d.ts +100 -100
  6. package/lib/src/services/exchanges/ohlcv/ohlcv.class.d.ts +19 -0
  7. package/lib/src/services/exchanges/ohlcv/ohlcv.d.ts +11 -0
  8. package/lib/src/services/exchanges/ohlcv/ohlcv.schema.d.ts +507 -0
  9. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.d.ts +13 -0
  10. package/lib/src/services/exchanges/ohlcv/ohlcv.shared.js +13 -0
  11. package/lib/src/services/exchanges/ticker/ticker.schema.d.ts +68 -68
  12. package/lib/src/services/messages/messages.schema.d.ts +64 -32
  13. package/lib/src/services/strategies/backtest/backtest.schema.d.ts +127 -60
  14. package/lib/src/services/strategies/backtest/results/results.schema.d.ts +8 -8
  15. package/lib/src/services/strategies/hyperopt/hyperopt.schema.d.ts +4 -4
  16. package/lib/src/services/strategies/indicators/indicators.schema.d.ts +4 -4
  17. package/lib/src/services/strategies/indicators/talib/talib.class.d.ts +11 -0
  18. package/lib/src/services/strategies/indicators/talib/talib.d.ts +11 -0
  19. package/lib/src/services/strategies/indicators/talib/talib.schema.d.ts +443 -0
  20. package/lib/src/services/strategies/indicators/talib/talib.shared.d.ts +13 -0
  21. package/lib/src/services/strategies/indicators/talib/talib.shared.js +13 -0
  22. package/lib/src/services/strategies/strategies.schema.d.ts +28 -28
  23. package/lib/src/services/strategies/templates/templates.schema.d.ts +4 -4
  24. package/lib/src/services/traders/pods/api/api.schema.d.ts +380 -290
  25. package/lib/src/services/traders/pods/pods.schema.d.ts +310 -310
  26. package/lib/src/services/traders/traders.schema.d.ts +138 -138
  27. package/lib/src/services/users/users.class.d.ts +178 -3
  28. package/lib/src/services/users/users.schema.d.ts +123 -85
  29. package/lib/src/services/users/users.shared.d.ts +4 -3
  30. package/lib/src/services/users/users.shared.js +1 -1
  31. package/package.json +2 -3
  32. package/readme.md +1 -2
@@ -508,60 +508,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
508
508
  stop?: boolean | undefined;
509
509
  provider: "docker";
510
510
  _id: string | {};
511
- options: any;
512
- exchange: Partial<{
513
- password?: string | undefined;
514
- name?: any;
515
- apiKey?: string | null | undefined;
516
- token?: string | undefined;
517
- secret?: string | null | undefined;
518
- _id?: string | {} | undefined;
519
- avatar?: any;
520
- createdAt?: any;
521
- updatedAt?: any;
522
- error?: any;
523
- login?: string | undefined;
524
- userId?: string | {} | undefined;
525
- connected?: boolean | undefined;
526
- downloaded?: {
527
- updatedAt: any;
528
- size: string;
529
- pairs: {};
530
- sizes: any[];
531
- } | undefined;
532
- ccxt_config?: any;
533
- balances?: {
534
- total?: any;
535
- errors?: any;
536
- updatedAt: any;
537
- items: {
538
- total?: number | undefined;
539
- symbol: string;
540
- fiat: number;
541
- }[];
542
- sum: any;
543
- quotation: any;
544
- } | undefined;
545
- tags?: any;
546
- background?: any;
547
- blacklist?: {
548
- left: string;
549
- right: string;
550
- }[] | undefined;
551
- whitelist?: any[] | undefined;
552
- ccxt_async_config?: any;
553
- which?: string | undefined;
554
- stakeCurrencies?: any[] | undefined;
555
- popularStakeCurrency?: string | null | undefined;
556
- notifyAboutWhitelistByEmail?: boolean | undefined;
557
- requiredCredentials?: any;
558
- uid?: string | undefined;
559
- twofa?: string | undefined;
560
- privateKey?: string | undefined;
561
- walletAddress?: string | undefined;
562
- __v?: any;
563
- }>;
564
- exchangeId: string;
565
511
  strategy: Partial<{
566
512
  traders?: {
567
513
  telegram?: {
@@ -600,7 +546,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
600
546
  balance_dust_level: number;
601
547
  } | undefined;
602
548
  _id?: string | {} | undefined;
603
- running?: boolean | undefined;
604
549
  plugins?: {
605
550
  number_assets?: number | undefined;
606
551
  refresh_period?: number | undefined;
@@ -617,6 +562,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
617
562
  exit: number;
618
563
  } | undefined;
619
564
  cancel_open_orders_on_exit?: boolean | undefined;
565
+ running?: boolean | undefined;
620
566
  tradable_balance_ratio?: number | undefined;
621
567
  webhook?: {
622
568
  url: string;
@@ -706,10 +652,11 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
706
652
  key: string;
707
653
  createdAt: any;
708
654
  updatedAt: any;
709
- "traders/pods": any;
710
- userId: any;
711
655
  connected: boolean;
712
656
  which: string;
657
+ userId: any;
658
+ strategy: any;
659
+ "traders/pods": any;
713
660
  exchange: any;
714
661
  exchangeId: any;
715
662
  stake_currency: string;
@@ -718,7 +665,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
718
665
  handling: string;
719
666
  initial_state: string;
720
667
  pairlists: any;
721
- strategy: any;
722
668
  strategyId: string | {};
723
669
  entry_pricing: {
724
670
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -750,16 +696,16 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
750
696
  _id?: string | {} | undefined;
751
697
  createdAt?: any;
752
698
  updatedAt?: any;
699
+ userId?: string | {} | undefined;
753
700
  'strategies/templates'?: {
754
701
  _id?: string | {} | undefined;
755
702
  createdAt?: any;
756
703
  updatedAt?: any;
757
704
  values: any;
758
705
  name: string;
759
- description: string;
760
706
  type: string;
707
+ description: string;
761
708
  } | undefined;
762
- userId?: string | {} | undefined;
763
709
  file?: any;
764
710
  templateId?: string | {} | undefined;
765
711
  interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
@@ -792,8 +738,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
792
738
  max_allowed_drawdown?: unknown;
793
739
  only_per_pair?: unknown;
794
740
  enabled: boolean;
795
- method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
796
741
  type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
742
+ method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
797
743
  }[] | undefined;
798
744
  buywhen?: {
799
745
  value?: number | undefined;
@@ -816,6 +762,60 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
816
762
  name: any;
817
763
  'strategies/indicators': any;
818
764
  }>;
765
+ options: any;
766
+ exchange: Partial<{
767
+ password?: string | undefined;
768
+ name?: any;
769
+ apiKey?: string | null | undefined;
770
+ token?: string | undefined;
771
+ secret?: string | null | undefined;
772
+ error?: any;
773
+ _id?: string | {} | undefined;
774
+ createdAt?: any;
775
+ updatedAt?: any;
776
+ connected?: boolean | undefined;
777
+ downloaded?: {
778
+ updatedAt: any;
779
+ size: string;
780
+ pairs: {};
781
+ sizes: any[];
782
+ } | undefined;
783
+ ccxt_config?: any;
784
+ balances?: {
785
+ total?: any;
786
+ errors?: any;
787
+ updatedAt: any;
788
+ items: {
789
+ total?: number | undefined;
790
+ symbol: string;
791
+ fiat: number;
792
+ }[];
793
+ sum: any;
794
+ quotation: any;
795
+ } | undefined;
796
+ tags?: any;
797
+ background?: any;
798
+ avatar?: any;
799
+ blacklist?: {
800
+ left: string;
801
+ right: string;
802
+ }[] | undefined;
803
+ whitelist?: any[] | undefined;
804
+ ccxt_async_config?: any;
805
+ which?: string | undefined;
806
+ stakeCurrencies?: any[] | undefined;
807
+ popularStakeCurrency?: string | null | undefined;
808
+ notifyAboutWhitelistByEmail?: boolean | undefined;
809
+ requiredCredentials?: any;
810
+ uid?: string | undefined;
811
+ login?: string | undefined;
812
+ twofa?: string | undefined;
813
+ privateKey?: string | undefined;
814
+ walletAddress?: string | undefined;
815
+ userId?: string | {} | undefined;
816
+ __v?: any;
817
+ }>;
818
+ exchangeId: string;
819
819
  strategyId: string | {};
820
820
  pod: any;
821
821
  trader: Partial<{
@@ -855,7 +855,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
855
855
  balance_dust_level: number;
856
856
  } | undefined;
857
857
  _id?: string | {} | undefined;
858
- running?: boolean | undefined;
859
858
  plugins?: {
860
859
  number_assets?: number | undefined;
861
860
  refresh_period?: number | undefined;
@@ -872,6 +871,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
872
871
  exit: number;
873
872
  } | undefined;
874
873
  cancel_open_orders_on_exit?: boolean | undefined;
874
+ running?: boolean | undefined;
875
875
  tradable_balance_ratio?: number | undefined;
876
876
  webhook?: {
877
877
  url: string;
@@ -961,10 +961,11 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
961
961
  key: string;
962
962
  createdAt: any;
963
963
  updatedAt: any;
964
- "traders/pods": any;
965
- userId: any;
966
964
  connected: boolean;
967
965
  which: string;
966
+ userId: any;
967
+ strategy: any;
968
+ "traders/pods": any;
968
969
  exchange: any;
969
970
  exchangeId: any;
970
971
  stake_currency: string;
@@ -973,7 +974,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
973
974
  handling: string;
974
975
  initial_state: string;
975
976
  pairlists: any;
976
- strategy: any;
977
977
  strategyId: string | {};
978
978
  entry_pricing: {
979
979
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -1008,60 +1008,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1008
1008
  stop?: boolean | undefined;
1009
1009
  provider: "docker";
1010
1010
  _id: string | {};
1011
- options: any;
1012
- exchange: Partial<{
1013
- password?: string | undefined;
1014
- name?: any;
1015
- apiKey?: string | null | undefined;
1016
- token?: string | undefined;
1017
- secret?: string | null | undefined;
1018
- _id?: string | {} | undefined;
1019
- avatar?: any;
1020
- createdAt?: any;
1021
- updatedAt?: any;
1022
- error?: any;
1023
- login?: string | undefined;
1024
- userId?: string | {} | undefined;
1025
- connected?: boolean | undefined;
1026
- downloaded?: {
1027
- updatedAt: any;
1028
- size: string;
1029
- pairs: {};
1030
- sizes: any[];
1031
- } | undefined;
1032
- ccxt_config?: any;
1033
- balances?: {
1034
- total?: any;
1035
- errors?: any;
1036
- updatedAt: any;
1037
- items: {
1038
- total?: number | undefined;
1039
- symbol: string;
1040
- fiat: number;
1041
- }[];
1042
- sum: any;
1043
- quotation: any;
1044
- } | undefined;
1045
- tags?: any;
1046
- background?: any;
1047
- blacklist?: {
1048
- left: string;
1049
- right: string;
1050
- }[] | undefined;
1051
- whitelist?: any[] | undefined;
1052
- ccxt_async_config?: any;
1053
- which?: string | undefined;
1054
- stakeCurrencies?: any[] | undefined;
1055
- popularStakeCurrency?: string | null | undefined;
1056
- notifyAboutWhitelistByEmail?: boolean | undefined;
1057
- requiredCredentials?: any;
1058
- uid?: string | undefined;
1059
- twofa?: string | undefined;
1060
- privateKey?: string | undefined;
1061
- walletAddress?: string | undefined;
1062
- __v?: any;
1063
- }>;
1064
- exchangeId: string;
1065
1011
  strategy: Partial<{
1066
1012
  traders?: {
1067
1013
  telegram?: {
@@ -1100,7 +1046,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1100
1046
  balance_dust_level: number;
1101
1047
  } | undefined;
1102
1048
  _id?: string | {} | undefined;
1103
- running?: boolean | undefined;
1104
1049
  plugins?: {
1105
1050
  number_assets?: number | undefined;
1106
1051
  refresh_period?: number | undefined;
@@ -1117,6 +1062,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1117
1062
  exit: number;
1118
1063
  } | undefined;
1119
1064
  cancel_open_orders_on_exit?: boolean | undefined;
1065
+ running?: boolean | undefined;
1120
1066
  tradable_balance_ratio?: number | undefined;
1121
1067
  webhook?: {
1122
1068
  url: string;
@@ -1206,10 +1152,11 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1206
1152
  key: string;
1207
1153
  createdAt: any;
1208
1154
  updatedAt: any;
1209
- "traders/pods": any;
1210
- userId: any;
1211
1155
  connected: boolean;
1212
1156
  which: string;
1157
+ userId: any;
1158
+ strategy: any;
1159
+ "traders/pods": any;
1213
1160
  exchange: any;
1214
1161
  exchangeId: any;
1215
1162
  stake_currency: string;
@@ -1218,7 +1165,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1218
1165
  handling: string;
1219
1166
  initial_state: string;
1220
1167
  pairlists: any;
1221
- strategy: any;
1222
1168
  strategyId: string | {};
1223
1169
  entry_pricing: {
1224
1170
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -1250,16 +1196,16 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1250
1196
  _id?: string | {} | undefined;
1251
1197
  createdAt?: any;
1252
1198
  updatedAt?: any;
1199
+ userId?: string | {} | undefined;
1253
1200
  'strategies/templates'?: {
1254
1201
  _id?: string | {} | undefined;
1255
1202
  createdAt?: any;
1256
1203
  updatedAt?: any;
1257
1204
  values: any;
1258
1205
  name: string;
1259
- description: string;
1260
1206
  type: string;
1207
+ description: string;
1261
1208
  } | undefined;
1262
- userId?: string | {} | undefined;
1263
1209
  file?: any;
1264
1210
  templateId?: string | {} | undefined;
1265
1211
  interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
@@ -1292,8 +1238,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1292
1238
  max_allowed_drawdown?: unknown;
1293
1239
  only_per_pair?: unknown;
1294
1240
  enabled: boolean;
1295
- method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
1296
1241
  type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
1242
+ method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
1297
1243
  }[] | undefined;
1298
1244
  buywhen?: {
1299
1245
  value?: number | undefined;
@@ -1316,6 +1262,60 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1316
1262
  name: any;
1317
1263
  'strategies/indicators': any;
1318
1264
  }>;
1265
+ options: any;
1266
+ exchange: Partial<{
1267
+ password?: string | undefined;
1268
+ name?: any;
1269
+ apiKey?: string | null | undefined;
1270
+ token?: string | undefined;
1271
+ secret?: string | null | undefined;
1272
+ error?: any;
1273
+ _id?: string | {} | undefined;
1274
+ createdAt?: any;
1275
+ updatedAt?: any;
1276
+ connected?: boolean | undefined;
1277
+ downloaded?: {
1278
+ updatedAt: any;
1279
+ size: string;
1280
+ pairs: {};
1281
+ sizes: any[];
1282
+ } | undefined;
1283
+ ccxt_config?: any;
1284
+ balances?: {
1285
+ total?: any;
1286
+ errors?: any;
1287
+ updatedAt: any;
1288
+ items: {
1289
+ total?: number | undefined;
1290
+ symbol: string;
1291
+ fiat: number;
1292
+ }[];
1293
+ sum: any;
1294
+ quotation: any;
1295
+ } | undefined;
1296
+ tags?: any;
1297
+ background?: any;
1298
+ avatar?: any;
1299
+ blacklist?: {
1300
+ left: string;
1301
+ right: string;
1302
+ }[] | undefined;
1303
+ whitelist?: any[] | undefined;
1304
+ ccxt_async_config?: any;
1305
+ which?: string | undefined;
1306
+ stakeCurrencies?: any[] | undefined;
1307
+ popularStakeCurrency?: string | null | undefined;
1308
+ notifyAboutWhitelistByEmail?: boolean | undefined;
1309
+ requiredCredentials?: any;
1310
+ uid?: string | undefined;
1311
+ login?: string | undefined;
1312
+ twofa?: string | undefined;
1313
+ privateKey?: string | undefined;
1314
+ walletAddress?: string | undefined;
1315
+ userId?: string | {} | undefined;
1316
+ __v?: any;
1317
+ }>;
1318
+ exchangeId: string;
1319
1319
  strategyId: string | {};
1320
1320
  pod: any;
1321
1321
  trader: Partial<{
@@ -1355,7 +1355,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1355
1355
  balance_dust_level: number;
1356
1356
  } | undefined;
1357
1357
  _id?: string | {} | undefined;
1358
- running?: boolean | undefined;
1359
1358
  plugins?: {
1360
1359
  number_assets?: number | undefined;
1361
1360
  refresh_period?: number | undefined;
@@ -1372,6 +1371,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1372
1371
  exit: number;
1373
1372
  } | undefined;
1374
1373
  cancel_open_orders_on_exit?: boolean | undefined;
1374
+ running?: boolean | undefined;
1375
1375
  tradable_balance_ratio?: number | undefined;
1376
1376
  webhook?: {
1377
1377
  url: string;
@@ -1461,10 +1461,11 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1461
1461
  key: string;
1462
1462
  createdAt: any;
1463
1463
  updatedAt: any;
1464
- "traders/pods": any;
1465
- userId: any;
1466
1464
  connected: boolean;
1467
1465
  which: string;
1466
+ userId: any;
1467
+ strategy: any;
1468
+ "traders/pods": any;
1468
1469
  exchange: any;
1469
1470
  exchangeId: any;
1470
1471
  stake_currency: string;
@@ -1473,7 +1474,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1473
1474
  handling: string;
1474
1475
  initial_state: string;
1475
1476
  pairlists: any;
1476
- strategy: any;
1477
1477
  strategyId: string | {};
1478
1478
  entry_pricing: {
1479
1479
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -1960,110 +1960,56 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1960
1960
  entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1961
1961
  exit: import("@feathersjs/typebox").TObject<{
1962
1962
  roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1963
- emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1964
- force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1965
- exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1966
- trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1967
- stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1968
- stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1969
- custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1970
- partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1971
- }>;
1972
- exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1973
- exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1974
- protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1975
- protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1976
- strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1977
- show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
1978
- }>;
1979
- reload: import("@feathersjs/typebox").TBoolean;
1980
- balance_dust_level: import("@feathersjs/typebox").TNumber;
1981
- }>>;
1982
- pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
1983
- _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1984
- reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1985
- host: import("@feathersjs/typebox").TString<string>;
1986
- provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
1987
- strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1988
- "traders/pods": import("@feathersjs/typebox").TAny;
1989
- }>>>>;
1990
- 'strategies/templates': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
1991
- _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1992
- name: import("@feathersjs/typebox").TString<string>;
1993
- type: import("@feathersjs/typebox").TString<string>;
1994
- description: import("@feathersjs/typebox").TString<string>;
1995
- createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1996
- updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1997
- values: import("@feathersjs/typebox").TAny;
1998
- }>>>;
1999
- 'strategies/indicators': import("@feathersjs/typebox").TAny;
2000
- }>>>;
2001
- pod: import("@feathersjs/typebox").TAny;
2002
- host: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2003
- stop: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2004
- options: import("@feathersjs/typebox").TAny;
2005
- }>, ["_id", "provider", "exchangeId", "strategyId"]>;
2006
- export type TradersPodsData = Static<typeof tradersPodsDataSchema>;
2007
- export declare const tradersPodsDataValidator: import("@feathersjs/schema").Validator<any, any>;
2008
- export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resolver<{
2009
- host?: string | undefined;
2010
- stop?: boolean | undefined;
2011
- provider: "docker";
2012
- _id: string | {};
2013
- options: any;
2014
- exchange: Partial<{
2015
- password?: string | undefined;
2016
- name?: any;
2017
- apiKey?: string | null | undefined;
2018
- token?: string | undefined;
2019
- secret?: string | null | undefined;
2020
- _id?: string | {} | undefined;
2021
- avatar?: any;
2022
- createdAt?: any;
2023
- updatedAt?: any;
2024
- error?: any;
2025
- login?: string | undefined;
2026
- userId?: string | {} | undefined;
2027
- connected?: boolean | undefined;
2028
- downloaded?: {
2029
- updatedAt: any;
2030
- size: string;
2031
- pairs: {};
2032
- sizes: any[];
2033
- } | undefined;
2034
- ccxt_config?: any;
2035
- balances?: {
2036
- total?: any;
2037
- errors?: any;
2038
- updatedAt: any;
2039
- items: {
2040
- total?: number | undefined;
2041
- symbol: string;
2042
- fiat: number;
2043
- }[];
2044
- sum: any;
2045
- quotation: any;
2046
- } | undefined;
2047
- tags?: any;
2048
- background?: any;
2049
- blacklist?: {
2050
- left: string;
2051
- right: string;
2052
- }[] | undefined;
2053
- whitelist?: any[] | undefined;
2054
- ccxt_async_config?: any;
2055
- which?: string | undefined;
2056
- stakeCurrencies?: any[] | undefined;
2057
- popularStakeCurrency?: string | null | undefined;
2058
- notifyAboutWhitelistByEmail?: boolean | undefined;
2059
- requiredCredentials?: any;
2060
- uid?: string | undefined;
2061
- twofa?: string | undefined;
2062
- privateKey?: string | undefined;
2063
- walletAddress?: string | undefined;
2064
- __v?: any;
2065
- }>;
2066
- exchangeId: string;
1963
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1964
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1965
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1966
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1967
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1968
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1969
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1970
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1971
+ }>;
1972
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1973
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1974
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1975
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1976
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1977
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
1978
+ }>;
1979
+ reload: import("@feathersjs/typebox").TBoolean;
1980
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
1981
+ }>>;
1982
+ pod: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{}>>;
1983
+ _include: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1984
+ reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
1985
+ host: import("@feathersjs/typebox").TString<string>;
1986
+ provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
1987
+ strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
1988
+ "traders/pods": import("@feathersjs/typebox").TAny;
1989
+ }>>>>;
1990
+ 'strategies/templates': import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TRef<import("@feathersjs/typebox").TObject<{
1991
+ _id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
1992
+ name: import("@feathersjs/typebox").TString<string>;
1993
+ type: import("@feathersjs/typebox").TString<string>;
1994
+ description: import("@feathersjs/typebox").TString<string>;
1995
+ createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1996
+ updatedAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1997
+ values: import("@feathersjs/typebox").TAny;
1998
+ }>>>;
1999
+ 'strategies/indicators': import("@feathersjs/typebox").TAny;
2000
+ }>>>;
2001
+ pod: import("@feathersjs/typebox").TAny;
2002
+ host: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2003
+ stop: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
2004
+ options: import("@feathersjs/typebox").TAny;
2005
+ }>, ["_id", "provider", "exchangeId", "strategyId"]>;
2006
+ export type TradersPodsData = Static<typeof tradersPodsDataSchema>;
2007
+ export declare const tradersPodsDataValidator: import("@feathersjs/schema").Validator<any, any>;
2008
+ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resolver<{
2009
+ host?: string | undefined;
2010
+ stop?: boolean | undefined;
2011
+ provider: "docker";
2012
+ _id: string | {};
2067
2013
  strategy: Partial<{
2068
2014
  traders?: {
2069
2015
  telegram?: {
@@ -2102,7 +2048,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2102
2048
  balance_dust_level: number;
2103
2049
  } | undefined;
2104
2050
  _id?: string | {} | undefined;
2105
- running?: boolean | undefined;
2106
2051
  plugins?: {
2107
2052
  number_assets?: number | undefined;
2108
2053
  refresh_period?: number | undefined;
@@ -2119,6 +2064,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2119
2064
  exit: number;
2120
2065
  } | undefined;
2121
2066
  cancel_open_orders_on_exit?: boolean | undefined;
2067
+ running?: boolean | undefined;
2122
2068
  tradable_balance_ratio?: number | undefined;
2123
2069
  webhook?: {
2124
2070
  url: string;
@@ -2208,10 +2154,11 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2208
2154
  key: string;
2209
2155
  createdAt: any;
2210
2156
  updatedAt: any;
2211
- "traders/pods": any;
2212
- userId: any;
2213
2157
  connected: boolean;
2214
2158
  which: string;
2159
+ userId: any;
2160
+ strategy: any;
2161
+ "traders/pods": any;
2215
2162
  exchange: any;
2216
2163
  exchangeId: any;
2217
2164
  stake_currency: string;
@@ -2220,7 +2167,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2220
2167
  handling: string;
2221
2168
  initial_state: string;
2222
2169
  pairlists: any;
2223
- strategy: any;
2224
2170
  strategyId: string | {};
2225
2171
  entry_pricing: {
2226
2172
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -2252,16 +2198,16 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2252
2198
  _id?: string | {} | undefined;
2253
2199
  createdAt?: any;
2254
2200
  updatedAt?: any;
2201
+ userId?: string | {} | undefined;
2255
2202
  'strategies/templates'?: {
2256
2203
  _id?: string | {} | undefined;
2257
2204
  createdAt?: any;
2258
2205
  updatedAt?: any;
2259
2206
  values: any;
2260
2207
  name: string;
2261
- description: string;
2262
2208
  type: string;
2209
+ description: string;
2263
2210
  } | undefined;
2264
- userId?: string | {} | undefined;
2265
2211
  file?: any;
2266
2212
  templateId?: string | {} | undefined;
2267
2213
  interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
@@ -2294,8 +2240,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2294
2240
  max_allowed_drawdown?: unknown;
2295
2241
  only_per_pair?: unknown;
2296
2242
  enabled: boolean;
2297
- method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
2298
2243
  type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
2244
+ method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
2299
2245
  }[] | undefined;
2300
2246
  buywhen?: {
2301
2247
  value?: number | undefined;
@@ -2318,6 +2264,60 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2318
2264
  name: any;
2319
2265
  'strategies/indicators': any;
2320
2266
  }>;
2267
+ options: any;
2268
+ exchange: Partial<{
2269
+ password?: string | undefined;
2270
+ name?: any;
2271
+ apiKey?: string | null | undefined;
2272
+ token?: string | undefined;
2273
+ secret?: string | null | undefined;
2274
+ error?: any;
2275
+ _id?: string | {} | undefined;
2276
+ createdAt?: any;
2277
+ updatedAt?: any;
2278
+ connected?: boolean | undefined;
2279
+ downloaded?: {
2280
+ updatedAt: any;
2281
+ size: string;
2282
+ pairs: {};
2283
+ sizes: any[];
2284
+ } | undefined;
2285
+ ccxt_config?: any;
2286
+ balances?: {
2287
+ total?: any;
2288
+ errors?: any;
2289
+ updatedAt: any;
2290
+ items: {
2291
+ total?: number | undefined;
2292
+ symbol: string;
2293
+ fiat: number;
2294
+ }[];
2295
+ sum: any;
2296
+ quotation: any;
2297
+ } | undefined;
2298
+ tags?: any;
2299
+ background?: any;
2300
+ avatar?: any;
2301
+ blacklist?: {
2302
+ left: string;
2303
+ right: string;
2304
+ }[] | undefined;
2305
+ whitelist?: any[] | undefined;
2306
+ ccxt_async_config?: any;
2307
+ which?: string | undefined;
2308
+ stakeCurrencies?: any[] | undefined;
2309
+ popularStakeCurrency?: string | null | undefined;
2310
+ notifyAboutWhitelistByEmail?: boolean | undefined;
2311
+ requiredCredentials?: any;
2312
+ uid?: string | undefined;
2313
+ login?: string | undefined;
2314
+ twofa?: string | undefined;
2315
+ privateKey?: string | undefined;
2316
+ walletAddress?: string | undefined;
2317
+ userId?: string | {} | undefined;
2318
+ __v?: any;
2319
+ }>;
2320
+ exchangeId: string;
2321
2321
  strategyId: string | {};
2322
2322
  pod: any;
2323
2323
  trader: Partial<{
@@ -2357,7 +2357,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2357
2357
  balance_dust_level: number;
2358
2358
  } | undefined;
2359
2359
  _id?: string | {} | undefined;
2360
- running?: boolean | undefined;
2361
2360
  plugins?: {
2362
2361
  number_assets?: number | undefined;
2363
2362
  refresh_period?: number | undefined;
@@ -2374,6 +2373,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2374
2373
  exit: number;
2375
2374
  } | undefined;
2376
2375
  cancel_open_orders_on_exit?: boolean | undefined;
2376
+ running?: boolean | undefined;
2377
2377
  tradable_balance_ratio?: number | undefined;
2378
2378
  webhook?: {
2379
2379
  url: string;
@@ -2463,10 +2463,11 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2463
2463
  key: string;
2464
2464
  createdAt: any;
2465
2465
  updatedAt: any;
2466
- "traders/pods": any;
2467
- userId: any;
2468
2466
  connected: boolean;
2469
2467
  which: string;
2468
+ userId: any;
2469
+ strategy: any;
2470
+ "traders/pods": any;
2470
2471
  exchange: any;
2471
2472
  exchangeId: any;
2472
2473
  stake_currency: string;
@@ -2475,7 +2476,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2475
2476
  handling: string;
2476
2477
  initial_state: string;
2477
2478
  pairlists: any;
2478
- strategy: any;
2479
2479
  strategyId: string | {};
2480
2480
  entry_pricing: {
2481
2481
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -3012,60 +3012,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3012
3012
  stop?: boolean | undefined;
3013
3013
  provider: "docker";
3014
3014
  _id: string | {};
3015
- options: any;
3016
- exchange: Partial<{
3017
- password?: string | undefined;
3018
- name?: any;
3019
- apiKey?: string | null | undefined;
3020
- token?: string | undefined;
3021
- secret?: string | null | undefined;
3022
- _id?: string | {} | undefined;
3023
- avatar?: any;
3024
- createdAt?: any;
3025
- updatedAt?: any;
3026
- error?: any;
3027
- login?: string | undefined;
3028
- userId?: string | {} | undefined;
3029
- connected?: boolean | undefined;
3030
- downloaded?: {
3031
- updatedAt: any;
3032
- size: string;
3033
- pairs: {};
3034
- sizes: any[];
3035
- } | undefined;
3036
- ccxt_config?: any;
3037
- balances?: {
3038
- total?: any;
3039
- errors?: any;
3040
- updatedAt: any;
3041
- items: {
3042
- total?: number | undefined;
3043
- symbol: string;
3044
- fiat: number;
3045
- }[];
3046
- sum: any;
3047
- quotation: any;
3048
- } | undefined;
3049
- tags?: any;
3050
- background?: any;
3051
- blacklist?: {
3052
- left: string;
3053
- right: string;
3054
- }[] | undefined;
3055
- whitelist?: any[] | undefined;
3056
- ccxt_async_config?: any;
3057
- which?: string | undefined;
3058
- stakeCurrencies?: any[] | undefined;
3059
- popularStakeCurrency?: string | null | undefined;
3060
- notifyAboutWhitelistByEmail?: boolean | undefined;
3061
- requiredCredentials?: any;
3062
- uid?: string | undefined;
3063
- twofa?: string | undefined;
3064
- privateKey?: string | undefined;
3065
- walletAddress?: string | undefined;
3066
- __v?: any;
3067
- }>;
3068
- exchangeId: string;
3069
3015
  strategy: Partial<{
3070
3016
  traders?: {
3071
3017
  telegram?: {
@@ -3104,7 +3050,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3104
3050
  balance_dust_level: number;
3105
3051
  } | undefined;
3106
3052
  _id?: string | {} | undefined;
3107
- running?: boolean | undefined;
3108
3053
  plugins?: {
3109
3054
  number_assets?: number | undefined;
3110
3055
  refresh_period?: number | undefined;
@@ -3121,6 +3066,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3121
3066
  exit: number;
3122
3067
  } | undefined;
3123
3068
  cancel_open_orders_on_exit?: boolean | undefined;
3069
+ running?: boolean | undefined;
3124
3070
  tradable_balance_ratio?: number | undefined;
3125
3071
  webhook?: {
3126
3072
  url: string;
@@ -3210,10 +3156,11 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3210
3156
  key: string;
3211
3157
  createdAt: any;
3212
3158
  updatedAt: any;
3213
- "traders/pods": any;
3214
- userId: any;
3215
3159
  connected: boolean;
3216
3160
  which: string;
3161
+ userId: any;
3162
+ strategy: any;
3163
+ "traders/pods": any;
3217
3164
  exchange: any;
3218
3165
  exchangeId: any;
3219
3166
  stake_currency: string;
@@ -3222,7 +3169,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3222
3169
  handling: string;
3223
3170
  initial_state: string;
3224
3171
  pairlists: any;
3225
- strategy: any;
3226
3172
  strategyId: string | {};
3227
3173
  entry_pricing: {
3228
3174
  price_side?: "ask" | "bid" | "same" | "other" | undefined;
@@ -3254,16 +3200,16 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3254
3200
  _id?: string | {} | undefined;
3255
3201
  createdAt?: any;
3256
3202
  updatedAt?: any;
3203
+ userId?: string | {} | undefined;
3257
3204
  'strategies/templates'?: {
3258
3205
  _id?: string | {} | undefined;
3259
3206
  createdAt?: any;
3260
3207
  updatedAt?: any;
3261
3208
  values: any;
3262
3209
  name: string;
3263
- description: string;
3264
3210
  type: string;
3211
+ description: string;
3265
3212
  } | undefined;
3266
- userId?: string | {} | undefined;
3267
3213
  file?: any;
3268
3214
  templateId?: string | {} | undefined;
3269
3215
  interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
@@ -3296,8 +3242,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3296
3242
  max_allowed_drawdown?: unknown;
3297
3243
  only_per_pair?: unknown;
3298
3244
  enabled: boolean;
3299
- method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
3300
3245
  type: "coolDownPeriod" | "lowProfitPairs" | "stoplossGuard" | "maxDrawdown";
3246
+ method: "CooldownPeriod" | "LowProfitPairs" | "StoplossGuard" | "MaxDrawdown";
3301
3247
  }[] | undefined;
3302
3248
  buywhen?: {
3303
3249
  value?: number | undefined;
@@ -3320,6 +3266,60 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3320
3266
  name: any;
3321
3267
  'strategies/indicators': any;
3322
3268
  }>;
3269
+ options: any;
3270
+ exchange: Partial<{
3271
+ password?: string | undefined;
3272
+ name?: any;
3273
+ apiKey?: string | null | undefined;
3274
+ token?: string | undefined;
3275
+ secret?: string | null | undefined;
3276
+ error?: any;
3277
+ _id?: string | {} | undefined;
3278
+ createdAt?: any;
3279
+ updatedAt?: any;
3280
+ connected?: boolean | undefined;
3281
+ downloaded?: {
3282
+ updatedAt: any;
3283
+ size: string;
3284
+ pairs: {};
3285
+ sizes: any[];
3286
+ } | undefined;
3287
+ ccxt_config?: any;
3288
+ balances?: {
3289
+ total?: any;
3290
+ errors?: any;
3291
+ updatedAt: any;
3292
+ items: {
3293
+ total?: number | undefined;
3294
+ symbol: string;
3295
+ fiat: number;
3296
+ }[];
3297
+ sum: any;
3298
+ quotation: any;
3299
+ } | undefined;
3300
+ tags?: any;
3301
+ background?: any;
3302
+ avatar?: any;
3303
+ blacklist?: {
3304
+ left: string;
3305
+ right: string;
3306
+ }[] | undefined;
3307
+ whitelist?: any[] | undefined;
3308
+ ccxt_async_config?: any;
3309
+ which?: string | undefined;
3310
+ stakeCurrencies?: any[] | undefined;
3311
+ popularStakeCurrency?: string | null | undefined;
3312
+ notifyAboutWhitelistByEmail?: boolean | undefined;
3313
+ requiredCredentials?: any;
3314
+ uid?: string | undefined;
3315
+ login?: string | undefined;
3316
+ twofa?: string | undefined;
3317
+ privateKey?: string | undefined;
3318
+ walletAddress?: string | undefined;
3319
+ userId?: string | {} | undefined;
3320
+ __v?: any;
3321
+ }>;
3322
+ exchangeId: string;
3323
3323
  strategyId: string | {};
3324
3324
  pod: any;
3325
3325
  trader: Partial<{
@@ -3359,7 +3359,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3359
3359
  balance_dust_level: number;
3360
3360
  } | undefined;
3361
3361
  _id?: string | {} | undefined;
3362
- running?: boolean | undefined;
3363
3362
  plugins?: {
3364
3363
  number_assets?: number | undefined;
3365
3364
  refresh_period?: number | undefined;
@@ -3376,6 +3375,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3376
3375
  exit: number;
3377
3376
  } | undefined;
3378
3377
  cancel_open_orders_on_exit?: boolean | undefined;
3378
+ running?: boolean | undefined;
3379
3379
  tradable_balance_ratio?: number | undefined;
3380
3380
  webhook?: {
3381
3381
  url: string;
@@ -3465,10 +3465,11 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3465
3465
  key: string;
3466
3466
  createdAt: any;
3467
3467
  updatedAt: any;
3468
- "traders/pods": any;
3469
- userId: any;
3470
3468
  connected: boolean;
3471
3469
  which: string;
3470
+ userId: any;
3471
+ strategy: any;
3472
+ "traders/pods": any;
3472
3473
  exchange: any;
3473
3474
  exchangeId: any;
3474
3475
  stake_currency: string;
@@ -3477,7 +3478,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
3477
3478
  handling: string;
3478
3479
  initial_state: string;
3479
3480
  pairlists: any;
3480
- strategy: any;
3481
3481
  strategyId: string | {};
3482
3482
  entry_pricing: {
3483
3483
  price_side?: "ask" | "bid" | "same" | "other" | undefined;