@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
|
@@ -37,8 +37,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
37
37
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
38
38
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
39
39
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
40
|
-
|
|
41
|
-
|
|
40
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
41
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
42
42
|
}>>;
|
|
43
43
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
44
44
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -121,24 +121,21 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
121
121
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
122
122
|
}>;
|
|
123
123
|
}>>;
|
|
124
|
-
|
|
125
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
126
|
-
|
|
127
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
128
|
-
order_book_top: import("@feathersjs/typebox").
|
|
129
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
124
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
125
|
+
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">]>>;
|
|
126
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
127
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
128
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
129
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
130
130
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
131
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
132
|
-
}
|
|
131
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
132
|
+
}>>;
|
|
133
133
|
}>;
|
|
134
|
-
|
|
135
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
140
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
141
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
134
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
135
|
+
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">]>>;
|
|
136
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
137
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
138
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
142
139
|
}>;
|
|
143
140
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
144
141
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -191,8 +188,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
191
188
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
192
189
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
193
190
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
194
|
-
|
|
195
|
-
|
|
191
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
192
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
196
193
|
}>>;
|
|
197
194
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
198
195
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -275,24 +272,21 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
275
272
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
276
273
|
}>;
|
|
277
274
|
}>>;
|
|
278
|
-
|
|
279
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
280
|
-
|
|
281
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
282
|
-
order_book_top: import("@feathersjs/typebox").
|
|
283
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
275
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
276
|
+
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">]>>;
|
|
277
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
278
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
279
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
280
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
284
281
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
285
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
286
|
-
}
|
|
282
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
283
|
+
}>>;
|
|
287
284
|
}>;
|
|
288
|
-
|
|
289
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
294
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
295
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
285
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
286
|
+
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">]>>;
|
|
287
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
288
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
289
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
296
290
|
}>;
|
|
297
291
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
298
292
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -381,8 +375,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
381
375
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
382
376
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
383
377
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
384
|
-
|
|
385
|
-
|
|
378
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
379
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
386
380
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
387
381
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
388
382
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -455,8 +449,8 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
455
449
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
456
450
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
457
451
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
458
|
-
|
|
459
|
-
|
|
452
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
453
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
460
454
|
}>>;
|
|
461
455
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
462
456
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -539,24 +533,21 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
539
533
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
540
534
|
}>;
|
|
541
535
|
}>>;
|
|
542
|
-
|
|
543
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
544
|
-
|
|
545
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
546
|
-
order_book_top: import("@feathersjs/typebox").
|
|
547
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
536
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
537
|
+
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">]>>;
|
|
538
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
539
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
540
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
541
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
548
542
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
549
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
550
|
-
}
|
|
543
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
544
|
+
}>>;
|
|
551
545
|
}>;
|
|
552
|
-
|
|
553
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
558
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
559
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
546
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
547
|
+
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">]>>;
|
|
548
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
549
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
550
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
560
551
|
}>;
|
|
561
552
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
562
553
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -683,8 +674,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
683
674
|
} | undefined;
|
|
684
675
|
fiat_display_currency?: string | undefined;
|
|
685
676
|
unfilledtimeout?: {
|
|
686
|
-
|
|
687
|
-
|
|
677
|
+
entry: number;
|
|
678
|
+
exit: number;
|
|
688
679
|
} | undefined;
|
|
689
680
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
690
681
|
running?: boolean | undefined;
|
|
@@ -790,24 +781,21 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
790
781
|
initial_state: string;
|
|
791
782
|
pairlists: any;
|
|
792
783
|
strategy: any;
|
|
793
|
-
|
|
794
|
-
price_side
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
check_depth_of_market: {
|
|
784
|
+
entry_pricing: {
|
|
785
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
786
|
+
use_order_book?: boolean | undefined;
|
|
787
|
+
order_book_top?: number | undefined;
|
|
788
|
+
check_depth_of_market?: {
|
|
799
789
|
enabled: boolean;
|
|
800
790
|
bids_to_ask_delta: number;
|
|
801
|
-
};
|
|
791
|
+
} | undefined;
|
|
792
|
+
price_last_balance: number;
|
|
802
793
|
};
|
|
803
|
-
|
|
804
|
-
price_side
|
|
805
|
-
use_order_book
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
exit_sell_signal: boolean;
|
|
809
|
-
exit_profit_only: boolean;
|
|
810
|
-
ignore_roi_if_entry_signal: boolean;
|
|
794
|
+
exit_pricing: {
|
|
795
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
796
|
+
use_order_book?: boolean | undefined;
|
|
797
|
+
order_book_top?: number | undefined;
|
|
798
|
+
price_last_balance: number;
|
|
811
799
|
};
|
|
812
800
|
api_server: {
|
|
813
801
|
password: string;
|
|
@@ -828,17 +816,17 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
828
816
|
}[] | undefined;
|
|
829
817
|
results?: unknown;
|
|
830
818
|
userId?: string | {} | undefined;
|
|
831
|
-
exit_sell_signal?: boolean | undefined;
|
|
832
|
-
exit_profit_only?: boolean | undefined;
|
|
833
819
|
file?: any;
|
|
834
820
|
templateId?: string | {} | undefined;
|
|
835
821
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
822
|
+
exit_sell_signal?: boolean | undefined;
|
|
823
|
+
exit_profit_only?: boolean | undefined;
|
|
836
824
|
exit_profit_offset?: number | undefined;
|
|
837
825
|
timeinforce?: unknown;
|
|
838
826
|
order_types?: {
|
|
839
827
|
stoploss?: string | undefined;
|
|
840
|
-
|
|
841
|
-
|
|
828
|
+
entry?: "Limit" | "Market" | undefined;
|
|
829
|
+
exit?: "Limit" | "Market" | undefined;
|
|
842
830
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
843
831
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
844
832
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -892,8 +880,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
892
880
|
} | undefined;
|
|
893
881
|
fiat_display_currency?: string | undefined;
|
|
894
882
|
unfilledtimeout?: {
|
|
895
|
-
|
|
896
|
-
|
|
883
|
+
entry: number;
|
|
884
|
+
exit: number;
|
|
897
885
|
} | undefined;
|
|
898
886
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
899
887
|
running?: boolean | undefined;
|
|
@@ -999,24 +987,21 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
999
987
|
initial_state: string;
|
|
1000
988
|
pairlists: any;
|
|
1001
989
|
strategy: any;
|
|
1002
|
-
|
|
1003
|
-
price_side
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
check_depth_of_market: {
|
|
990
|
+
entry_pricing: {
|
|
991
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
992
|
+
use_order_book?: boolean | undefined;
|
|
993
|
+
order_book_top?: number | undefined;
|
|
994
|
+
check_depth_of_market?: {
|
|
1008
995
|
enabled: boolean;
|
|
1009
996
|
bids_to_ask_delta: number;
|
|
1010
|
-
};
|
|
997
|
+
} | undefined;
|
|
998
|
+
price_last_balance: number;
|
|
1011
999
|
};
|
|
1012
|
-
|
|
1013
|
-
price_side
|
|
1014
|
-
use_order_book
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
exit_sell_signal: boolean;
|
|
1018
|
-
exit_profit_only: boolean;
|
|
1019
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1000
|
+
exit_pricing: {
|
|
1001
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1002
|
+
use_order_book?: boolean | undefined;
|
|
1003
|
+
order_book_top?: number | undefined;
|
|
1004
|
+
price_last_balance: number;
|
|
1020
1005
|
};
|
|
1021
1006
|
api_server: {
|
|
1022
1007
|
password: string;
|
|
@@ -1044,8 +1029,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1044
1029
|
} | undefined;
|
|
1045
1030
|
fiat_display_currency?: string | undefined;
|
|
1046
1031
|
unfilledtimeout?: {
|
|
1047
|
-
|
|
1048
|
-
|
|
1032
|
+
entry: number;
|
|
1033
|
+
exit: number;
|
|
1049
1034
|
} | undefined;
|
|
1050
1035
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1051
1036
|
running?: boolean | undefined;
|
|
@@ -1151,24 +1136,21 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1151
1136
|
initial_state: string;
|
|
1152
1137
|
pairlists: any;
|
|
1153
1138
|
strategy: any;
|
|
1154
|
-
|
|
1155
|
-
price_side
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
check_depth_of_market: {
|
|
1139
|
+
entry_pricing: {
|
|
1140
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1141
|
+
use_order_book?: boolean | undefined;
|
|
1142
|
+
order_book_top?: number | undefined;
|
|
1143
|
+
check_depth_of_market?: {
|
|
1160
1144
|
enabled: boolean;
|
|
1161
1145
|
bids_to_ask_delta: number;
|
|
1162
|
-
};
|
|
1146
|
+
} | undefined;
|
|
1147
|
+
price_last_balance: number;
|
|
1163
1148
|
};
|
|
1164
|
-
|
|
1165
|
-
price_side
|
|
1166
|
-
use_order_book
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
exit_sell_signal: boolean;
|
|
1170
|
-
exit_profit_only: boolean;
|
|
1171
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1149
|
+
exit_pricing: {
|
|
1150
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1151
|
+
use_order_book?: boolean | undefined;
|
|
1152
|
+
order_book_top?: number | undefined;
|
|
1153
|
+
price_last_balance: number;
|
|
1172
1154
|
};
|
|
1173
1155
|
api_server: {
|
|
1174
1156
|
password: string;
|
|
@@ -1276,8 +1258,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1276
1258
|
} | undefined;
|
|
1277
1259
|
fiat_display_currency?: string | undefined;
|
|
1278
1260
|
unfilledtimeout?: {
|
|
1279
|
-
|
|
1280
|
-
|
|
1261
|
+
entry: number;
|
|
1262
|
+
exit: number;
|
|
1281
1263
|
} | undefined;
|
|
1282
1264
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1283
1265
|
running?: boolean | undefined;
|
|
@@ -1383,24 +1365,21 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1383
1365
|
initial_state: string;
|
|
1384
1366
|
pairlists: any;
|
|
1385
1367
|
strategy: any;
|
|
1386
|
-
|
|
1387
|
-
price_side
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
check_depth_of_market: {
|
|
1368
|
+
entry_pricing: {
|
|
1369
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1370
|
+
use_order_book?: boolean | undefined;
|
|
1371
|
+
order_book_top?: number | undefined;
|
|
1372
|
+
check_depth_of_market?: {
|
|
1392
1373
|
enabled: boolean;
|
|
1393
1374
|
bids_to_ask_delta: number;
|
|
1394
|
-
};
|
|
1375
|
+
} | undefined;
|
|
1376
|
+
price_last_balance: number;
|
|
1395
1377
|
};
|
|
1396
|
-
|
|
1397
|
-
price_side
|
|
1398
|
-
use_order_book
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
exit_sell_signal: boolean;
|
|
1402
|
-
exit_profit_only: boolean;
|
|
1403
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1378
|
+
exit_pricing: {
|
|
1379
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1380
|
+
use_order_book?: boolean | undefined;
|
|
1381
|
+
order_book_top?: number | undefined;
|
|
1382
|
+
price_last_balance: number;
|
|
1404
1383
|
};
|
|
1405
1384
|
api_server: {
|
|
1406
1385
|
password: string;
|
|
@@ -1421,17 +1400,17 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1421
1400
|
}[] | undefined;
|
|
1422
1401
|
results?: unknown;
|
|
1423
1402
|
userId?: string | {} | undefined;
|
|
1424
|
-
exit_sell_signal?: boolean | undefined;
|
|
1425
|
-
exit_profit_only?: boolean | undefined;
|
|
1426
1403
|
file?: any;
|
|
1427
1404
|
templateId?: string | {} | undefined;
|
|
1428
1405
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1406
|
+
exit_sell_signal?: boolean | undefined;
|
|
1407
|
+
exit_profit_only?: boolean | undefined;
|
|
1429
1408
|
exit_profit_offset?: number | undefined;
|
|
1430
1409
|
timeinforce?: unknown;
|
|
1431
1410
|
order_types?: {
|
|
1432
1411
|
stoploss?: string | undefined;
|
|
1433
|
-
|
|
1434
|
-
|
|
1412
|
+
entry?: "Limit" | "Market" | undefined;
|
|
1413
|
+
exit?: "Limit" | "Market" | undefined;
|
|
1435
1414
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1436
1415
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1437
1416
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -1485,8 +1464,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1485
1464
|
} | undefined;
|
|
1486
1465
|
fiat_display_currency?: string | undefined;
|
|
1487
1466
|
unfilledtimeout?: {
|
|
1488
|
-
|
|
1489
|
-
|
|
1467
|
+
entry: number;
|
|
1468
|
+
exit: number;
|
|
1490
1469
|
} | undefined;
|
|
1491
1470
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1492
1471
|
running?: boolean | undefined;
|
|
@@ -1592,24 +1571,21 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1592
1571
|
initial_state: string;
|
|
1593
1572
|
pairlists: any;
|
|
1594
1573
|
strategy: any;
|
|
1595
|
-
|
|
1596
|
-
price_side
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
check_depth_of_market: {
|
|
1574
|
+
entry_pricing: {
|
|
1575
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1576
|
+
use_order_book?: boolean | undefined;
|
|
1577
|
+
order_book_top?: number | undefined;
|
|
1578
|
+
check_depth_of_market?: {
|
|
1601
1579
|
enabled: boolean;
|
|
1602
1580
|
bids_to_ask_delta: number;
|
|
1603
|
-
};
|
|
1581
|
+
} | undefined;
|
|
1582
|
+
price_last_balance: number;
|
|
1604
1583
|
};
|
|
1605
|
-
|
|
1606
|
-
price_side
|
|
1607
|
-
use_order_book
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
exit_sell_signal: boolean;
|
|
1611
|
-
exit_profit_only: boolean;
|
|
1612
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1584
|
+
exit_pricing: {
|
|
1585
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1586
|
+
use_order_book?: boolean | undefined;
|
|
1587
|
+
order_book_top?: number | undefined;
|
|
1588
|
+
price_last_balance: number;
|
|
1613
1589
|
};
|
|
1614
1590
|
api_server: {
|
|
1615
1591
|
password: string;
|
|
@@ -1637,8 +1613,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1637
1613
|
} | undefined;
|
|
1638
1614
|
fiat_display_currency?: string | undefined;
|
|
1639
1615
|
unfilledtimeout?: {
|
|
1640
|
-
|
|
1641
|
-
|
|
1616
|
+
entry: number;
|
|
1617
|
+
exit: number;
|
|
1642
1618
|
} | undefined;
|
|
1643
1619
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
1644
1620
|
running?: boolean | undefined;
|
|
@@ -1744,24 +1720,21 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1744
1720
|
initial_state: string;
|
|
1745
1721
|
pairlists: any;
|
|
1746
1722
|
strategy: any;
|
|
1747
|
-
|
|
1748
|
-
price_side
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
check_depth_of_market: {
|
|
1723
|
+
entry_pricing: {
|
|
1724
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1725
|
+
use_order_book?: boolean | undefined;
|
|
1726
|
+
order_book_top?: number | undefined;
|
|
1727
|
+
check_depth_of_market?: {
|
|
1753
1728
|
enabled: boolean;
|
|
1754
1729
|
bids_to_ask_delta: number;
|
|
1755
|
-
};
|
|
1730
|
+
} | undefined;
|
|
1731
|
+
price_last_balance: number;
|
|
1756
1732
|
};
|
|
1757
|
-
|
|
1758
|
-
price_side
|
|
1759
|
-
use_order_book
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
exit_sell_signal: boolean;
|
|
1763
|
-
exit_profit_only: boolean;
|
|
1764
|
-
ignore_roi_if_entry_signal: boolean;
|
|
1733
|
+
exit_pricing: {
|
|
1734
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1735
|
+
use_order_book?: boolean | undefined;
|
|
1736
|
+
order_book_top?: number | undefined;
|
|
1737
|
+
price_last_balance: number;
|
|
1765
1738
|
};
|
|
1766
1739
|
api_server: {
|
|
1767
1740
|
password: string;
|
|
@@ -1818,8 +1791,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
1818
1791
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1819
1792
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1820
1793
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1821
|
-
|
|
1822
|
-
|
|
1794
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
1795
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
1823
1796
|
}>>;
|
|
1824
1797
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1825
1798
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -1902,24 +1875,21 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
1902
1875
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
1903
1876
|
}>;
|
|
1904
1877
|
}>>;
|
|
1905
|
-
|
|
1906
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
1907
|
-
|
|
1908
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
1909
|
-
order_book_top: import("@feathersjs/typebox").
|
|
1910
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
1878
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
1879
|
+
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">]>>;
|
|
1880
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
1881
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1882
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1883
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1911
1884
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1912
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
1913
|
-
}
|
|
1885
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
1886
|
+
}>>;
|
|
1914
1887
|
}>;
|
|
1915
|
-
|
|
1916
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
1921
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
1922
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
1888
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
1889
|
+
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">]>>;
|
|
1890
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
1891
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1892
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1923
1893
|
}>;
|
|
1924
1894
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
1925
1895
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -1972,8 +1942,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
1972
1942
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1973
1943
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1974
1944
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1975
|
-
|
|
1976
|
-
|
|
1945
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
1946
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
1977
1947
|
}>>;
|
|
1978
1948
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1979
1949
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2056,24 +2026,21 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2056
2026
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
2057
2027
|
}>;
|
|
2058
2028
|
}>>;
|
|
2059
|
-
|
|
2060
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
2061
|
-
|
|
2062
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
2063
|
-
order_book_top: import("@feathersjs/typebox").
|
|
2064
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
2029
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
2030
|
+
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">]>>;
|
|
2031
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2032
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2033
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2034
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2065
2035
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2066
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
2067
|
-
}
|
|
2036
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
2037
|
+
}>>;
|
|
2068
2038
|
}>;
|
|
2069
|
-
|
|
2070
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
2075
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
2076
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
2039
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
2040
|
+
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">]>>;
|
|
2041
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2042
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2043
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2077
2044
|
}>;
|
|
2078
2045
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
2079
2046
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -2162,8 +2129,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2162
2129
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2163
2130
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
2164
2131
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2165
|
-
|
|
2166
|
-
|
|
2132
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2133
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2167
2134
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2168
2135
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
2169
2136
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -2236,8 +2203,8 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2236
2203
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2237
2204
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2238
2205
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2239
|
-
|
|
2240
|
-
|
|
2206
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
2207
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
2241
2208
|
}>>;
|
|
2242
2209
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2243
2210
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -2320,24 +2287,21 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2320
2287
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
2321
2288
|
}>;
|
|
2322
2289
|
}>>;
|
|
2323
|
-
|
|
2324
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
2325
|
-
|
|
2326
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
2327
|
-
order_book_top: import("@feathersjs/typebox").
|
|
2328
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
2290
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
2291
|
+
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">]>>;
|
|
2292
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2293
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2294
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2295
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2329
2296
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2330
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
2331
|
-
}
|
|
2297
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
2298
|
+
}>>;
|
|
2332
2299
|
}>;
|
|
2333
|
-
|
|
2334
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
2339
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
2340
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
2300
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
2301
|
+
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">]>>;
|
|
2302
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
2303
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2304
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2341
2305
|
}>;
|
|
2342
2306
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
2343
2307
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -2464,8 +2428,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2464
2428
|
} | undefined;
|
|
2465
2429
|
fiat_display_currency?: string | undefined;
|
|
2466
2430
|
unfilledtimeout?: {
|
|
2467
|
-
|
|
2468
|
-
|
|
2431
|
+
entry: number;
|
|
2432
|
+
exit: number;
|
|
2469
2433
|
} | undefined;
|
|
2470
2434
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2471
2435
|
running?: boolean | undefined;
|
|
@@ -2571,24 +2535,21 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2571
2535
|
initial_state: string;
|
|
2572
2536
|
pairlists: any;
|
|
2573
2537
|
strategy: any;
|
|
2574
|
-
|
|
2575
|
-
price_side
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
check_depth_of_market: {
|
|
2538
|
+
entry_pricing: {
|
|
2539
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2540
|
+
use_order_book?: boolean | undefined;
|
|
2541
|
+
order_book_top?: number | undefined;
|
|
2542
|
+
check_depth_of_market?: {
|
|
2580
2543
|
enabled: boolean;
|
|
2581
2544
|
bids_to_ask_delta: number;
|
|
2582
|
-
};
|
|
2545
|
+
} | undefined;
|
|
2546
|
+
price_last_balance: number;
|
|
2583
2547
|
};
|
|
2584
|
-
|
|
2585
|
-
price_side
|
|
2586
|
-
use_order_book
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
exit_sell_signal: boolean;
|
|
2590
|
-
exit_profit_only: boolean;
|
|
2591
|
-
ignore_roi_if_entry_signal: boolean;
|
|
2548
|
+
exit_pricing: {
|
|
2549
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2550
|
+
use_order_book?: boolean | undefined;
|
|
2551
|
+
order_book_top?: number | undefined;
|
|
2552
|
+
price_last_balance: number;
|
|
2592
2553
|
};
|
|
2593
2554
|
api_server: {
|
|
2594
2555
|
password: string;
|
|
@@ -2609,17 +2570,17 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2609
2570
|
}[] | undefined;
|
|
2610
2571
|
results?: unknown;
|
|
2611
2572
|
userId?: string | {} | undefined;
|
|
2612
|
-
exit_sell_signal?: boolean | undefined;
|
|
2613
|
-
exit_profit_only?: boolean | undefined;
|
|
2614
2573
|
file?: any;
|
|
2615
2574
|
templateId?: string | {} | undefined;
|
|
2616
2575
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
2576
|
+
exit_sell_signal?: boolean | undefined;
|
|
2577
|
+
exit_profit_only?: boolean | undefined;
|
|
2617
2578
|
exit_profit_offset?: number | undefined;
|
|
2618
2579
|
timeinforce?: unknown;
|
|
2619
2580
|
order_types?: {
|
|
2620
2581
|
stoploss?: string | undefined;
|
|
2621
|
-
|
|
2622
|
-
|
|
2582
|
+
entry?: "Limit" | "Market" | undefined;
|
|
2583
|
+
exit?: "Limit" | "Market" | undefined;
|
|
2623
2584
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
2624
2585
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
2625
2586
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -2673,8 +2634,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2673
2634
|
} | undefined;
|
|
2674
2635
|
fiat_display_currency?: string | undefined;
|
|
2675
2636
|
unfilledtimeout?: {
|
|
2676
|
-
|
|
2677
|
-
|
|
2637
|
+
entry: number;
|
|
2638
|
+
exit: number;
|
|
2678
2639
|
} | undefined;
|
|
2679
2640
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2680
2641
|
running?: boolean | undefined;
|
|
@@ -2780,24 +2741,21 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2780
2741
|
initial_state: string;
|
|
2781
2742
|
pairlists: any;
|
|
2782
2743
|
strategy: any;
|
|
2783
|
-
|
|
2784
|
-
price_side
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
check_depth_of_market: {
|
|
2744
|
+
entry_pricing: {
|
|
2745
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2746
|
+
use_order_book?: boolean | undefined;
|
|
2747
|
+
order_book_top?: number | undefined;
|
|
2748
|
+
check_depth_of_market?: {
|
|
2789
2749
|
enabled: boolean;
|
|
2790
2750
|
bids_to_ask_delta: number;
|
|
2791
|
-
};
|
|
2751
|
+
} | undefined;
|
|
2752
|
+
price_last_balance: number;
|
|
2792
2753
|
};
|
|
2793
|
-
|
|
2794
|
-
price_side
|
|
2795
|
-
use_order_book
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
exit_sell_signal: boolean;
|
|
2799
|
-
exit_profit_only: boolean;
|
|
2800
|
-
ignore_roi_if_entry_signal: boolean;
|
|
2754
|
+
exit_pricing: {
|
|
2755
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2756
|
+
use_order_book?: boolean | undefined;
|
|
2757
|
+
order_book_top?: number | undefined;
|
|
2758
|
+
price_last_balance: number;
|
|
2801
2759
|
};
|
|
2802
2760
|
api_server: {
|
|
2803
2761
|
password: string;
|
|
@@ -2825,8 +2783,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2825
2783
|
} | undefined;
|
|
2826
2784
|
fiat_display_currency?: string | undefined;
|
|
2827
2785
|
unfilledtimeout?: {
|
|
2828
|
-
|
|
2829
|
-
|
|
2786
|
+
entry: number;
|
|
2787
|
+
exit: number;
|
|
2830
2788
|
} | undefined;
|
|
2831
2789
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
2832
2790
|
running?: boolean | undefined;
|
|
@@ -2932,24 +2890,21 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2932
2890
|
initial_state: string;
|
|
2933
2891
|
pairlists: any;
|
|
2934
2892
|
strategy: any;
|
|
2935
|
-
|
|
2936
|
-
price_side
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
check_depth_of_market: {
|
|
2893
|
+
entry_pricing: {
|
|
2894
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2895
|
+
use_order_book?: boolean | undefined;
|
|
2896
|
+
order_book_top?: number | undefined;
|
|
2897
|
+
check_depth_of_market?: {
|
|
2941
2898
|
enabled: boolean;
|
|
2942
2899
|
bids_to_ask_delta: number;
|
|
2943
|
-
};
|
|
2900
|
+
} | undefined;
|
|
2901
|
+
price_last_balance: number;
|
|
2944
2902
|
};
|
|
2945
|
-
|
|
2946
|
-
price_side
|
|
2947
|
-
use_order_book
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
exit_sell_signal: boolean;
|
|
2951
|
-
exit_profit_only: boolean;
|
|
2952
|
-
ignore_roi_if_entry_signal: boolean;
|
|
2903
|
+
exit_pricing: {
|
|
2904
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2905
|
+
use_order_book?: boolean | undefined;
|
|
2906
|
+
order_book_top?: number | undefined;
|
|
2907
|
+
price_last_balance: number;
|
|
2953
2908
|
};
|
|
2954
2909
|
api_server: {
|
|
2955
2910
|
password: string;
|
|
@@ -3006,8 +2961,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3006
2961
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3007
2962
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3008
2963
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3009
|
-
|
|
3010
|
-
|
|
2964
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
2965
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
3011
2966
|
}>>;
|
|
3012
2967
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3013
2968
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -3090,24 +3045,21 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3090
3045
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
3091
3046
|
}>;
|
|
3092
3047
|
}>>;
|
|
3093
|
-
|
|
3094
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
3095
|
-
|
|
3096
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
3097
|
-
order_book_top: import("@feathersjs/typebox").
|
|
3098
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
3048
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
3049
|
+
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">]>>;
|
|
3050
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3051
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3052
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3053
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3099
3054
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3100
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
3101
|
-
}
|
|
3055
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
3056
|
+
}>>;
|
|
3102
3057
|
}>;
|
|
3103
|
-
|
|
3104
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
3109
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
3110
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
3058
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
3059
|
+
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">]>>;
|
|
3060
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3061
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3062
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3111
3063
|
}>;
|
|
3112
3064
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
3113
3065
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -3160,8 +3112,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3160
3112
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3161
3113
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3162
3114
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3163
|
-
|
|
3164
|
-
|
|
3115
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
3116
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
3165
3117
|
}>>;
|
|
3166
3118
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3167
3119
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -3244,24 +3196,21 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3244
3196
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
3245
3197
|
}>;
|
|
3246
3198
|
}>>;
|
|
3247
|
-
|
|
3248
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
3249
|
-
|
|
3250
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
3251
|
-
order_book_top: import("@feathersjs/typebox").
|
|
3252
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
3199
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
3200
|
+
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">]>>;
|
|
3201
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3202
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3203
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3204
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3253
3205
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3254
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
3255
|
-
}
|
|
3206
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
3207
|
+
}>>;
|
|
3256
3208
|
}>;
|
|
3257
|
-
|
|
3258
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
3263
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
3264
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
3209
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
3210
|
+
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">]>>;
|
|
3211
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3212
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3213
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3265
3214
|
}>;
|
|
3266
3215
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
3267
3216
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -3350,8 +3299,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3350
3299
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3351
3300
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
3352
3301
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3353
|
-
|
|
3354
|
-
|
|
3302
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3303
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3355
3304
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3356
3305
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
3357
3306
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -3424,8 +3373,8 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3424
3373
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3425
3374
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3426
3375
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3427
|
-
|
|
3428
|
-
|
|
3376
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
3377
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
3429
3378
|
}>>;
|
|
3430
3379
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3431
3380
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -3508,24 +3457,21 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3508
3457
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
3509
3458
|
}>;
|
|
3510
3459
|
}>>;
|
|
3511
|
-
|
|
3512
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
3513
|
-
|
|
3514
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
3515
|
-
order_book_top: import("@feathersjs/typebox").
|
|
3516
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
3460
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
3461
|
+
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">]>>;
|
|
3462
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3463
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3464
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3465
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3517
3466
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3518
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
3519
|
-
}
|
|
3467
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
3468
|
+
}>>;
|
|
3520
3469
|
}>;
|
|
3521
|
-
|
|
3522
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
3527
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
3528
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
3470
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
3471
|
+
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">]>>;
|
|
3472
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
3473
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3474
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3529
3475
|
}>;
|
|
3530
3476
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
3531
3477
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -3652,8 +3598,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
3652
3598
|
} | undefined;
|
|
3653
3599
|
fiat_display_currency?: string | undefined;
|
|
3654
3600
|
unfilledtimeout?: {
|
|
3655
|
-
|
|
3656
|
-
|
|
3601
|
+
entry: number;
|
|
3602
|
+
exit: number;
|
|
3657
3603
|
} | undefined;
|
|
3658
3604
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3659
3605
|
running?: boolean | undefined;
|
|
@@ -3759,24 +3705,21 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
3759
3705
|
initial_state: string;
|
|
3760
3706
|
pairlists: any;
|
|
3761
3707
|
strategy: any;
|
|
3762
|
-
|
|
3763
|
-
price_side
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
check_depth_of_market: {
|
|
3708
|
+
entry_pricing: {
|
|
3709
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3710
|
+
use_order_book?: boolean | undefined;
|
|
3711
|
+
order_book_top?: number | undefined;
|
|
3712
|
+
check_depth_of_market?: {
|
|
3768
3713
|
enabled: boolean;
|
|
3769
3714
|
bids_to_ask_delta: number;
|
|
3770
|
-
};
|
|
3715
|
+
} | undefined;
|
|
3716
|
+
price_last_balance: number;
|
|
3771
3717
|
};
|
|
3772
|
-
|
|
3773
|
-
price_side
|
|
3774
|
-
use_order_book
|
|
3775
|
-
|
|
3776
|
-
|
|
3777
|
-
exit_sell_signal: boolean;
|
|
3778
|
-
exit_profit_only: boolean;
|
|
3779
|
-
ignore_roi_if_entry_signal: boolean;
|
|
3718
|
+
exit_pricing: {
|
|
3719
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3720
|
+
use_order_book?: boolean | undefined;
|
|
3721
|
+
order_book_top?: number | undefined;
|
|
3722
|
+
price_last_balance: number;
|
|
3780
3723
|
};
|
|
3781
3724
|
api_server: {
|
|
3782
3725
|
password: string;
|
|
@@ -3797,17 +3740,17 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
3797
3740
|
}[] | undefined;
|
|
3798
3741
|
results?: unknown;
|
|
3799
3742
|
userId?: string | {} | undefined;
|
|
3800
|
-
exit_sell_signal?: boolean | undefined;
|
|
3801
|
-
exit_profit_only?: boolean | undefined;
|
|
3802
3743
|
file?: any;
|
|
3803
3744
|
templateId?: string | {} | undefined;
|
|
3804
3745
|
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3746
|
+
exit_sell_signal?: boolean | undefined;
|
|
3747
|
+
exit_profit_only?: boolean | undefined;
|
|
3805
3748
|
exit_profit_offset?: number | undefined;
|
|
3806
3749
|
timeinforce?: unknown;
|
|
3807
3750
|
order_types?: {
|
|
3808
3751
|
stoploss?: string | undefined;
|
|
3809
|
-
|
|
3810
|
-
|
|
3752
|
+
entry?: "Limit" | "Market" | undefined;
|
|
3753
|
+
exit?: "Limit" | "Market" | undefined;
|
|
3811
3754
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
3812
3755
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
3813
3756
|
forcesell?: "Limit" | "Market" | undefined;
|
|
@@ -3861,8 +3804,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
3861
3804
|
} | undefined;
|
|
3862
3805
|
fiat_display_currency?: string | undefined;
|
|
3863
3806
|
unfilledtimeout?: {
|
|
3864
|
-
|
|
3865
|
-
|
|
3807
|
+
entry: number;
|
|
3808
|
+
exit: number;
|
|
3866
3809
|
} | undefined;
|
|
3867
3810
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
3868
3811
|
running?: boolean | undefined;
|
|
@@ -3968,24 +3911,21 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
3968
3911
|
initial_state: string;
|
|
3969
3912
|
pairlists: any;
|
|
3970
3913
|
strategy: any;
|
|
3971
|
-
|
|
3972
|
-
price_side
|
|
3973
|
-
|
|
3974
|
-
|
|
3975
|
-
|
|
3976
|
-
check_depth_of_market: {
|
|
3914
|
+
entry_pricing: {
|
|
3915
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3916
|
+
use_order_book?: boolean | undefined;
|
|
3917
|
+
order_book_top?: number | undefined;
|
|
3918
|
+
check_depth_of_market?: {
|
|
3977
3919
|
enabled: boolean;
|
|
3978
3920
|
bids_to_ask_delta: number;
|
|
3979
|
-
};
|
|
3921
|
+
} | undefined;
|
|
3922
|
+
price_last_balance: number;
|
|
3980
3923
|
};
|
|
3981
|
-
|
|
3982
|
-
price_side
|
|
3983
|
-
use_order_book
|
|
3984
|
-
|
|
3985
|
-
|
|
3986
|
-
exit_sell_signal: boolean;
|
|
3987
|
-
exit_profit_only: boolean;
|
|
3988
|
-
ignore_roi_if_entry_signal: boolean;
|
|
3924
|
+
exit_pricing: {
|
|
3925
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3926
|
+
use_order_book?: boolean | undefined;
|
|
3927
|
+
order_book_top?: number | undefined;
|
|
3928
|
+
price_last_balance: number;
|
|
3989
3929
|
};
|
|
3990
3930
|
api_server: {
|
|
3991
3931
|
password: string;
|
|
@@ -4013,8 +3953,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4013
3953
|
} | undefined;
|
|
4014
3954
|
fiat_display_currency?: string | undefined;
|
|
4015
3955
|
unfilledtimeout?: {
|
|
4016
|
-
|
|
4017
|
-
|
|
3956
|
+
entry: number;
|
|
3957
|
+
exit: number;
|
|
4018
3958
|
} | undefined;
|
|
4019
3959
|
cancel_open_orders_on_exit?: boolean | undefined;
|
|
4020
3960
|
running?: boolean | undefined;
|
|
@@ -4120,24 +4060,21 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4120
4060
|
initial_state: string;
|
|
4121
4061
|
pairlists: any;
|
|
4122
4062
|
strategy: any;
|
|
4123
|
-
|
|
4124
|
-
price_side
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
check_depth_of_market: {
|
|
4063
|
+
entry_pricing: {
|
|
4064
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4065
|
+
use_order_book?: boolean | undefined;
|
|
4066
|
+
order_book_top?: number | undefined;
|
|
4067
|
+
check_depth_of_market?: {
|
|
4129
4068
|
enabled: boolean;
|
|
4130
4069
|
bids_to_ask_delta: number;
|
|
4131
|
-
};
|
|
4070
|
+
} | undefined;
|
|
4071
|
+
price_last_balance: number;
|
|
4132
4072
|
};
|
|
4133
|
-
|
|
4134
|
-
price_side
|
|
4135
|
-
use_order_book
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
exit_sell_signal: boolean;
|
|
4139
|
-
exit_profit_only: boolean;
|
|
4140
|
-
ignore_roi_if_entry_signal: boolean;
|
|
4073
|
+
exit_pricing: {
|
|
4074
|
+
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4075
|
+
use_order_book?: boolean | undefined;
|
|
4076
|
+
order_book_top?: number | undefined;
|
|
4077
|
+
price_last_balance: number;
|
|
4141
4078
|
};
|
|
4142
4079
|
api_server: {
|
|
4143
4080
|
password: string;
|
|
@@ -4194,8 +4131,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4194
4131
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4195
4132
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4196
4133
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4197
|
-
|
|
4198
|
-
|
|
4134
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
4135
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
4199
4136
|
}>>;
|
|
4200
4137
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4201
4138
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -4278,24 +4215,21 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4278
4215
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
4279
4216
|
}>;
|
|
4280
4217
|
}>>;
|
|
4281
|
-
|
|
4282
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
4283
|
-
|
|
4284
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
4285
|
-
order_book_top: import("@feathersjs/typebox").
|
|
4286
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
4218
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
4219
|
+
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">]>>;
|
|
4220
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
4221
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4222
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4223
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4287
4224
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4288
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
4289
|
-
}
|
|
4225
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
4226
|
+
}>>;
|
|
4290
4227
|
}>;
|
|
4291
|
-
|
|
4292
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
4293
|
-
|
|
4294
|
-
|
|
4295
|
-
|
|
4296
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
4297
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
4298
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
4228
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
4229
|
+
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">]>>;
|
|
4230
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
4231
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4232
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4299
4233
|
}>;
|
|
4300
4234
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
4301
4235
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -4348,8 +4282,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4348
4282
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4349
4283
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4350
4284
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4351
|
-
|
|
4352
|
-
|
|
4285
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
4286
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
4353
4287
|
}>>;
|
|
4354
4288
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4355
4289
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -4432,24 +4366,21 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4432
4366
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
4433
4367
|
}>;
|
|
4434
4368
|
}>>;
|
|
4435
|
-
|
|
4436
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
4437
|
-
|
|
4438
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
4439
|
-
order_book_top: import("@feathersjs/typebox").
|
|
4440
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
4369
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
4370
|
+
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">]>>;
|
|
4371
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
4372
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4373
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4374
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4441
4375
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4442
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
4443
|
-
}
|
|
4376
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
4377
|
+
}>>;
|
|
4444
4378
|
}>;
|
|
4445
|
-
|
|
4446
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
4451
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
4452
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
4379
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
4380
|
+
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">]>>;
|
|
4381
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
4382
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4383
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4453
4384
|
}>;
|
|
4454
4385
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
4455
4386
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
@@ -4538,8 +4469,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4538
4469
|
exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4539
4470
|
timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
|
|
4540
4471
|
order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4541
|
-
|
|
4542
|
-
|
|
4472
|
+
entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4473
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4543
4474
|
emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4544
4475
|
forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
4545
4476
|
forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
|
|
@@ -4612,8 +4543,8 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4612
4543
|
max_open_trades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4613
4544
|
fiat_display_currency: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4614
4545
|
unfilledtimeout: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4615
|
-
|
|
4616
|
-
|
|
4546
|
+
entry: import("@feathersjs/typebox").TNumber;
|
|
4547
|
+
exit: import("@feathersjs/typebox").TNumber;
|
|
4617
4548
|
}>>;
|
|
4618
4549
|
cancel_open_orders_on_exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4619
4550
|
running: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
@@ -4696,24 +4627,21 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4696
4627
|
close_rate: import("@feathersjs/typebox").TString<string>;
|
|
4697
4628
|
}>;
|
|
4698
4629
|
}>>;
|
|
4699
|
-
|
|
4700
|
-
price_side: import("@feathersjs/typebox").TLiteral<"bid"
|
|
4701
|
-
|
|
4702
|
-
use_order_book: import("@feathersjs/typebox").TBoolean
|
|
4703
|
-
order_book_top: import("@feathersjs/typebox").
|
|
4704
|
-
check_depth_of_market: import("@feathersjs/typebox").TObject<{
|
|
4630
|
+
entry_pricing: import("@feathersjs/typebox").TObject<{
|
|
4631
|
+
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">]>>;
|
|
4632
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
4633
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4634
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4635
|
+
check_depth_of_market: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4705
4636
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4706
|
-
bids_to_ask_delta: import("@feathersjs/typebox").
|
|
4707
|
-
}
|
|
4637
|
+
bids_to_ask_delta: import("@feathersjs/typebox").TNumber;
|
|
4638
|
+
}>>;
|
|
4708
4639
|
}>;
|
|
4709
|
-
|
|
4710
|
-
price_side: import("@feathersjs/typebox").TLiteral<"ask"
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
exit_sell_signal: import("@feathersjs/typebox").TBoolean;
|
|
4715
|
-
exit_profit_only: import("@feathersjs/typebox").TBoolean;
|
|
4716
|
-
ignore_roi_if_entry_signal: import("@feathersjs/typebox").TBoolean;
|
|
4640
|
+
exit_pricing: import("@feathersjs/typebox").TObject<{
|
|
4641
|
+
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">]>>;
|
|
4642
|
+
price_last_balance: import("@feathersjs/typebox").TNumber;
|
|
4643
|
+
use_order_book: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4644
|
+
order_book_top: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4717
4645
|
}>;
|
|
4718
4646
|
api_server: import("@feathersjs/typebox").TObject<{
|
|
4719
4647
|
enabled: import("@feathersjs/typebox").TBoolean;
|