@cryptorobot.ai/client 0.0.14 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +2 -0
- package/lib/client.js +2 -0
- package/lib/configuration.d.ts +2 -0
- package/lib/helpers/deployments.helper.d.ts +2 -1
- package/lib/helpers/logging.helper.d.ts +1 -0
- package/lib/hooks/bootstrap-user-exchanges.d.ts +2 -0
- package/lib/hooks/bootstrap-user-strategies.d.ts +2 -0
- package/lib/services/exchanges/exchanges.schema.d.ts +53 -3
- package/lib/services/messages/messages.schema.d.ts +93 -3
- package/lib/services/strategies/strategies.schema.d.ts +140 -164
- package/lib/services/traders/pods/api/api.schema.d.ts +372 -444
- package/lib/services/traders/pods/pods.schema.d.ts +256 -304
- package/lib/services/traders/traders.schema.d.ts +116 -140
- package/lib/services/users/users.schema.d.ts +8 -0
- package/lib/services/version/version.class.d.ts +20 -0
- package/lib/services/version/version.d.ts +10 -0
- package/lib/services/version/version.shared.d.ts +13 -0
- package/lib/services/version/version.shared.js +13 -0
- package/package.json +10 -3
|
@@ -36,8 +36,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
36
36
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
37
37
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
38
38
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
40
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
41
41
|
}>>;
|
|
42
42
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
43
43
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -120,24 +120,21 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
120
120
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
121
121
|
}>;
|
|
122
122
|
}>>;
|
|
123
|
-
|
|
124
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
125
|
-
|
|
126
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
127
|
-
order_book_top: import("@feathersjs/typebox").
|
|
128
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
123
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
124
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
125
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
126
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
127
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
128
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
129
129
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
130
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
131
|
-
}
|
|
130
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
131
|
+
}>>;
|
|
132
132
|
}>;
|
|
133
|
-
|
|
134
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
139
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
140
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
133
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
134
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
135
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
136
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
137
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
141
138
|
}>;
|
|
142
139
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
143
140
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -226,8 +223,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
226
223
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
227
224
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
228
225
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
229
|
-
|
|
230
|
-
|
|
226
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
227
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
231
228
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
232
229
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
233
230
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -300,8 +297,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
300
297
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
301
298
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
302
299
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
303
|
-
|
|
304
|
-
|
|
300
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
301
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
305
302
|
}>>;
|
|
306
303
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
307
304
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -384,24 +381,21 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
384
381
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
385
382
|
}>;
|
|
386
383
|
}>>;
|
|
387
|
-
|
|
388
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
389
|
-
|
|
390
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
391
|
-
order_book_top: import("@feathersjs/typebox").
|
|
392
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
384
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
385
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
386
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
387
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
388
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
389
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
393
390
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
394
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
395
|
-
}
|
|
391
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
392
|
+
}>>;
|
|
396
393
|
}>;
|
|
397
|
-
|
|
398
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
403
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
404
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
394
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
395
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
396
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
397
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
398
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
405
399
|
}>;
|
|
406
400
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
407
401
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -521,8 +515,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
521
515
|
} | undefined;
|
|
522
516
|
fiat_display_currency?: string | undefined;
|
|
523
517
|
unfilledtimeout?: {
|
|
524
|
-
|
|
525
|
-
|
|
518
|
+
entry: number;
|
|
519
|
+
exit: number;
|
|
526
520
|
} | undefined;
|
|
527
521
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
528
522
|
running?: boolean | undefined;
|
|
@@ -628,24 +622,21 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
628
622
|
initial_state: string;
|
|
629
623
|
pairlists: any;
|
|
630
624
|
strategy: any;
|
|
631
|
-
|
|
632
|
-
price_side
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
check_depth_of_market: {
|
|
625
|
+
entry_pricing: {
|
|
626
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
627
|
+
use_order_book?: boolean | undefined;
|
|
628
|
+
order_book_top?: number | undefined;
|
|
629
|
+
check_depth_of_market?: {
|
|
637
630
|
enabled: boolean;
|
|
638
631
|
bids_to_ask_delta: number;
|
|
639
|
-
};
|
|
632
|
+
} | undefined;
|
|
633
|
+
price_last_balance: number;
|
|
640
634
|
};
|
|
641
|
-
|
|
642
|
-
price_side
|
|
643
|
-
use_order_book
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
exit_sell_signal: boolean;
|
|
647
|
-
exit_profit_only: boolean;
|
|
648
|
-
ignore_roi_if_entry_signal: boolean;
|
|
635
|
+
exit_pricing: {
|
|
636
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
637
|
+
use_order_book?: boolean | undefined;
|
|
638
|
+
order_book_top?: number | undefined;
|
|
639
|
+
price_last_balance: number;
|
|
649
640
|
};
|
|
650
641
|
api_server: {
|
|
651
642
|
password: string;
|
|
@@ -666,17 +657,17 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
666
657
|
}[] | undefined;
|
|
667
658
|
results?: unknown;
|
|
668
659
|
userId?: string | {} | undefined;
|
|
669
|
-
exit_sell_signal?: boolean | undefined;
|
|
670
|
-
exit_profit_only?: boolean | undefined;
|
|
671
660
|
file?: any;
|
|
672
661
|
templateId?: string | {} | undefined;
|
|
673
662
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
663
|
+
exit_sell_signal?: boolean | undefined;
|
|
664
|
+
exit_profit_only?: boolean | undefined;
|
|
674
665
|
exit_profit_offset?: number | undefined;
|
|
675
666
|
timeinforce?: unknown;
|
|
676
667
|
order_types?: {
|
|
677
668
|
stoploss?: string | undefined;
|
|
678
|
-
|
|
679
|
-
|
|
669
|
+
entry?: "Limit" | "Market" | undefined;
|
|
670
|
+
exit?: "Limit" | "Market" | undefined;
|
|
680
671
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
681
672
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
682
673
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -730,8 +721,8 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
730
721
|
} | undefined;
|
|
731
722
|
fiat_display_currency?: string | undefined;
|
|
732
723
|
unfilledtimeout?: {
|
|
733
|
-
|
|
734
|
-
|
|
724
|
+
entry: number;
|
|
725
|
+
exit: number;
|
|
735
726
|
} | undefined;
|
|
736
727
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
737
728
|
running?: boolean | undefined;
|
|
@@ -837,24 +828,21 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
837
828
|
initial_state: string;
|
|
838
829
|
pairlists: any;
|
|
839
830
|
strategy: any;
|
|
840
|
-
|
|
841
|
-
price_side
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
check_depth_of_market: {
|
|
831
|
+
entry_pricing: {
|
|
832
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
833
|
+
use_order_book?: boolean | undefined;
|
|
834
|
+
order_book_top?: number | undefined;
|
|
835
|
+
check_depth_of_market?: {
|
|
846
836
|
enabled: boolean;
|
|
847
837
|
bids_to_ask_delta: number;
|
|
848
|
-
};
|
|
838
|
+
} | undefined;
|
|
839
|
+
price_last_balance: number;
|
|
849
840
|
};
|
|
850
|
-
|
|
851
|
-
price_side
|
|
852
|
-
use_order_book
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
exit_sell_signal: boolean;
|
|
856
|
-
exit_profit_only: boolean;
|
|
857
|
-
ignore_roi_if_entry_signal: boolean;
|
|
841
|
+
exit_pricing: {
|
|
842
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
843
|
+
use_order_book?: boolean | undefined;
|
|
844
|
+
order_book_top?: number | undefined;
|
|
845
|
+
price_last_balance: number;
|
|
858
846
|
};
|
|
859
847
|
api_server: {
|
|
860
848
|
password: string;
|
|
@@ -954,8 +942,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
954
942
|
} | undefined;
|
|
955
943
|
fiat_display_currency?: string | undefined;
|
|
956
944
|
unfilledtimeout?: {
|
|
957
|
-
|
|
958
|
-
|
|
945
|
+
entry: number;
|
|
946
|
+
exit: number;
|
|
959
947
|
} | undefined;
|
|
960
948
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
961
949
|
running?: boolean | undefined;
|
|
@@ -1061,24 +1049,21 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1061
1049
|
initial_state: string;
|
|
1062
1050
|
pairlists: any;
|
|
1063
1051
|
strategy: any;
|
|
1064
|
-
|
|
1065
|
-
price_side
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
check_depth_of_market: {
|
|
1052
|
+
entry_pricing: {
|
|
1053
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1054
|
+
use_order_book?: boolean | undefined;
|
|
1055
|
+
order_book_top?: number | undefined;
|
|
1056
|
+
check_depth_of_market?: {
|
|
1070
1057
|
enabled: boolean;
|
|
1071
1058
|
bids_to_ask_delta: number;
|
|
1072
|
-
};
|
|
1059
|
+
} | undefined;
|
|
1060
|
+
price_last_balance: number;
|
|
1073
1061
|
};
|
|
1074
|
-
|
|
1075
|
-
price_side
|
|
1076
|
-
use_order_book
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
exit_sell_signal: boolean;
|
|
1080
|
-
exit_profit_only: boolean;
|
|
1081
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1062
|
+
exit_pricing: {
|
|
1063
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1064
|
+
use_order_book?: boolean | undefined;
|
|
1065
|
+
order_book_top?: number | undefined;
|
|
1066
|
+
price_last_balance: number;
|
|
1082
1067
|
};
|
|
1083
1068
|
api_server: {
|
|
1084
1069
|
password: string;
|
|
@@ -1099,17 +1084,17 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1099
1084
|
}[] | undefined;
|
|
1100
1085
|
results?: unknown;
|
|
1101
1086
|
userId?: string | {} | undefined;
|
|
1102
|
-
exit_sell_signal?: boolean | undefined;
|
|
1103
|
-
exit_profit_only?: boolean | undefined;
|
|
1104
1087
|
file?: any;
|
|
1105
1088
|
templateId?: string | {} | undefined;
|
|
1106
1089
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1090
|
+
exit_sell_signal?: boolean | undefined;
|
|
1091
|
+
exit_profit_only?: boolean | undefined;
|
|
1107
1092
|
exit_profit_offset?: number | undefined;
|
|
1108
1093
|
timeinforce?: unknown;
|
|
1109
1094
|
order_types?: {
|
|
1110
1095
|
stoploss?: string | undefined;
|
|
1111
|
-
|
|
1112
|
-
|
|
1096
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1097
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1113
1098
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1114
1099
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1115
1100
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1163,8 +1148,8 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1163
1148
|
} | undefined;
|
|
1164
1149
|
fiat_display_currency?: string | undefined;
|
|
1165
1150
|
unfilledtimeout?: {
|
|
1166
|
-
|
|
1167
|
-
|
|
1151
|
+
entry: number;
|
|
1152
|
+
exit: number;
|
|
1168
1153
|
} | undefined;
|
|
1169
1154
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1170
1155
|
running?: boolean | undefined;
|
|
@@ -1270,24 +1255,21 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1270
1255
|
initial_state: string;
|
|
1271
1256
|
pairlists: any;
|
|
1272
1257
|
strategy: any;
|
|
1273
|
-
|
|
1274
|
-
price_side
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
check_depth_of_market: {
|
|
1258
|
+
entry_pricing: {
|
|
1259
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1260
|
+
use_order_book?: boolean | undefined;
|
|
1261
|
+
order_book_top?: number | undefined;
|
|
1262
|
+
check_depth_of_market?: {
|
|
1279
1263
|
enabled: boolean;
|
|
1280
1264
|
bids_to_ask_delta: number;
|
|
1281
|
-
};
|
|
1265
|
+
} | undefined;
|
|
1266
|
+
price_last_balance: number;
|
|
1282
1267
|
};
|
|
1283
|
-
|
|
1284
|
-
price_side
|
|
1285
|
-
use_order_book
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
exit_sell_signal: boolean;
|
|
1289
|
-
exit_profit_only: boolean;
|
|
1290
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1268
|
+
exit_pricing: {
|
|
1269
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1270
|
+
use_order_book?: boolean | undefined;
|
|
1271
|
+
order_book_top?: number | undefined;
|
|
1272
|
+
price_last_balance: number;
|
|
1291
1273
|
};
|
|
1292
1274
|
api_server: {
|
|
1293
1275
|
password: string;
|
|
@@ -1337,8 +1319,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1337
1319
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1338
1320
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1339
1321
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1340
|
-
|
|
1341
|
-
|
|
1322
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
1323
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
1342
1324
|
}>>;
|
|
1343
1325
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1344
1326
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -1421,24 +1403,21 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1421
1403
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
1422
1404
|
}>;
|
|
1423
1405
|
}>>;
|
|
1424
|
-
|
|
1425
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
1426
|
-
|
|
1427
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
1428
|
-
order_book_top: import("@feathersjs/typebox").
|
|
1429
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
1406
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
1407
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
1408
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
1409
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1410
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1411
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1430
1412
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1431
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
1432
|
-
}
|
|
1413
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
1414
|
+
}>>;
|
|
1433
1415
|
}>;
|
|
1434
|
-
|
|
1435
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
1440
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
1441
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
1416
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
1417
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
1418
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
1419
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1420
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1442
1421
|
}>;
|
|
1443
1422
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
1444
1423
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -1527,8 +1506,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1527
1506
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1528
1507
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
1529
1508
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1530
|
-
|
|
1531
|
-
|
|
1509
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1510
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1532
1511
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1533
1512
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
1534
1513
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -1601,8 +1580,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1601
1580
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1602
1581
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1603
1582
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1604
|
-
|
|
1605
|
-
|
|
1583
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
1584
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
1606
1585
|
}>>;
|
|
1607
1586
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1608
1587
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -1685,24 +1664,21 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1685
1664
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
1686
1665
|
}>;
|
|
1687
1666
|
}>>;
|
|
1688
|
-
|
|
1689
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
1690
|
-
|
|
1691
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
1692
|
-
order_book_top: import("@feathersjs/typebox").
|
|
1693
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
1667
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
1668
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
1669
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
1670
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1671
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1672
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1694
1673
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1695
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
1696
|
-
}
|
|
1674
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
1675
|
+
}>>;
|
|
1697
1676
|
}>;
|
|
1698
|
-
|
|
1699
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
1704
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
1705
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
1677
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
1678
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
1679
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
1680
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1681
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1706
1682
|
}>;
|
|
1707
1683
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
1708
1684
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -1822,8 +1798,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1822
1798
|
} | undefined;
|
|
1823
1799
|
fiat_display_currency?: string | undefined;
|
|
1824
1800
|
unfilledtimeout?: {
|
|
1825
|
-
|
|
1826
|
-
|
|
1801
|
+
entry: number;
|
|
1802
|
+
exit: number;
|
|
1827
1803
|
} | undefined;
|
|
1828
1804
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1829
1805
|
running?: boolean | undefined;
|
|
@@ -1929,24 +1905,21 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1929
1905
|
initial_state: string;
|
|
1930
1906
|
pairlists: any;
|
|
1931
1907
|
strategy: any;
|
|
1932
|
-
|
|
1933
|
-
price_side
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
check_depth_of_market: {
|
|
1908
|
+
entry_pricing: {
|
|
1909
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1910
|
+
use_order_book?: boolean | undefined;
|
|
1911
|
+
order_book_top?: number | undefined;
|
|
1912
|
+
check_depth_of_market?: {
|
|
1938
1913
|
enabled: boolean;
|
|
1939
1914
|
bids_to_ask_delta: number;
|
|
1940
|
-
};
|
|
1915
|
+
} | undefined;
|
|
1916
|
+
price_last_balance: number;
|
|
1941
1917
|
};
|
|
1942
|
-
|
|
1943
|
-
price_side
|
|
1944
|
-
use_order_book
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
exit_sell_signal: boolean;
|
|
1948
|
-
exit_profit_only: boolean;
|
|
1949
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1918
|
+
exit_pricing: {
|
|
1919
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1920
|
+
use_order_book?: boolean | undefined;
|
|
1921
|
+
order_book_top?: number | undefined;
|
|
1922
|
+
price_last_balance: number;
|
|
1950
1923
|
};
|
|
1951
1924
|
api_server: {
|
|
1952
1925
|
password: string;
|
|
@@ -1967,17 +1940,17 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1967
1940
|
}[] | undefined;
|
|
1968
1941
|
results?: unknown;
|
|
1969
1942
|
userId?: string | {} | undefined;
|
|
1970
|
-
exit_sell_signal?: boolean | undefined;
|
|
1971
|
-
exit_profit_only?: boolean | undefined;
|
|
1972
1943
|
file?: any;
|
|
1973
1944
|
templateId?: string | {} | undefined;
|
|
1974
1945
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1946
|
+
exit_sell_signal?: boolean | undefined;
|
|
1947
|
+
exit_profit_only?: boolean | undefined;
|
|
1975
1948
|
exit_profit_offset?: number | undefined;
|
|
1976
1949
|
timeinforce?: unknown;
|
|
1977
1950
|
order_types?: {
|
|
1978
1951
|
stoploss?: string | undefined;
|
|
1979
|
-
|
|
1980
|
-
|
|
1952
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1953
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1981
1954
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1982
1955
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1983
1956
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -2031,8 +2004,8 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2031
2004
|
} | undefined;
|
|
2032
2005
|
fiat_display_currency?: string | undefined;
|
|
2033
2006
|
unfilledtimeout?: {
|
|
2034
|
-
|
|
2035
|
-
|
|
2007
|
+
entry: number;
|
|
2008
|
+
exit: number;
|
|
2036
2009
|
} | undefined;
|
|
2037
2010
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2038
2011
|
running?: boolean | undefined;
|
|
@@ -2138,24 +2111,21 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2138
2111
|
initial_state: string;
|
|
2139
2112
|
pairlists: any;
|
|
2140
2113
|
strategy: any;
|
|
2141
|
-
|
|
2142
|
-
price_side
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
check_depth_of_market: {
|
|
2114
|
+
entry_pricing: {
|
|
2115
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2116
|
+
use_order_book?: boolean | undefined;
|
|
2117
|
+
order_book_top?: number | undefined;
|
|
2118
|
+
check_depth_of_market?: {
|
|
2147
2119
|
enabled: boolean;
|
|
2148
2120
|
bids_to_ask_delta: number;
|
|
2149
|
-
};
|
|
2121
|
+
} | undefined;
|
|
2122
|
+
price_last_balance: number;
|
|
2150
2123
|
};
|
|
2151
|
-
|
|
2152
|
-
price_side
|
|
2153
|
-
use_order_book
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
exit_sell_signal: boolean;
|
|
2157
|
-
exit_profit_only: boolean;
|
|
2158
|
-
ignore_roi_if_entry_signal: boolean;
|
|
2124
|
+
exit_pricing: {
|
|
2125
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2126
|
+
use_order_book?: boolean | undefined;
|
|
2127
|
+
order_book_top?: number | undefined;
|
|
2128
|
+
price_last_balance: number;
|
|
2159
2129
|
};
|
|
2160
2130
|
api_server: {
|
|
2161
2131
|
password: string;
|
|
@@ -2205,8 +2175,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2205
2175
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2206
2176
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2207
2177
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2208
|
-
|
|
2209
|
-
|
|
2178
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
2179
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
2210
2180
|
}>>;
|
|
2211
2181
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2212
2182
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2289,24 +2259,21 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2289
2259
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
2290
2260
|
}>;
|
|
2291
2261
|
}>>;
|
|
2292
|
-
|
|
2293
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
2294
|
-
|
|
2295
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
2296
|
-
order_book_top: import("@feathersjs/typebox").
|
|
2297
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
2262
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
2263
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
2264
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2265
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2266
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2267
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2298
2268
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2299
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
2300
|
-
}
|
|
2269
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
2270
|
+
}>>;
|
|
2301
2271
|
}>;
|
|
2302
|
-
|
|
2303
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
2308
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
2309
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
2272
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
2273
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
2274
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2275
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2276
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2310
2277
|
}>;
|
|
2311
2278
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
2312
2279
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -2395,8 +2362,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2395
2362
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2396
2363
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
2397
2364
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2398
|
-
|
|
2399
|
-
|
|
2365
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2366
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2400
2367
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2401
2368
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2402
2369
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -2469,8 +2436,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2469
2436
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2470
2437
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2471
2438
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2472
|
-
|
|
2473
|
-
|
|
2439
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
2440
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
2474
2441
|
}>>;
|
|
2475
2442
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2476
2443
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2553,24 +2520,21 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2553
2520
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
2554
2521
|
}>;
|
|
2555
2522
|
}>>;
|
|
2556
|
-
|
|
2557
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
2558
|
-
|
|
2559
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
2560
|
-
order_book_top: import("@feathersjs/typebox").
|
|
2561
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
2523
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
2524
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
2525
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2526
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2527
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2528
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2562
2529
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2563
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
2564
|
-
}
|
|
2530
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
2531
|
+
}>>;
|
|
2565
2532
|
}>;
|
|
2566
|
-
|
|
2567
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
2572
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
2573
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
2533
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
2534
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
2535
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2536
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2537
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2574
2538
|
}>;
|
|
2575
2539
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
2576
2540
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -2690,8 +2654,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2690
2654
|
} | undefined;
|
|
2691
2655
|
fiat_display_currency?: string | undefined;
|
|
2692
2656
|
unfilledtimeout?: {
|
|
2693
|
-
|
|
2694
|
-
|
|
2657
|
+
entry: number;
|
|
2658
|
+
exit: number;
|
|
2695
2659
|
} | undefined;
|
|
2696
2660
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2697
2661
|
running?: boolean | undefined;
|
|
@@ -2797,24 +2761,21 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2797
2761
|
initial_state: string;
|
|
2798
2762
|
pairlists: any;
|
|
2799
2763
|
strategy: any;
|
|
2800
|
-
|
|
2801
|
-
price_side
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
check_depth_of_market: {
|
|
2764
|
+
entry_pricing: {
|
|
2765
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2766
|
+
use_order_book?: boolean | undefined;
|
|
2767
|
+
order_book_top?: number | undefined;
|
|
2768
|
+
check_depth_of_market?: {
|
|
2806
2769
|
enabled: boolean;
|
|
2807
2770
|
bids_to_ask_delta: number;
|
|
2808
|
-
};
|
|
2771
|
+
} | undefined;
|
|
2772
|
+
price_last_balance: number;
|
|
2809
2773
|
};
|
|
2810
|
-
|
|
2811
|
-
price_side
|
|
2812
|
-
use_order_book
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
exit_sell_signal: boolean;
|
|
2816
|
-
exit_profit_only: boolean;
|
|
2817
|
-
ignore_roi_if_entry_signal: boolean;
|
|
2774
|
+
exit_pricing: {
|
|
2775
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2776
|
+
use_order_book?: boolean | undefined;
|
|
2777
|
+
order_book_top?: number | undefined;
|
|
2778
|
+
price_last_balance: number;
|
|
2818
2779
|
};
|
|
2819
2780
|
api_server: {
|
|
2820
2781
|
password: string;
|
|
@@ -2835,17 +2796,17 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2835
2796
|
}[] | undefined;
|
|
2836
2797
|
results?: unknown;
|
|
2837
2798
|
userId?: string | {} | undefined;
|
|
2838
|
-
exit_sell_signal?: boolean | undefined;
|
|
2839
|
-
exit_profit_only?: boolean | undefined;
|
|
2840
2799
|
file?: any;
|
|
2841
2800
|
templateId?: string | {} | undefined;
|
|
2842
2801
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2802
|
+
exit_sell_signal?: boolean | undefined;
|
|
2803
|
+
exit_profit_only?: boolean | undefined;
|
|
2843
2804
|
exit_profit_offset?: number | undefined;
|
|
2844
2805
|
timeinforce?: unknown;
|
|
2845
2806
|
order_types?: {
|
|
2846
2807
|
stoploss?: string | undefined;
|
|
2847
|
-
|
|
2848
|
-
|
|
2808
|
+
entry?: "Limit" | "Market" | undefined;
|
|
2809
|
+
exit?: "Limit" | "Market" | undefined;
|
|
2849
2810
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
2850
2811
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
2851
2812
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -2899,8 +2860,8 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2899
2860
|
} | undefined;
|
|
2900
2861
|
fiat_display_currency?: string | undefined;
|
|
2901
2862
|
unfilledtimeout?: {
|
|
2902
|
-
|
|
2903
|
-
|
|
2863
|
+
entry: number;
|
|
2864
|
+
exit: number;
|
|
2904
2865
|
} | undefined;
|
|
2905
2866
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2906
2867
|
running?: boolean | undefined;
|
|
@@ -3006,24 +2967,21 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
3006
2967
|
initial_state: string;
|
|
3007
2968
|
pairlists: any;
|
|
3008
2969
|
strategy: any;
|
|
3009
|
-
|
|
3010
|
-
price_side
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
check_depth_of_market: {
|
|
2970
|
+
entry_pricing: {
|
|
2971
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2972
|
+
use_order_book?: boolean | undefined;
|
|
2973
|
+
order_book_top?: number | undefined;
|
|
2974
|
+
check_depth_of_market?: {
|
|
3015
2975
|
enabled: boolean;
|
|
3016
2976
|
bids_to_ask_delta: number;
|
|
3017
|
-
};
|
|
2977
|
+
} | undefined;
|
|
2978
|
+
price_last_balance: number;
|
|
3018
2979
|
};
|
|
3019
|
-
|
|
3020
|
-
price_side
|
|
3021
|
-
use_order_book
|
|
3022
|
-
|
|
3023
|
-
|
|
3024
|
-
exit_sell_signal: boolean;
|
|
3025
|
-
exit_profit_only: boolean;
|
|
3026
|
-
ignore_roi_if_entry_signal: boolean;
|
|
2980
|
+
exit_pricing: {
|
|
2981
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2982
|
+
use_order_book?: boolean | undefined;
|
|
2983
|
+
order_book_top?: number | undefined;
|
|
2984
|
+
price_last_balance: number;
|
|
3027
2985
|
};
|
|
3028
2986
|
api_server: {
|
|
3029
2987
|
password: string;
|
|
@@ -3073,8 +3031,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3073
3031
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3074
3032
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3075
3033
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3076
|
-
|
|
3077
|
-
|
|
3034
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
3035
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
3078
3036
|
}>>;
|
|
3079
3037
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3080
3038
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -3157,24 +3115,21 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3157
3115
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
3158
3116
|
}>;
|
|
3159
3117
|
}>>;
|
|
3160
|
-
|
|
3161
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
3162
|
-
|
|
3163
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
3164
|
-
order_book_top: import("@feathersjs/typebox").
|
|
3165
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
3118
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
3119
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
3120
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3121
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3122
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3123
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3166
3124
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3167
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
3168
|
-
}
|
|
3125
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
3126
|
+
}>>;
|
|
3169
3127
|
}>;
|
|
3170
|
-
|
|
3171
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
3176
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
3177
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
3128
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
3129
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
3130
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3131
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3132
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3178
3133
|
}>;
|
|
3179
3134
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
3180
3135
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -3263,8 +3218,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3263
3218
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3264
3219
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
3265
3220
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3266
|
-
|
|
3267
|
-
|
|
3221
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3222
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3268
3223
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3269
3224
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3270
3225
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -3337,8 +3292,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3337
3292
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3338
3293
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3339
3294
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3340
|
-
|
|
3341
|
-
|
|
3295
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
3296
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
3342
3297
|
}>>;
|
|
3343
3298
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3344
3299
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -3421,24 +3376,21 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3421
3376
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
3422
3377
|
}>;
|
|
3423
3378
|
}>>;
|
|
3424
|
-
|
|
3425
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
3426
|
-
|
|
3427
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
3428
|
-
order_book_top: import("@feathersjs/typebox").
|
|
3429
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
3379
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
3380
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
3381
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3382
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3383
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3384
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3430
3385
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3431
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
3432
|
-
}
|
|
3386
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
3387
|
+
}>>;
|
|
3433
3388
|
}>;
|
|
3434
|
-
|
|
3435
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
3436
|
-
|
|
3437
|
-
|
|
3438
|
-
|
|
3439
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
3440
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
3441
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
3389
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
3390
|
+
price_side: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ask">, import("@feathersjs/typebox").TLiteral<"bid">, import("@feathersjs/typebox").TLiteral<"same">, import("@feathersjs/typebox").TLiteral<"other">]>>;
|
|
3391
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3392
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3393
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3442
3394
|
}>;
|
|
3443
3395
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
3444
3396
|
enabled: import("@feathersjs/typebox").TBoolean;
|