@cryptorobot.ai/client 0.0.18 → 0.0.25
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 +38 -36
- package/lib/client.js +6 -12
- package/lib/configuration.d.ts +20 -1
- package/lib/firebase-push-notification.d.ts +1 -0
- package/lib/helpers/backtest.helper.d.ts +53 -4
- package/lib/helpers/ccxt.helper.d.ts +75 -0
- package/lib/helpers/deployments.helper.d.ts +72 -0
- package/lib/helpers/funnel.helper.d.ts +17 -0
- package/lib/helpers/hyperopt.helper.d.ts +14 -0
- package/lib/helpers/push-notification.helper.d.ts +7 -0
- package/lib/helpers/queue.helper.d.ts +8 -0
- package/lib/helpers/sqlite3.helper.d.ts +6 -0
- package/lib/helpers/sqs.helper.d.ts +7 -0
- package/lib/helpers/subscription.helper.d.ts +48 -0
- package/lib/helpers/telegram.helper.d.ts +26 -1
- package/lib/helpers/trader.helper.d.ts +26 -0
- package/lib/hooks/application/setup-config-preparation.d.ts +1 -1
- package/lib/hooks/application/setup-info.d.ts +1 -1
- package/lib/hooks/application/setup-load-indicators.d.ts +1 -1
- package/lib/hooks/application/setup-load-strategy-templates.d.ts +1 -1
- package/lib/hooks/aws-prepare-batch-job.d.ts +2 -0
- package/lib/hooks/backtest-copy-candles-from-user-data.d.ts +1 -1
- package/lib/hooks/{backtest-generate-and-start.d.ts → backtest-generate-and-queue.d.ts} +1 -1
- package/lib/hooks/backtest-generate-config.d.ts +6 -0
- package/lib/hooks/backtest-generate-exchange-config.d.ts +6 -0
- package/lib/hooks/backtest-get-results.d.ts +12 -0
- package/lib/hooks/file-generate-config-hyperopt.d.ts +2 -0
- package/lib/hooks/setup-ensure-image.d.ts +3 -0
- package/lib/hooks/setup-firebase.d.ts +2 -0
- package/lib/hooks/setup-homepage.d.ts +3 -0
- package/lib/hooks/setup-mautic.d.ts +3 -0
- package/lib/hooks/setup-mixpanel.d.ts +3 -0
- package/lib/hooks/setup-prepare-maildev-while-in-test-env.d.ts +1 -1
- package/lib/hooks/setup-queues.d.ts +1 -1
- package/lib/hooks/sqlite-reset-database.d.ts +2 -0
- package/lib/hooks/traders/pods-process-worker.d.ts +5 -0
- package/lib/sentry.d.ts +2 -0
- package/lib/services/exchanges/balance/balance.schema.d.ts +56 -56
- package/lib/services/exchanges/download/download.schema.d.ts +60 -60
- package/lib/services/exchanges/download/webhooks/webhooks.schema.d.ts +84 -84
- package/lib/services/exchanges/exchanges.schema.d.ts +198 -198
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +110 -110
- package/lib/services/homepage/homepage.class.d.ts +15 -0
- package/lib/services/homepage/homepage.d.ts +10 -0
- package/lib/services/homepage/homepage.schema.d.ts +237 -0
- package/lib/services/homepage/homepage.shared.d.ts +4 -0
- package/lib/services/homepage/homepage.shared.js +6 -0
- package/lib/services/markets/markets.schema.d.ts +112 -112
- package/lib/services/messages/messages.schema.d.ts +136 -64
- package/lib/services/strategies/ai/ai.schema.d.ts +32 -32
- package/lib/services/strategies/backtest/backtest.schema.d.ts +394 -84
- package/lib/services/strategies/backtest/results/results.class.d.ts +1 -1
- package/lib/services/strategies/backtest/results/results.schema.d.ts +454 -156
- package/lib/services/strategies/hyperopt/hyperopt.class.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.d.ts +11 -0
- package/lib/services/strategies/hyperopt/hyperopt.schema.d.ts +375 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.d.ts +13 -0
- package/lib/services/strategies/hyperopt/hyperopt.shared.js +13 -0
- package/lib/services/strategies/indicators/indicators.schema.d.ts +40 -40
- package/lib/services/strategies/strategies.schema.d.ts +329 -247
- package/lib/services/strategies/templates/templates.schema.d.ts +41 -41
- package/lib/services/stripe/charges/charges.d.ts +1 -1
- package/lib/services/stripe/customers/customers.d.ts +1 -1
- package/lib/services/stripe/customers/paymentintent/paymentintent.d.ts +1 -1
- package/lib/services/stripe/customers/paymentmethods/paymentmethods.d.ts +1 -1
- package/lib/services/stripe/products/products.d.ts +1 -1
- package/lib/services/traders/pods/api/api.class.d.ts +1 -1
- package/lib/services/traders/pods/api/api.schema.d.ts +527 -519
- package/lib/services/traders/pods/events/events.schema.d.ts +375 -111
- package/lib/services/traders/pods/pods.schema.d.ts +384 -384
- package/lib/services/traders/pods/webhooks/webhooks.schema.d.ts +76 -76
- package/lib/services/traders/traders.class.d.ts +7 -1
- package/lib/services/traders/traders.d.ts +1 -0
- package/lib/services/traders/traders.schema.d.ts +852 -380
- package/lib/services/users/users.class.d.ts +1 -1
- package/lib/services/users/users.schema.d.ts +158 -52
- package/package.json +9 -2
- package/lib/hooks/bootstrap-user-telegram.d.ts +0 -2
|
@@ -58,7 +58,6 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
58
58
|
traderId: import("@feathersjs/typebox").TAny;
|
|
59
59
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
60
60
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
61
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
62
61
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
63
62
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
64
63
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -183,6 +182,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
183
182
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
184
183
|
}>>;
|
|
185
184
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
185
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
186
186
|
host: import("@feathersjs/typebox").TString<string>;
|
|
187
187
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
188
188
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -244,7 +244,6 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
244
244
|
traderId: import("@feathersjs/typebox").TAny;
|
|
245
245
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
246
246
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
247
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
248
247
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
249
248
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
250
249
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -369,6 +368,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
369
368
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
370
369
|
}>>;
|
|
371
370
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
371
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
372
372
|
host: import("@feathersjs/typebox").TString<string>;
|
|
373
373
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
374
374
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -536,7 +536,6 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
536
536
|
traderId: import("@feathersjs/typebox").TAny;
|
|
537
537
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
538
538
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
539
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
540
539
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
541
540
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
542
541
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -661,6 +660,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
661
660
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
662
661
|
}>>;
|
|
663
662
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
663
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
664
664
|
host: import("@feathersjs/typebox").TString<string>;
|
|
665
665
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
666
666
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -671,7 +671,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
671
671
|
name: import("@feathersjs/typebox").TString<string>;
|
|
672
672
|
type: import("@feathersjs/typebox").TString<string>;
|
|
673
673
|
description: import("@feathersjs/typebox").TString<string>;
|
|
674
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
674
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
675
675
|
values: import("@feathersjs/typebox").TAny;
|
|
676
676
|
}>>>;
|
|
677
677
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -682,6 +682,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
682
682
|
options: import("@feathersjs/typebox").TAny;
|
|
683
683
|
}>>>>;
|
|
684
684
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
685
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
685
686
|
action: import("@feathersjs/typebox").TString<string>;
|
|
686
687
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
687
688
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -689,27 +690,23 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
689
690
|
export type TradersPodsApi = Static<typeof tradersPodsApiSchema>;
|
|
690
691
|
export declare const tradersPodsApiValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
691
692
|
export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolver<{
|
|
692
|
-
options?: any;
|
|
693
693
|
'traders/pods'?: Partial<{
|
|
694
694
|
host?: string | undefined;
|
|
695
695
|
stop?: boolean | undefined;
|
|
696
696
|
provider: "docker";
|
|
697
697
|
_id: string | {};
|
|
698
698
|
options: any;
|
|
699
|
-
strategyId: string | {};
|
|
700
|
-
exchangeId: string;
|
|
701
699
|
exchange: Partial<{
|
|
702
700
|
password?: string | undefined;
|
|
703
701
|
name?: any;
|
|
704
702
|
apiKey?: string | undefined;
|
|
703
|
+
token?: string | undefined;
|
|
705
704
|
secret?: string | undefined;
|
|
706
705
|
avatar?: any;
|
|
707
706
|
createdAt?: any;
|
|
708
707
|
updatedAt?: any;
|
|
709
|
-
|
|
710
|
-
which?: string | undefined;
|
|
708
|
+
login?: string | undefined;
|
|
711
709
|
connected?: boolean | undefined;
|
|
712
|
-
token?: string | undefined;
|
|
713
710
|
downloaded?: {
|
|
714
711
|
updatedAt: any;
|
|
715
712
|
size: string;
|
|
@@ -737,15 +734,17 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
737
734
|
}[] | undefined;
|
|
738
735
|
whitelist?: any[] | undefined;
|
|
739
736
|
ccxt_async_config?: any;
|
|
737
|
+
which?: string | undefined;
|
|
740
738
|
requiredCredentials?: any;
|
|
741
739
|
uid?: string | undefined;
|
|
742
|
-
login?: string | undefined;
|
|
743
740
|
twofa?: string | undefined;
|
|
744
741
|
privateKey?: string | undefined;
|
|
745
742
|
walletAddress?: string | undefined;
|
|
743
|
+
userId?: string | {} | undefined;
|
|
746
744
|
__v?: any;
|
|
747
745
|
_id: string | {};
|
|
748
746
|
}>;
|
|
747
|
+
exchangeId: string;
|
|
749
748
|
strategy: Partial<{
|
|
750
749
|
_id?: string | {} | undefined;
|
|
751
750
|
traders?: {
|
|
@@ -757,19 +756,19 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
757
756
|
chat_id: any;
|
|
758
757
|
allow_custom_messages: boolean;
|
|
759
758
|
notification_settings: {
|
|
760
|
-
status: "silent" | "on" | "off";
|
|
761
759
|
entry: "silent" | "on" | "off";
|
|
762
760
|
exit: {
|
|
761
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
763
762
|
roi: "silent" | "on" | "off";
|
|
764
763
|
emergency_exit: "silent" | "on" | "off";
|
|
765
764
|
force_exit: "silent" | "on" | "off";
|
|
766
765
|
exit_signal: "silent" | "on" | "off";
|
|
767
766
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
768
767
|
stop_loss: "silent" | "on" | "off";
|
|
769
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
770
768
|
custom_exit: "silent" | "on" | "off";
|
|
771
769
|
partial_exit: "silent" | "on" | "off";
|
|
772
770
|
};
|
|
771
|
+
status: "silent" | "on" | "off";
|
|
773
772
|
warning: "silent" | "on" | "off";
|
|
774
773
|
startup: "silent" | "on" | "off";
|
|
775
774
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -784,8 +783,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
784
783
|
reload: boolean;
|
|
785
784
|
balance_dust_level: number;
|
|
786
785
|
} | undefined;
|
|
787
|
-
dry_run_wallet?: number | undefined;
|
|
788
|
-
max_open_trades?: number | undefined;
|
|
789
786
|
plugins?: {
|
|
790
787
|
number_assets?: number | undefined;
|
|
791
788
|
refresh_period?: number | undefined;
|
|
@@ -794,6 +791,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
794
791
|
removeRecentlyListed?: boolean | undefined;
|
|
795
792
|
removeRecentlyListedDays?: number | undefined;
|
|
796
793
|
} | undefined;
|
|
794
|
+
dry_run_wallet?: number | undefined;
|
|
795
|
+
max_open_trades?: number | undefined;
|
|
797
796
|
fiat_display_currency?: string | undefined;
|
|
798
797
|
unfilledtimeout?: {
|
|
799
798
|
entry: number;
|
|
@@ -807,37 +806,36 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
807
806
|
enabled: boolean;
|
|
808
807
|
format: string;
|
|
809
808
|
webhookstatus: {
|
|
810
|
-
|
|
809
|
+
userId: string;
|
|
811
810
|
event: string;
|
|
812
811
|
status: string;
|
|
813
|
-
|
|
812
|
+
traderId: any;
|
|
814
813
|
};
|
|
815
814
|
webhookentry: {
|
|
816
|
-
|
|
817
|
-
traderId: any;
|
|
818
|
-
stake_amount: string;
|
|
815
|
+
userId: string;
|
|
819
816
|
stake_currency: string;
|
|
817
|
+
stake_amount: string;
|
|
820
818
|
event: string;
|
|
821
|
-
|
|
819
|
+
traderId: any;
|
|
822
820
|
pair: string;
|
|
823
821
|
fiat_currency: string;
|
|
824
822
|
};
|
|
825
823
|
webhookentrycancel: {
|
|
826
824
|
limit: string;
|
|
827
|
-
|
|
828
|
-
stake_amount: string;
|
|
825
|
+
userId: string;
|
|
829
826
|
stake_currency: string;
|
|
827
|
+
stake_amount: string;
|
|
830
828
|
event: string;
|
|
831
|
-
|
|
829
|
+
traderId: any;
|
|
832
830
|
pair: string;
|
|
833
831
|
fiat_currency: string;
|
|
834
832
|
};
|
|
835
833
|
webhookentryfill: {
|
|
836
|
-
|
|
837
|
-
stake_amount: string;
|
|
834
|
+
userId: string;
|
|
838
835
|
stake_currency: string;
|
|
836
|
+
stake_amount: string;
|
|
839
837
|
event: string;
|
|
840
|
-
|
|
838
|
+
traderId: any;
|
|
841
839
|
pair: string;
|
|
842
840
|
trade_id: string;
|
|
843
841
|
open_rate: string;
|
|
@@ -846,10 +844,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
846
844
|
};
|
|
847
845
|
webhookexit: {
|
|
848
846
|
limit: string;
|
|
849
|
-
|
|
847
|
+
userId: string;
|
|
850
848
|
stake_currency: string;
|
|
851
849
|
event: string;
|
|
852
|
-
|
|
850
|
+
traderId: any;
|
|
853
851
|
pair: string;
|
|
854
852
|
fiat_currency: string;
|
|
855
853
|
trade_id: string;
|
|
@@ -864,22 +862,23 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
864
862
|
};
|
|
865
863
|
webhookexitcancel: {
|
|
866
864
|
limit: string;
|
|
867
|
-
|
|
865
|
+
userId: string;
|
|
868
866
|
stake_currency: string;
|
|
869
867
|
event: string;
|
|
870
|
-
|
|
868
|
+
traderId: any;
|
|
871
869
|
pair: string;
|
|
872
870
|
profit_amount: string;
|
|
873
871
|
profit_ratio: string;
|
|
874
872
|
};
|
|
875
873
|
webhookexitfill: {
|
|
876
|
-
traderId: any;
|
|
877
|
-
event: string;
|
|
878
874
|
userId: string;
|
|
875
|
+
event: string;
|
|
876
|
+
traderId: any;
|
|
879
877
|
pair: string;
|
|
880
878
|
close_rate: string;
|
|
881
879
|
};
|
|
882
880
|
} | undefined;
|
|
881
|
+
reset?: boolean | undefined;
|
|
883
882
|
host: string;
|
|
884
883
|
name: any;
|
|
885
884
|
provider: "docker";
|
|
@@ -889,20 +888,20 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
889
888
|
_id: string | {};
|
|
890
889
|
createdAt: any;
|
|
891
890
|
updatedAt: any;
|
|
892
|
-
|
|
893
|
-
strategyId: string | {};
|
|
894
|
-
stake_amount: string | number;
|
|
895
|
-
stake_currency: string;
|
|
896
|
-
exchangeId: any;
|
|
897
|
-
userId: any;
|
|
891
|
+
connected: boolean;
|
|
898
892
|
which: string;
|
|
893
|
+
userId: any;
|
|
894
|
+
"traders/pods": any;
|
|
899
895
|
exchange: any;
|
|
900
|
-
|
|
896
|
+
exchangeId: any;
|
|
897
|
+
stake_currency: string;
|
|
898
|
+
stake_amount: string | number;
|
|
901
899
|
dry_run: boolean;
|
|
902
900
|
handling: string;
|
|
903
901
|
initial_state: string;
|
|
904
902
|
pairlists: any;
|
|
905
903
|
strategy: any;
|
|
904
|
+
strategyId: string | {};
|
|
906
905
|
entry_pricing: {
|
|
907
906
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
908
907
|
use_order_book?: boolean | undefined;
|
|
@@ -922,35 +921,34 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
922
921
|
api_server: {
|
|
923
922
|
password: string;
|
|
924
923
|
enabled: boolean;
|
|
924
|
+
username: string;
|
|
925
925
|
listen_ip_address: string;
|
|
926
926
|
listen_port: number;
|
|
927
927
|
verbosity: string;
|
|
928
928
|
jwt_secret_key: string;
|
|
929
929
|
CORS_origins: string[];
|
|
930
|
-
username: string;
|
|
931
930
|
};
|
|
932
931
|
pod: string;
|
|
933
932
|
}[] | undefined;
|
|
934
933
|
createdAt?: any;
|
|
935
934
|
updatedAt?: any;
|
|
935
|
+
userId?: string | {} | undefined;
|
|
936
936
|
'strategies/templates'?: {
|
|
937
937
|
_id?: string | {} | undefined;
|
|
938
|
+
createdAt?: any;
|
|
938
939
|
values: any;
|
|
939
940
|
name: string;
|
|
940
|
-
createdAt: any;
|
|
941
941
|
description: string;
|
|
942
942
|
type: string;
|
|
943
943
|
} | undefined;
|
|
944
|
+
file?: any;
|
|
945
|
+
templateId?: string | {} | undefined;
|
|
946
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
944
947
|
stoploss?: number | undefined;
|
|
945
948
|
minimal_roi?: {
|
|
946
949
|
minutes: number;
|
|
947
950
|
profit: number;
|
|
948
951
|
}[] | undefined;
|
|
949
|
-
results?: unknown;
|
|
950
|
-
userId?: string | {} | undefined;
|
|
951
|
-
file?: any;
|
|
952
|
-
templateId?: string | {} | undefined;
|
|
953
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
954
952
|
exit_sell_signal?: boolean | undefined;
|
|
955
953
|
exit_profit_only?: boolean | undefined;
|
|
956
954
|
exit_profit_offset?: number | undefined;
|
|
@@ -959,10 +957,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
959
957
|
stoploss?: string | undefined;
|
|
960
958
|
entry?: "Limit" | "Market" | undefined;
|
|
961
959
|
exit?: "Limit" | "Market" | undefined;
|
|
962
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
963
960
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
964
961
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
965
962
|
forcesell?: "Limit" | "Market" | undefined;
|
|
963
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
966
964
|
stoploss_on_exchange_interval?: number | undefined;
|
|
967
965
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
968
966
|
} | undefined;
|
|
@@ -994,10 +992,12 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
994
992
|
}[] | undefined;
|
|
995
993
|
indicators?: unknown[] | undefined;
|
|
996
994
|
code?: unknown;
|
|
995
|
+
results?: unknown;
|
|
997
996
|
configured?: boolean | undefined;
|
|
998
997
|
name: any;
|
|
999
998
|
'strategies/indicators': any;
|
|
1000
999
|
}>;
|
|
1000
|
+
strategyId: string | {};
|
|
1001
1001
|
pod: any;
|
|
1002
1002
|
trader: Partial<{
|
|
1003
1003
|
telegram?: {
|
|
@@ -1008,19 +1008,19 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1008
1008
|
chat_id: any;
|
|
1009
1009
|
allow_custom_messages: boolean;
|
|
1010
1010
|
notification_settings: {
|
|
1011
|
-
status: "silent" | "on" | "off";
|
|
1012
1011
|
entry: "silent" | "on" | "off";
|
|
1013
1012
|
exit: {
|
|
1013
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1014
1014
|
roi: "silent" | "on" | "off";
|
|
1015
1015
|
emergency_exit: "silent" | "on" | "off";
|
|
1016
1016
|
force_exit: "silent" | "on" | "off";
|
|
1017
1017
|
exit_signal: "silent" | "on" | "off";
|
|
1018
1018
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1019
1019
|
stop_loss: "silent" | "on" | "off";
|
|
1020
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1021
1020
|
custom_exit: "silent" | "on" | "off";
|
|
1022
1021
|
partial_exit: "silent" | "on" | "off";
|
|
1023
1022
|
};
|
|
1023
|
+
status: "silent" | "on" | "off";
|
|
1024
1024
|
warning: "silent" | "on" | "off";
|
|
1025
1025
|
startup: "silent" | "on" | "off";
|
|
1026
1026
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1035,8 +1035,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1035
1035
|
reload: boolean;
|
|
1036
1036
|
balance_dust_level: number;
|
|
1037
1037
|
} | undefined;
|
|
1038
|
-
dry_run_wallet?: number | undefined;
|
|
1039
|
-
max_open_trades?: number | undefined;
|
|
1040
1038
|
plugins?: {
|
|
1041
1039
|
number_assets?: number | undefined;
|
|
1042
1040
|
refresh_period?: number | undefined;
|
|
@@ -1045,6 +1043,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1045
1043
|
removeRecentlyListed?: boolean | undefined;
|
|
1046
1044
|
removeRecentlyListedDays?: number | undefined;
|
|
1047
1045
|
} | undefined;
|
|
1046
|
+
dry_run_wallet?: number | undefined;
|
|
1047
|
+
max_open_trades?: number | undefined;
|
|
1048
1048
|
fiat_display_currency?: string | undefined;
|
|
1049
1049
|
unfilledtimeout?: {
|
|
1050
1050
|
entry: number;
|
|
@@ -1058,37 +1058,36 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1058
1058
|
enabled: boolean;
|
|
1059
1059
|
format: string;
|
|
1060
1060
|
webhookstatus: {
|
|
1061
|
-
|
|
1061
|
+
userId: string;
|
|
1062
1062
|
event: string;
|
|
1063
1063
|
status: string;
|
|
1064
|
-
|
|
1064
|
+
traderId: any;
|
|
1065
1065
|
};
|
|
1066
1066
|
webhookentry: {
|
|
1067
|
-
|
|
1068
|
-
traderId: any;
|
|
1069
|
-
stake_amount: string;
|
|
1067
|
+
userId: string;
|
|
1070
1068
|
stake_currency: string;
|
|
1069
|
+
stake_amount: string;
|
|
1071
1070
|
event: string;
|
|
1072
|
-
|
|
1071
|
+
traderId: any;
|
|
1073
1072
|
pair: string;
|
|
1074
1073
|
fiat_currency: string;
|
|
1075
1074
|
};
|
|
1076
1075
|
webhookentrycancel: {
|
|
1077
1076
|
limit: string;
|
|
1078
|
-
|
|
1079
|
-
stake_amount: string;
|
|
1077
|
+
userId: string;
|
|
1080
1078
|
stake_currency: string;
|
|
1079
|
+
stake_amount: string;
|
|
1081
1080
|
event: string;
|
|
1082
|
-
|
|
1081
|
+
traderId: any;
|
|
1083
1082
|
pair: string;
|
|
1084
1083
|
fiat_currency: string;
|
|
1085
1084
|
};
|
|
1086
1085
|
webhookentryfill: {
|
|
1087
|
-
|
|
1088
|
-
stake_amount: string;
|
|
1086
|
+
userId: string;
|
|
1089
1087
|
stake_currency: string;
|
|
1088
|
+
stake_amount: string;
|
|
1090
1089
|
event: string;
|
|
1091
|
-
|
|
1090
|
+
traderId: any;
|
|
1092
1091
|
pair: string;
|
|
1093
1092
|
trade_id: string;
|
|
1094
1093
|
open_rate: string;
|
|
@@ -1097,10 +1096,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1097
1096
|
};
|
|
1098
1097
|
webhookexit: {
|
|
1099
1098
|
limit: string;
|
|
1100
|
-
|
|
1099
|
+
userId: string;
|
|
1101
1100
|
stake_currency: string;
|
|
1102
1101
|
event: string;
|
|
1103
|
-
|
|
1102
|
+
traderId: any;
|
|
1104
1103
|
pair: string;
|
|
1105
1104
|
fiat_currency: string;
|
|
1106
1105
|
trade_id: string;
|
|
@@ -1115,22 +1114,23 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1115
1114
|
};
|
|
1116
1115
|
webhookexitcancel: {
|
|
1117
1116
|
limit: string;
|
|
1118
|
-
|
|
1117
|
+
userId: string;
|
|
1119
1118
|
stake_currency: string;
|
|
1120
1119
|
event: string;
|
|
1121
|
-
|
|
1120
|
+
traderId: any;
|
|
1122
1121
|
pair: string;
|
|
1123
1122
|
profit_amount: string;
|
|
1124
1123
|
profit_ratio: string;
|
|
1125
1124
|
};
|
|
1126
1125
|
webhookexitfill: {
|
|
1127
|
-
traderId: any;
|
|
1128
|
-
event: string;
|
|
1129
1126
|
userId: string;
|
|
1127
|
+
event: string;
|
|
1128
|
+
traderId: any;
|
|
1130
1129
|
pair: string;
|
|
1131
1130
|
close_rate: string;
|
|
1132
1131
|
};
|
|
1133
1132
|
} | undefined;
|
|
1133
|
+
reset?: boolean | undefined;
|
|
1134
1134
|
host: string;
|
|
1135
1135
|
name: any;
|
|
1136
1136
|
provider: "docker";
|
|
@@ -1140,20 +1140,20 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1140
1140
|
_id: string | {};
|
|
1141
1141
|
createdAt: any;
|
|
1142
1142
|
updatedAt: any;
|
|
1143
|
-
|
|
1144
|
-
strategyId: string | {};
|
|
1145
|
-
stake_amount: string | number;
|
|
1146
|
-
stake_currency: string;
|
|
1147
|
-
exchangeId: any;
|
|
1148
|
-
userId: any;
|
|
1143
|
+
connected: boolean;
|
|
1149
1144
|
which: string;
|
|
1145
|
+
userId: any;
|
|
1146
|
+
"traders/pods": any;
|
|
1150
1147
|
exchange: any;
|
|
1151
|
-
|
|
1148
|
+
exchangeId: any;
|
|
1149
|
+
stake_currency: string;
|
|
1150
|
+
stake_amount: string | number;
|
|
1152
1151
|
dry_run: boolean;
|
|
1153
1152
|
handling: string;
|
|
1154
1153
|
initial_state: string;
|
|
1155
1154
|
pairlists: any;
|
|
1156
1155
|
strategy: any;
|
|
1156
|
+
strategyId: string | {};
|
|
1157
1157
|
entry_pricing: {
|
|
1158
1158
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1159
1159
|
use_order_book?: boolean | undefined;
|
|
@@ -1173,16 +1173,17 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1173
1173
|
api_server: {
|
|
1174
1174
|
password: string;
|
|
1175
1175
|
enabled: boolean;
|
|
1176
|
+
username: string;
|
|
1176
1177
|
listen_ip_address: string;
|
|
1177
1178
|
listen_port: number;
|
|
1178
1179
|
verbosity: string;
|
|
1179
1180
|
jwt_secret_key: string;
|
|
1180
1181
|
CORS_origins: string[];
|
|
1181
|
-
username: string;
|
|
1182
1182
|
};
|
|
1183
1183
|
pod: string;
|
|
1184
1184
|
}>;
|
|
1185
1185
|
}> | undefined;
|
|
1186
|
+
options?: any;
|
|
1186
1187
|
trader?: Partial<{
|
|
1187
1188
|
telegram?: {
|
|
1188
1189
|
access_hash?: string | null | undefined;
|
|
@@ -1192,19 +1193,19 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1192
1193
|
chat_id: any;
|
|
1193
1194
|
allow_custom_messages: boolean;
|
|
1194
1195
|
notification_settings: {
|
|
1195
|
-
status: "silent" | "on" | "off";
|
|
1196
1196
|
entry: "silent" | "on" | "off";
|
|
1197
1197
|
exit: {
|
|
1198
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1198
1199
|
roi: "silent" | "on" | "off";
|
|
1199
1200
|
emergency_exit: "silent" | "on" | "off";
|
|
1200
1201
|
force_exit: "silent" | "on" | "off";
|
|
1201
1202
|
exit_signal: "silent" | "on" | "off";
|
|
1202
1203
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1203
1204
|
stop_loss: "silent" | "on" | "off";
|
|
1204
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1205
1205
|
custom_exit: "silent" | "on" | "off";
|
|
1206
1206
|
partial_exit: "silent" | "on" | "off";
|
|
1207
1207
|
};
|
|
1208
|
+
status: "silent" | "on" | "off";
|
|
1208
1209
|
warning: "silent" | "on" | "off";
|
|
1209
1210
|
startup: "silent" | "on" | "off";
|
|
1210
1211
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1219,8 +1220,6 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1219
1220
|
reload: boolean;
|
|
1220
1221
|
balance_dust_level: number;
|
|
1221
1222
|
} | undefined;
|
|
1222
|
-
dry_run_wallet?: number | undefined;
|
|
1223
|
-
max_open_trades?: number | undefined;
|
|
1224
1223
|
plugins?: {
|
|
1225
1224
|
number_assets?: number | undefined;
|
|
1226
1225
|
refresh_period?: number | undefined;
|
|
@@ -1229,6 +1228,8 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1229
1228
|
removeRecentlyListed?: boolean | undefined;
|
|
1230
1229
|
removeRecentlyListedDays?: number | undefined;
|
|
1231
1230
|
} | undefined;
|
|
1231
|
+
dry_run_wallet?: number | undefined;
|
|
1232
|
+
max_open_trades?: number | undefined;
|
|
1232
1233
|
fiat_display_currency?: string | undefined;
|
|
1233
1234
|
unfilledtimeout?: {
|
|
1234
1235
|
entry: number;
|
|
@@ -1242,37 +1243,36 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1242
1243
|
enabled: boolean;
|
|
1243
1244
|
format: string;
|
|
1244
1245
|
webhookstatus: {
|
|
1245
|
-
|
|
1246
|
+
userId: string;
|
|
1246
1247
|
event: string;
|
|
1247
1248
|
status: string;
|
|
1248
|
-
|
|
1249
|
+
traderId: any;
|
|
1249
1250
|
};
|
|
1250
1251
|
webhookentry: {
|
|
1251
|
-
|
|
1252
|
-
traderId: any;
|
|
1253
|
-
stake_amount: string;
|
|
1252
|
+
userId: string;
|
|
1254
1253
|
stake_currency: string;
|
|
1254
|
+
stake_amount: string;
|
|
1255
1255
|
event: string;
|
|
1256
|
-
|
|
1256
|
+
traderId: any;
|
|
1257
1257
|
pair: string;
|
|
1258
1258
|
fiat_currency: string;
|
|
1259
1259
|
};
|
|
1260
1260
|
webhookentrycancel: {
|
|
1261
1261
|
limit: string;
|
|
1262
|
-
|
|
1263
|
-
stake_amount: string;
|
|
1262
|
+
userId: string;
|
|
1264
1263
|
stake_currency: string;
|
|
1264
|
+
stake_amount: string;
|
|
1265
1265
|
event: string;
|
|
1266
|
-
|
|
1266
|
+
traderId: any;
|
|
1267
1267
|
pair: string;
|
|
1268
1268
|
fiat_currency: string;
|
|
1269
1269
|
};
|
|
1270
1270
|
webhookentryfill: {
|
|
1271
|
-
|
|
1272
|
-
stake_amount: string;
|
|
1271
|
+
userId: string;
|
|
1273
1272
|
stake_currency: string;
|
|
1273
|
+
stake_amount: string;
|
|
1274
1274
|
event: string;
|
|
1275
|
-
|
|
1275
|
+
traderId: any;
|
|
1276
1276
|
pair: string;
|
|
1277
1277
|
trade_id: string;
|
|
1278
1278
|
open_rate: string;
|
|
@@ -1281,10 +1281,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1281
1281
|
};
|
|
1282
1282
|
webhookexit: {
|
|
1283
1283
|
limit: string;
|
|
1284
|
-
|
|
1284
|
+
userId: string;
|
|
1285
1285
|
stake_currency: string;
|
|
1286
1286
|
event: string;
|
|
1287
|
-
|
|
1287
|
+
traderId: any;
|
|
1288
1288
|
pair: string;
|
|
1289
1289
|
fiat_currency: string;
|
|
1290
1290
|
trade_id: string;
|
|
@@ -1299,22 +1299,23 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1299
1299
|
};
|
|
1300
1300
|
webhookexitcancel: {
|
|
1301
1301
|
limit: string;
|
|
1302
|
-
|
|
1302
|
+
userId: string;
|
|
1303
1303
|
stake_currency: string;
|
|
1304
1304
|
event: string;
|
|
1305
|
-
|
|
1305
|
+
traderId: any;
|
|
1306
1306
|
pair: string;
|
|
1307
1307
|
profit_amount: string;
|
|
1308
1308
|
profit_ratio: string;
|
|
1309
1309
|
};
|
|
1310
1310
|
webhookexitfill: {
|
|
1311
|
-
traderId: any;
|
|
1312
|
-
event: string;
|
|
1313
1311
|
userId: string;
|
|
1312
|
+
event: string;
|
|
1313
|
+
traderId: any;
|
|
1314
1314
|
pair: string;
|
|
1315
1315
|
close_rate: string;
|
|
1316
1316
|
};
|
|
1317
1317
|
} | undefined;
|
|
1318
|
+
reset?: boolean | undefined;
|
|
1318
1319
|
host: string;
|
|
1319
1320
|
name: any;
|
|
1320
1321
|
provider: "docker";
|
|
@@ -1324,20 +1325,20 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1324
1325
|
_id: string | {};
|
|
1325
1326
|
createdAt: any;
|
|
1326
1327
|
updatedAt: any;
|
|
1327
|
-
|
|
1328
|
-
strategyId: string | {};
|
|
1329
|
-
stake_amount: string | number;
|
|
1330
|
-
stake_currency: string;
|
|
1331
|
-
exchangeId: any;
|
|
1332
|
-
userId: any;
|
|
1328
|
+
connected: boolean;
|
|
1333
1329
|
which: string;
|
|
1330
|
+
userId: any;
|
|
1331
|
+
"traders/pods": any;
|
|
1334
1332
|
exchange: any;
|
|
1335
|
-
|
|
1333
|
+
exchangeId: any;
|
|
1334
|
+
stake_currency: string;
|
|
1335
|
+
stake_amount: string | number;
|
|
1336
1336
|
dry_run: boolean;
|
|
1337
1337
|
handling: string;
|
|
1338
1338
|
initial_state: string;
|
|
1339
1339
|
pairlists: any;
|
|
1340
1340
|
strategy: any;
|
|
1341
|
+
strategyId: string | {};
|
|
1341
1342
|
entry_pricing: {
|
|
1342
1343
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1343
1344
|
use_order_book?: boolean | undefined;
|
|
@@ -1357,44 +1358,41 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
1357
1358
|
api_server: {
|
|
1358
1359
|
password: string;
|
|
1359
1360
|
enabled: boolean;
|
|
1361
|
+
username: string;
|
|
1360
1362
|
listen_ip_address: string;
|
|
1361
1363
|
listen_port: number;
|
|
1362
1364
|
verbosity: string;
|
|
1363
1365
|
jwt_secret_key: string;
|
|
1364
1366
|
CORS_origins: string[];
|
|
1365
|
-
username: string;
|
|
1366
1367
|
};
|
|
1367
1368
|
pod: string;
|
|
1368
1369
|
}> | undefined;
|
|
1369
1370
|
_id: string | {};
|
|
1370
1371
|
createdAt: any;
|
|
1371
|
-
|
|
1372
|
+
updatedAt: any;
|
|
1372
1373
|
userId: any;
|
|
1374
|
+
traderId: any;
|
|
1373
1375
|
action: string;
|
|
1374
1376
|
result: any;
|
|
1375
1377
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
1376
1378
|
export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema").Resolver<{
|
|
1377
|
-
options?: any;
|
|
1378
1379
|
'traders/pods'?: Partial<{
|
|
1379
1380
|
host?: string | undefined;
|
|
1380
1381
|
stop?: boolean | undefined;
|
|
1381
1382
|
provider: "docker";
|
|
1382
1383
|
_id: string | {};
|
|
1383
1384
|
options: any;
|
|
1384
|
-
strategyId: string | {};
|
|
1385
|
-
exchangeId: string;
|
|
1386
1385
|
exchange: Partial<{
|
|
1387
1386
|
password?: string | undefined;
|
|
1388
1387
|
name?: any;
|
|
1389
1388
|
apiKey?: string | undefined;
|
|
1389
|
+
token?: string | undefined;
|
|
1390
1390
|
secret?: string | undefined;
|
|
1391
1391
|
avatar?: any;
|
|
1392
1392
|
createdAt?: any;
|
|
1393
1393
|
updatedAt?: any;
|
|
1394
|
-
|
|
1395
|
-
which?: string | undefined;
|
|
1394
|
+
login?: string | undefined;
|
|
1396
1395
|
connected?: boolean | undefined;
|
|
1397
|
-
token?: string | undefined;
|
|
1398
1396
|
downloaded?: {
|
|
1399
1397
|
updatedAt: any;
|
|
1400
1398
|
size: string;
|
|
@@ -1422,15 +1420,17 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1422
1420
|
}[] | undefined;
|
|
1423
1421
|
whitelist?: any[] | undefined;
|
|
1424
1422
|
ccxt_async_config?: any;
|
|
1423
|
+
which?: string | undefined;
|
|
1425
1424
|
requiredCredentials?: any;
|
|
1426
1425
|
uid?: string | undefined;
|
|
1427
|
-
login?: string | undefined;
|
|
1428
1426
|
twofa?: string | undefined;
|
|
1429
1427
|
privateKey?: string | undefined;
|
|
1430
1428
|
walletAddress?: string | undefined;
|
|
1429
|
+
userId?: string | {} | undefined;
|
|
1431
1430
|
__v?: any;
|
|
1432
1431
|
_id: string | {};
|
|
1433
1432
|
}>;
|
|
1433
|
+
exchangeId: string;
|
|
1434
1434
|
strategy: Partial<{
|
|
1435
1435
|
_id?: string | {} | undefined;
|
|
1436
1436
|
traders?: {
|
|
@@ -1442,19 +1442,19 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1442
1442
|
chat_id: any;
|
|
1443
1443
|
allow_custom_messages: boolean;
|
|
1444
1444
|
notification_settings: {
|
|
1445
|
-
status: "silent" | "on" | "off";
|
|
1446
1445
|
entry: "silent" | "on" | "off";
|
|
1447
1446
|
exit: {
|
|
1447
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1448
1448
|
roi: "silent" | "on" | "off";
|
|
1449
1449
|
emergency_exit: "silent" | "on" | "off";
|
|
1450
1450
|
force_exit: "silent" | "on" | "off";
|
|
1451
1451
|
exit_signal: "silent" | "on" | "off";
|
|
1452
1452
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1453
1453
|
stop_loss: "silent" | "on" | "off";
|
|
1454
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1455
1454
|
custom_exit: "silent" | "on" | "off";
|
|
1456
1455
|
partial_exit: "silent" | "on" | "off";
|
|
1457
1456
|
};
|
|
1457
|
+
status: "silent" | "on" | "off";
|
|
1458
1458
|
warning: "silent" | "on" | "off";
|
|
1459
1459
|
startup: "silent" | "on" | "off";
|
|
1460
1460
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1469,8 +1469,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1469
1469
|
reload: boolean;
|
|
1470
1470
|
balance_dust_level: number;
|
|
1471
1471
|
} | undefined;
|
|
1472
|
-
dry_run_wallet?: number | undefined;
|
|
1473
|
-
max_open_trades?: number | undefined;
|
|
1474
1472
|
plugins?: {
|
|
1475
1473
|
number_assets?: number | undefined;
|
|
1476
1474
|
refresh_period?: number | undefined;
|
|
@@ -1479,6 +1477,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1479
1477
|
removeRecentlyListed?: boolean | undefined;
|
|
1480
1478
|
removeRecentlyListedDays?: number | undefined;
|
|
1481
1479
|
} | undefined;
|
|
1480
|
+
dry_run_wallet?: number | undefined;
|
|
1481
|
+
max_open_trades?: number | undefined;
|
|
1482
1482
|
fiat_display_currency?: string | undefined;
|
|
1483
1483
|
unfilledtimeout?: {
|
|
1484
1484
|
entry: number;
|
|
@@ -1492,37 +1492,36 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1492
1492
|
enabled: boolean;
|
|
1493
1493
|
format: string;
|
|
1494
1494
|
webhookstatus: {
|
|
1495
|
-
|
|
1495
|
+
userId: string;
|
|
1496
1496
|
event: string;
|
|
1497
1497
|
status: string;
|
|
1498
|
-
|
|
1498
|
+
traderId: any;
|
|
1499
1499
|
};
|
|
1500
1500
|
webhookentry: {
|
|
1501
|
-
|
|
1502
|
-
traderId: any;
|
|
1503
|
-
stake_amount: string;
|
|
1501
|
+
userId: string;
|
|
1504
1502
|
stake_currency: string;
|
|
1503
|
+
stake_amount: string;
|
|
1505
1504
|
event: string;
|
|
1506
|
-
|
|
1505
|
+
traderId: any;
|
|
1507
1506
|
pair: string;
|
|
1508
1507
|
fiat_currency: string;
|
|
1509
1508
|
};
|
|
1510
1509
|
webhookentrycancel: {
|
|
1511
1510
|
limit: string;
|
|
1512
|
-
|
|
1513
|
-
stake_amount: string;
|
|
1511
|
+
userId: string;
|
|
1514
1512
|
stake_currency: string;
|
|
1513
|
+
stake_amount: string;
|
|
1515
1514
|
event: string;
|
|
1516
|
-
|
|
1515
|
+
traderId: any;
|
|
1517
1516
|
pair: string;
|
|
1518
1517
|
fiat_currency: string;
|
|
1519
1518
|
};
|
|
1520
1519
|
webhookentryfill: {
|
|
1521
|
-
|
|
1522
|
-
stake_amount: string;
|
|
1520
|
+
userId: string;
|
|
1523
1521
|
stake_currency: string;
|
|
1522
|
+
stake_amount: string;
|
|
1524
1523
|
event: string;
|
|
1525
|
-
|
|
1524
|
+
traderId: any;
|
|
1526
1525
|
pair: string;
|
|
1527
1526
|
trade_id: string;
|
|
1528
1527
|
open_rate: string;
|
|
@@ -1531,10 +1530,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1531
1530
|
};
|
|
1532
1531
|
webhookexit: {
|
|
1533
1532
|
limit: string;
|
|
1534
|
-
|
|
1533
|
+
userId: string;
|
|
1535
1534
|
stake_currency: string;
|
|
1536
1535
|
event: string;
|
|
1537
|
-
|
|
1536
|
+
traderId: any;
|
|
1538
1537
|
pair: string;
|
|
1539
1538
|
fiat_currency: string;
|
|
1540
1539
|
trade_id: string;
|
|
@@ -1549,22 +1548,23 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1549
1548
|
};
|
|
1550
1549
|
webhookexitcancel: {
|
|
1551
1550
|
limit: string;
|
|
1552
|
-
|
|
1551
|
+
userId: string;
|
|
1553
1552
|
stake_currency: string;
|
|
1554
1553
|
event: string;
|
|
1555
|
-
|
|
1554
|
+
traderId: any;
|
|
1556
1555
|
pair: string;
|
|
1557
1556
|
profit_amount: string;
|
|
1558
1557
|
profit_ratio: string;
|
|
1559
1558
|
};
|
|
1560
1559
|
webhookexitfill: {
|
|
1561
|
-
traderId: any;
|
|
1562
|
-
event: string;
|
|
1563
1560
|
userId: string;
|
|
1561
|
+
event: string;
|
|
1562
|
+
traderId: any;
|
|
1564
1563
|
pair: string;
|
|
1565
1564
|
close_rate: string;
|
|
1566
1565
|
};
|
|
1567
1566
|
} | undefined;
|
|
1567
|
+
reset?: boolean | undefined;
|
|
1568
1568
|
host: string;
|
|
1569
1569
|
name: any;
|
|
1570
1570
|
provider: "docker";
|
|
@@ -1574,20 +1574,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1574
1574
|
_id: string | {};
|
|
1575
1575
|
createdAt: any;
|
|
1576
1576
|
updatedAt: any;
|
|
1577
|
-
|
|
1578
|
-
strategyId: string | {};
|
|
1579
|
-
stake_amount: string | number;
|
|
1580
|
-
stake_currency: string;
|
|
1581
|
-
exchangeId: any;
|
|
1582
|
-
userId: any;
|
|
1577
|
+
connected: boolean;
|
|
1583
1578
|
which: string;
|
|
1579
|
+
userId: any;
|
|
1580
|
+
"traders/pods": any;
|
|
1584
1581
|
exchange: any;
|
|
1585
|
-
|
|
1582
|
+
exchangeId: any;
|
|
1583
|
+
stake_currency: string;
|
|
1584
|
+
stake_amount: string | number;
|
|
1586
1585
|
dry_run: boolean;
|
|
1587
1586
|
handling: string;
|
|
1588
1587
|
initial_state: string;
|
|
1589
1588
|
pairlists: any;
|
|
1590
1589
|
strategy: any;
|
|
1590
|
+
strategyId: string | {};
|
|
1591
1591
|
entry_pricing: {
|
|
1592
1592
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1593
1593
|
use_order_book?: boolean | undefined;
|
|
@@ -1607,35 +1607,34 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1607
1607
|
api_server: {
|
|
1608
1608
|
password: string;
|
|
1609
1609
|
enabled: boolean;
|
|
1610
|
+
username: string;
|
|
1610
1611
|
listen_ip_address: string;
|
|
1611
1612
|
listen_port: number;
|
|
1612
1613
|
verbosity: string;
|
|
1613
1614
|
jwt_secret_key: string;
|
|
1614
1615
|
CORS_origins: string[];
|
|
1615
|
-
username: string;
|
|
1616
1616
|
};
|
|
1617
1617
|
pod: string;
|
|
1618
1618
|
}[] | undefined;
|
|
1619
1619
|
createdAt?: any;
|
|
1620
1620
|
updatedAt?: any;
|
|
1621
|
+
userId?: string | {} | undefined;
|
|
1621
1622
|
'strategies/templates'?: {
|
|
1622
1623
|
_id?: string | {} | undefined;
|
|
1624
|
+
createdAt?: any;
|
|
1623
1625
|
values: any;
|
|
1624
1626
|
name: string;
|
|
1625
|
-
createdAt: any;
|
|
1626
1627
|
description: string;
|
|
1627
1628
|
type: string;
|
|
1628
1629
|
} | undefined;
|
|
1630
|
+
file?: any;
|
|
1631
|
+
templateId?: string | {} | undefined;
|
|
1632
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1629
1633
|
stoploss?: number | undefined;
|
|
1630
1634
|
minimal_roi?: {
|
|
1631
1635
|
minutes: number;
|
|
1632
1636
|
profit: number;
|
|
1633
1637
|
}[] | undefined;
|
|
1634
|
-
results?: unknown;
|
|
1635
|
-
userId?: string | {} | undefined;
|
|
1636
|
-
file?: any;
|
|
1637
|
-
templateId?: string | {} | undefined;
|
|
1638
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
1639
1638
|
exit_sell_signal?: boolean | undefined;
|
|
1640
1639
|
exit_profit_only?: boolean | undefined;
|
|
1641
1640
|
exit_profit_offset?: number | undefined;
|
|
@@ -1644,10 +1643,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1644
1643
|
stoploss?: string | undefined;
|
|
1645
1644
|
entry?: "Limit" | "Market" | undefined;
|
|
1646
1645
|
exit?: "Limit" | "Market" | undefined;
|
|
1647
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1648
1646
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1649
1647
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1650
1648
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1649
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1651
1650
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1652
1651
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1653
1652
|
} | undefined;
|
|
@@ -1679,10 +1678,12 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1679
1678
|
}[] | undefined;
|
|
1680
1679
|
indicators?: unknown[] | undefined;
|
|
1681
1680
|
code?: unknown;
|
|
1681
|
+
results?: unknown;
|
|
1682
1682
|
configured?: boolean | undefined;
|
|
1683
1683
|
name: any;
|
|
1684
1684
|
'strategies/indicators': any;
|
|
1685
1685
|
}>;
|
|
1686
|
+
strategyId: string | {};
|
|
1686
1687
|
pod: any;
|
|
1687
1688
|
trader: Partial<{
|
|
1688
1689
|
telegram?: {
|
|
@@ -1693,19 +1694,19 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1693
1694
|
chat_id: any;
|
|
1694
1695
|
allow_custom_messages: boolean;
|
|
1695
1696
|
notification_settings: {
|
|
1696
|
-
status: "silent" | "on" | "off";
|
|
1697
1697
|
entry: "silent" | "on" | "off";
|
|
1698
1698
|
exit: {
|
|
1699
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1699
1700
|
roi: "silent" | "on" | "off";
|
|
1700
1701
|
emergency_exit: "silent" | "on" | "off";
|
|
1701
1702
|
force_exit: "silent" | "on" | "off";
|
|
1702
1703
|
exit_signal: "silent" | "on" | "off";
|
|
1703
1704
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1704
1705
|
stop_loss: "silent" | "on" | "off";
|
|
1705
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1706
1706
|
custom_exit: "silent" | "on" | "off";
|
|
1707
1707
|
partial_exit: "silent" | "on" | "off";
|
|
1708
1708
|
};
|
|
1709
|
+
status: "silent" | "on" | "off";
|
|
1709
1710
|
warning: "silent" | "on" | "off";
|
|
1710
1711
|
startup: "silent" | "on" | "off";
|
|
1711
1712
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1720,8 +1721,6 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1720
1721
|
reload: boolean;
|
|
1721
1722
|
balance_dust_level: number;
|
|
1722
1723
|
} | undefined;
|
|
1723
|
-
dry_run_wallet?: number | undefined;
|
|
1724
|
-
max_open_trades?: number | undefined;
|
|
1725
1724
|
plugins?: {
|
|
1726
1725
|
number_assets?: number | undefined;
|
|
1727
1726
|
refresh_period?: number | undefined;
|
|
@@ -1730,6 +1729,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1730
1729
|
removeRecentlyListed?: boolean | undefined;
|
|
1731
1730
|
removeRecentlyListedDays?: number | undefined;
|
|
1732
1731
|
} | undefined;
|
|
1732
|
+
dry_run_wallet?: number | undefined;
|
|
1733
|
+
max_open_trades?: number | undefined;
|
|
1733
1734
|
fiat_display_currency?: string | undefined;
|
|
1734
1735
|
unfilledtimeout?: {
|
|
1735
1736
|
entry: number;
|
|
@@ -1743,37 +1744,36 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1743
1744
|
enabled: boolean;
|
|
1744
1745
|
format: string;
|
|
1745
1746
|
webhookstatus: {
|
|
1746
|
-
|
|
1747
|
+
userId: string;
|
|
1747
1748
|
event: string;
|
|
1748
1749
|
status: string;
|
|
1749
|
-
|
|
1750
|
+
traderId: any;
|
|
1750
1751
|
};
|
|
1751
1752
|
webhookentry: {
|
|
1752
|
-
|
|
1753
|
-
traderId: any;
|
|
1754
|
-
stake_amount: string;
|
|
1753
|
+
userId: string;
|
|
1755
1754
|
stake_currency: string;
|
|
1755
|
+
stake_amount: string;
|
|
1756
1756
|
event: string;
|
|
1757
|
-
|
|
1757
|
+
traderId: any;
|
|
1758
1758
|
pair: string;
|
|
1759
1759
|
fiat_currency: string;
|
|
1760
1760
|
};
|
|
1761
1761
|
webhookentrycancel: {
|
|
1762
1762
|
limit: string;
|
|
1763
|
-
|
|
1764
|
-
stake_amount: string;
|
|
1763
|
+
userId: string;
|
|
1765
1764
|
stake_currency: string;
|
|
1765
|
+
stake_amount: string;
|
|
1766
1766
|
event: string;
|
|
1767
|
-
|
|
1767
|
+
traderId: any;
|
|
1768
1768
|
pair: string;
|
|
1769
1769
|
fiat_currency: string;
|
|
1770
1770
|
};
|
|
1771
1771
|
webhookentryfill: {
|
|
1772
|
-
|
|
1773
|
-
stake_amount: string;
|
|
1772
|
+
userId: string;
|
|
1774
1773
|
stake_currency: string;
|
|
1774
|
+
stake_amount: string;
|
|
1775
1775
|
event: string;
|
|
1776
|
-
|
|
1776
|
+
traderId: any;
|
|
1777
1777
|
pair: string;
|
|
1778
1778
|
trade_id: string;
|
|
1779
1779
|
open_rate: string;
|
|
@@ -1782,10 +1782,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1782
1782
|
};
|
|
1783
1783
|
webhookexit: {
|
|
1784
1784
|
limit: string;
|
|
1785
|
-
|
|
1785
|
+
userId: string;
|
|
1786
1786
|
stake_currency: string;
|
|
1787
1787
|
event: string;
|
|
1788
|
-
|
|
1788
|
+
traderId: any;
|
|
1789
1789
|
pair: string;
|
|
1790
1790
|
fiat_currency: string;
|
|
1791
1791
|
trade_id: string;
|
|
@@ -1800,22 +1800,23 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1800
1800
|
};
|
|
1801
1801
|
webhookexitcancel: {
|
|
1802
1802
|
limit: string;
|
|
1803
|
-
|
|
1803
|
+
userId: string;
|
|
1804
1804
|
stake_currency: string;
|
|
1805
1805
|
event: string;
|
|
1806
|
-
|
|
1806
|
+
traderId: any;
|
|
1807
1807
|
pair: string;
|
|
1808
1808
|
profit_amount: string;
|
|
1809
1809
|
profit_ratio: string;
|
|
1810
1810
|
};
|
|
1811
1811
|
webhookexitfill: {
|
|
1812
|
-
traderId: any;
|
|
1813
|
-
event: string;
|
|
1814
1812
|
userId: string;
|
|
1813
|
+
event: string;
|
|
1814
|
+
traderId: any;
|
|
1815
1815
|
pair: string;
|
|
1816
1816
|
close_rate: string;
|
|
1817
1817
|
};
|
|
1818
1818
|
} | undefined;
|
|
1819
|
+
reset?: boolean | undefined;
|
|
1819
1820
|
host: string;
|
|
1820
1821
|
name: any;
|
|
1821
1822
|
provider: "docker";
|
|
@@ -1825,20 +1826,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1825
1826
|
_id: string | {};
|
|
1826
1827
|
createdAt: any;
|
|
1827
1828
|
updatedAt: any;
|
|
1828
|
-
|
|
1829
|
-
strategyId: string | {};
|
|
1830
|
-
stake_amount: string | number;
|
|
1831
|
-
stake_currency: string;
|
|
1832
|
-
exchangeId: any;
|
|
1833
|
-
userId: any;
|
|
1829
|
+
connected: boolean;
|
|
1834
1830
|
which: string;
|
|
1831
|
+
userId: any;
|
|
1832
|
+
"traders/pods": any;
|
|
1835
1833
|
exchange: any;
|
|
1836
|
-
|
|
1834
|
+
exchangeId: any;
|
|
1835
|
+
stake_currency: string;
|
|
1836
|
+
stake_amount: string | number;
|
|
1837
1837
|
dry_run: boolean;
|
|
1838
1838
|
handling: string;
|
|
1839
1839
|
initial_state: string;
|
|
1840
1840
|
pairlists: any;
|
|
1841
1841
|
strategy: any;
|
|
1842
|
+
strategyId: string | {};
|
|
1842
1843
|
entry_pricing: {
|
|
1843
1844
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
1844
1845
|
use_order_book?: boolean | undefined;
|
|
@@ -1858,16 +1859,17 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1858
1859
|
api_server: {
|
|
1859
1860
|
password: string;
|
|
1860
1861
|
enabled: boolean;
|
|
1862
|
+
username: string;
|
|
1861
1863
|
listen_ip_address: string;
|
|
1862
1864
|
listen_port: number;
|
|
1863
1865
|
verbosity: string;
|
|
1864
1866
|
jwt_secret_key: string;
|
|
1865
1867
|
CORS_origins: string[];
|
|
1866
|
-
username: string;
|
|
1867
1868
|
};
|
|
1868
1869
|
pod: string;
|
|
1869
1870
|
}>;
|
|
1870
1871
|
}> | undefined;
|
|
1872
|
+
options?: any;
|
|
1871
1873
|
trader?: Partial<{
|
|
1872
1874
|
telegram?: {
|
|
1873
1875
|
access_hash?: string | null | undefined;
|
|
@@ -1877,19 +1879,19 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1877
1879
|
chat_id: any;
|
|
1878
1880
|
allow_custom_messages: boolean;
|
|
1879
1881
|
notification_settings: {
|
|
1880
|
-
status: "silent" | "on" | "off";
|
|
1881
1882
|
entry: "silent" | "on" | "off";
|
|
1882
1883
|
exit: {
|
|
1884
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1883
1885
|
roi: "silent" | "on" | "off";
|
|
1884
1886
|
emergency_exit: "silent" | "on" | "off";
|
|
1885
1887
|
force_exit: "silent" | "on" | "off";
|
|
1886
1888
|
exit_signal: "silent" | "on" | "off";
|
|
1887
1889
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
1888
1890
|
stop_loss: "silent" | "on" | "off";
|
|
1889
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1890
1891
|
custom_exit: "silent" | "on" | "off";
|
|
1891
1892
|
partial_exit: "silent" | "on" | "off";
|
|
1892
1893
|
};
|
|
1894
|
+
status: "silent" | "on" | "off";
|
|
1893
1895
|
warning: "silent" | "on" | "off";
|
|
1894
1896
|
startup: "silent" | "on" | "off";
|
|
1895
1897
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -1903,9 +1905,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1903
1905
|
};
|
|
1904
1906
|
reload: boolean;
|
|
1905
1907
|
balance_dust_level: number;
|
|
1906
|
-
} | undefined;
|
|
1907
|
-
dry_run_wallet?: number | undefined;
|
|
1908
|
-
max_open_trades?: number | undefined;
|
|
1908
|
+
} | undefined;
|
|
1909
1909
|
plugins?: {
|
|
1910
1910
|
number_assets?: number | undefined;
|
|
1911
1911
|
refresh_period?: number | undefined;
|
|
@@ -1914,6 +1914,8 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1914
1914
|
removeRecentlyListed?: boolean | undefined;
|
|
1915
1915
|
removeRecentlyListedDays?: number | undefined;
|
|
1916
1916
|
} | undefined;
|
|
1917
|
+
dry_run_wallet?: number | undefined;
|
|
1918
|
+
max_open_trades?: number | undefined;
|
|
1917
1919
|
fiat_display_currency?: string | undefined;
|
|
1918
1920
|
unfilledtimeout?: {
|
|
1919
1921
|
entry: number;
|
|
@@ -1927,37 +1929,36 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1927
1929
|
enabled: boolean;
|
|
1928
1930
|
format: string;
|
|
1929
1931
|
webhookstatus: {
|
|
1930
|
-
|
|
1932
|
+
userId: string;
|
|
1931
1933
|
event: string;
|
|
1932
1934
|
status: string;
|
|
1933
|
-
|
|
1935
|
+
traderId: any;
|
|
1934
1936
|
};
|
|
1935
1937
|
webhookentry: {
|
|
1936
|
-
|
|
1937
|
-
traderId: any;
|
|
1938
|
-
stake_amount: string;
|
|
1938
|
+
userId: string;
|
|
1939
1939
|
stake_currency: string;
|
|
1940
|
+
stake_amount: string;
|
|
1940
1941
|
event: string;
|
|
1941
|
-
|
|
1942
|
+
traderId: any;
|
|
1942
1943
|
pair: string;
|
|
1943
1944
|
fiat_currency: string;
|
|
1944
1945
|
};
|
|
1945
1946
|
webhookentrycancel: {
|
|
1946
1947
|
limit: string;
|
|
1947
|
-
|
|
1948
|
-
stake_amount: string;
|
|
1948
|
+
userId: string;
|
|
1949
1949
|
stake_currency: string;
|
|
1950
|
+
stake_amount: string;
|
|
1950
1951
|
event: string;
|
|
1951
|
-
|
|
1952
|
+
traderId: any;
|
|
1952
1953
|
pair: string;
|
|
1953
1954
|
fiat_currency: string;
|
|
1954
1955
|
};
|
|
1955
1956
|
webhookentryfill: {
|
|
1956
|
-
|
|
1957
|
-
stake_amount: string;
|
|
1957
|
+
userId: string;
|
|
1958
1958
|
stake_currency: string;
|
|
1959
|
+
stake_amount: string;
|
|
1959
1960
|
event: string;
|
|
1960
|
-
|
|
1961
|
+
traderId: any;
|
|
1961
1962
|
pair: string;
|
|
1962
1963
|
trade_id: string;
|
|
1963
1964
|
open_rate: string;
|
|
@@ -1966,10 +1967,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1966
1967
|
};
|
|
1967
1968
|
webhookexit: {
|
|
1968
1969
|
limit: string;
|
|
1969
|
-
|
|
1970
|
+
userId: string;
|
|
1970
1971
|
stake_currency: string;
|
|
1971
1972
|
event: string;
|
|
1972
|
-
|
|
1973
|
+
traderId: any;
|
|
1973
1974
|
pair: string;
|
|
1974
1975
|
fiat_currency: string;
|
|
1975
1976
|
trade_id: string;
|
|
@@ -1984,22 +1985,23 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
1984
1985
|
};
|
|
1985
1986
|
webhookexitcancel: {
|
|
1986
1987
|
limit: string;
|
|
1987
|
-
|
|
1988
|
+
userId: string;
|
|
1988
1989
|
stake_currency: string;
|
|
1989
1990
|
event: string;
|
|
1990
|
-
|
|
1991
|
+
traderId: any;
|
|
1991
1992
|
pair: string;
|
|
1992
1993
|
profit_amount: string;
|
|
1993
1994
|
profit_ratio: string;
|
|
1994
1995
|
};
|
|
1995
1996
|
webhookexitfill: {
|
|
1996
|
-
traderId: any;
|
|
1997
|
-
event: string;
|
|
1998
1997
|
userId: string;
|
|
1998
|
+
event: string;
|
|
1999
|
+
traderId: any;
|
|
1999
2000
|
pair: string;
|
|
2000
2001
|
close_rate: string;
|
|
2001
2002
|
};
|
|
2002
2003
|
} | undefined;
|
|
2004
|
+
reset?: boolean | undefined;
|
|
2003
2005
|
host: string;
|
|
2004
2006
|
name: any;
|
|
2005
2007
|
provider: "docker";
|
|
@@ -2009,20 +2011,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2009
2011
|
_id: string | {};
|
|
2010
2012
|
createdAt: any;
|
|
2011
2013
|
updatedAt: any;
|
|
2012
|
-
|
|
2013
|
-
strategyId: string | {};
|
|
2014
|
-
stake_amount: string | number;
|
|
2015
|
-
stake_currency: string;
|
|
2016
|
-
exchangeId: any;
|
|
2017
|
-
userId: any;
|
|
2014
|
+
connected: boolean;
|
|
2018
2015
|
which: string;
|
|
2016
|
+
userId: any;
|
|
2017
|
+
"traders/pods": any;
|
|
2019
2018
|
exchange: any;
|
|
2020
|
-
|
|
2019
|
+
exchangeId: any;
|
|
2020
|
+
stake_currency: string;
|
|
2021
|
+
stake_amount: string | number;
|
|
2021
2022
|
dry_run: boolean;
|
|
2022
2023
|
handling: string;
|
|
2023
2024
|
initial_state: string;
|
|
2024
2025
|
pairlists: any;
|
|
2025
2026
|
strategy: any;
|
|
2027
|
+
strategyId: string | {};
|
|
2026
2028
|
entry_pricing: {
|
|
2027
2029
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2028
2030
|
use_order_book?: boolean | undefined;
|
|
@@ -2042,19 +2044,20 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
2042
2044
|
api_server: {
|
|
2043
2045
|
password: string;
|
|
2044
2046
|
enabled: boolean;
|
|
2047
|
+
username: string;
|
|
2045
2048
|
listen_ip_address: string;
|
|
2046
2049
|
listen_port: number;
|
|
2047
2050
|
verbosity: string;
|
|
2048
2051
|
jwt_secret_key: string;
|
|
2049
2052
|
CORS_origins: string[];
|
|
2050
|
-
username: string;
|
|
2051
2053
|
};
|
|
2052
2054
|
pod: string;
|
|
2053
2055
|
}> | undefined;
|
|
2054
2056
|
_id: string | {};
|
|
2055
2057
|
createdAt: any;
|
|
2056
|
-
|
|
2058
|
+
updatedAt: any;
|
|
2057
2059
|
userId: any;
|
|
2060
|
+
traderId: any;
|
|
2058
2061
|
action: string;
|
|
2059
2062
|
result: any;
|
|
2060
2063
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
@@ -2115,7 +2118,6 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2115
2118
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2116
2119
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2117
2120
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2118
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2119
2121
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2120
2122
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2121
2123
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2240,6 +2242,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2240
2242
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2241
2243
|
}>>;
|
|
2242
2244
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2245
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2243
2246
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2244
2247
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2245
2248
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2301,7 +2304,6 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2301
2304
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2302
2305
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2303
2306
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2304
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2305
2307
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2306
2308
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2307
2309
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2426,6 +2428,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2426
2428
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2427
2429
|
}>>;
|
|
2428
2430
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2431
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2429
2432
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2430
2433
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2431
2434
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2593,7 +2596,6 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2593
2596
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2594
2597
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2595
2598
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
2596
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
2597
2599
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2598
2600
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2599
2601
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2718,6 +2720,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2718
2720
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2719
2721
|
}>>;
|
|
2720
2722
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2723
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2721
2724
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2722
2725
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
2723
2726
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -2728,7 +2731,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2728
2731
|
name: import("@feathersjs/typebox").TString<string>;
|
|
2729
2732
|
type: import("@feathersjs/typebox").TString<string>;
|
|
2730
2733
|
description: import("@feathersjs/typebox").TString<string>;
|
|
2731
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
2734
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2732
2735
|
values: import("@feathersjs/typebox").TAny;
|
|
2733
2736
|
}>>>;
|
|
2734
2737
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -2739,6 +2742,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2739
2742
|
options: import("@feathersjs/typebox").TAny;
|
|
2740
2743
|
}>>>>;
|
|
2741
2744
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
2745
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
2742
2746
|
action: import("@feathersjs/typebox").TString<string>;
|
|
2743
2747
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2744
2748
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -2746,27 +2750,23 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
2746
2750
|
export type TradersPodsApiData = Static<typeof tradersPodsApiDataSchema>;
|
|
2747
2751
|
export declare const tradersPodsApiDataValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
2748
2752
|
export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Resolver<{
|
|
2749
|
-
options?: any;
|
|
2750
2753
|
'traders/pods'?: Partial<{
|
|
2751
2754
|
host?: string | undefined;
|
|
2752
2755
|
stop?: boolean | undefined;
|
|
2753
2756
|
provider: "docker";
|
|
2754
2757
|
_id: string | {};
|
|
2755
2758
|
options: any;
|
|
2756
|
-
strategyId: string | {};
|
|
2757
|
-
exchangeId: string;
|
|
2758
2759
|
exchange: Partial<{
|
|
2759
2760
|
password?: string | undefined;
|
|
2760
2761
|
name?: any;
|
|
2761
2762
|
apiKey?: string | undefined;
|
|
2763
|
+
token?: string | undefined;
|
|
2762
2764
|
secret?: string | undefined;
|
|
2763
2765
|
avatar?: any;
|
|
2764
2766
|
createdAt?: any;
|
|
2765
2767
|
updatedAt?: any;
|
|
2766
|
-
|
|
2767
|
-
which?: string | undefined;
|
|
2768
|
+
login?: string | undefined;
|
|
2768
2769
|
connected?: boolean | undefined;
|
|
2769
|
-
token?: string | undefined;
|
|
2770
2770
|
downloaded?: {
|
|
2771
2771
|
updatedAt: any;
|
|
2772
2772
|
size: string;
|
|
@@ -2794,15 +2794,17 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2794
2794
|
}[] | undefined;
|
|
2795
2795
|
whitelist?: any[] | undefined;
|
|
2796
2796
|
ccxt_async_config?: any;
|
|
2797
|
+
which?: string | undefined;
|
|
2797
2798
|
requiredCredentials?: any;
|
|
2798
2799
|
uid?: string | undefined;
|
|
2799
|
-
login?: string | undefined;
|
|
2800
2800
|
twofa?: string | undefined;
|
|
2801
2801
|
privateKey?: string | undefined;
|
|
2802
2802
|
walletAddress?: string | undefined;
|
|
2803
|
+
userId?: string | {} | undefined;
|
|
2803
2804
|
__v?: any;
|
|
2804
2805
|
_id: string | {};
|
|
2805
2806
|
}>;
|
|
2807
|
+
exchangeId: string;
|
|
2806
2808
|
strategy: Partial<{
|
|
2807
2809
|
_id?: string | {} | undefined;
|
|
2808
2810
|
traders?: {
|
|
@@ -2814,19 +2816,19 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2814
2816
|
chat_id: any;
|
|
2815
2817
|
allow_custom_messages: boolean;
|
|
2816
2818
|
notification_settings: {
|
|
2817
|
-
status: "silent" | "on" | "off";
|
|
2818
2819
|
entry: "silent" | "on" | "off";
|
|
2819
2820
|
exit: {
|
|
2821
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2820
2822
|
roi: "silent" | "on" | "off";
|
|
2821
2823
|
emergency_exit: "silent" | "on" | "off";
|
|
2822
2824
|
force_exit: "silent" | "on" | "off";
|
|
2823
2825
|
exit_signal: "silent" | "on" | "off";
|
|
2824
2826
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
2825
2827
|
stop_loss: "silent" | "on" | "off";
|
|
2826
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2827
2828
|
custom_exit: "silent" | "on" | "off";
|
|
2828
2829
|
partial_exit: "silent" | "on" | "off";
|
|
2829
2830
|
};
|
|
2831
|
+
status: "silent" | "on" | "off";
|
|
2830
2832
|
warning: "silent" | "on" | "off";
|
|
2831
2833
|
startup: "silent" | "on" | "off";
|
|
2832
2834
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -2841,8 +2843,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2841
2843
|
reload: boolean;
|
|
2842
2844
|
balance_dust_level: number;
|
|
2843
2845
|
} | undefined;
|
|
2844
|
-
dry_run_wallet?: number | undefined;
|
|
2845
|
-
max_open_trades?: number | undefined;
|
|
2846
2846
|
plugins?: {
|
|
2847
2847
|
number_assets?: number | undefined;
|
|
2848
2848
|
refresh_period?: number | undefined;
|
|
@@ -2851,6 +2851,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2851
2851
|
removeRecentlyListed?: boolean | undefined;
|
|
2852
2852
|
removeRecentlyListedDays?: number | undefined;
|
|
2853
2853
|
} | undefined;
|
|
2854
|
+
dry_run_wallet?: number | undefined;
|
|
2855
|
+
max_open_trades?: number | undefined;
|
|
2854
2856
|
fiat_display_currency?: string | undefined;
|
|
2855
2857
|
unfilledtimeout?: {
|
|
2856
2858
|
entry: number;
|
|
@@ -2864,37 +2866,36 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2864
2866
|
enabled: boolean;
|
|
2865
2867
|
format: string;
|
|
2866
2868
|
webhookstatus: {
|
|
2867
|
-
|
|
2869
|
+
userId: string;
|
|
2868
2870
|
event: string;
|
|
2869
2871
|
status: string;
|
|
2870
|
-
|
|
2872
|
+
traderId: any;
|
|
2871
2873
|
};
|
|
2872
2874
|
webhookentry: {
|
|
2873
|
-
|
|
2874
|
-
traderId: any;
|
|
2875
|
-
stake_amount: string;
|
|
2875
|
+
userId: string;
|
|
2876
2876
|
stake_currency: string;
|
|
2877
|
+
stake_amount: string;
|
|
2877
2878
|
event: string;
|
|
2878
|
-
|
|
2879
|
+
traderId: any;
|
|
2879
2880
|
pair: string;
|
|
2880
2881
|
fiat_currency: string;
|
|
2881
2882
|
};
|
|
2882
2883
|
webhookentrycancel: {
|
|
2883
2884
|
limit: string;
|
|
2884
|
-
|
|
2885
|
-
stake_amount: string;
|
|
2885
|
+
userId: string;
|
|
2886
2886
|
stake_currency: string;
|
|
2887
|
+
stake_amount: string;
|
|
2887
2888
|
event: string;
|
|
2888
|
-
|
|
2889
|
+
traderId: any;
|
|
2889
2890
|
pair: string;
|
|
2890
2891
|
fiat_currency: string;
|
|
2891
2892
|
};
|
|
2892
2893
|
webhookentryfill: {
|
|
2893
|
-
|
|
2894
|
-
stake_amount: string;
|
|
2894
|
+
userId: string;
|
|
2895
2895
|
stake_currency: string;
|
|
2896
|
+
stake_amount: string;
|
|
2896
2897
|
event: string;
|
|
2897
|
-
|
|
2898
|
+
traderId: any;
|
|
2898
2899
|
pair: string;
|
|
2899
2900
|
trade_id: string;
|
|
2900
2901
|
open_rate: string;
|
|
@@ -2903,10 +2904,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2903
2904
|
};
|
|
2904
2905
|
webhookexit: {
|
|
2905
2906
|
limit: string;
|
|
2906
|
-
|
|
2907
|
+
userId: string;
|
|
2907
2908
|
stake_currency: string;
|
|
2908
2909
|
event: string;
|
|
2909
|
-
|
|
2910
|
+
traderId: any;
|
|
2910
2911
|
pair: string;
|
|
2911
2912
|
fiat_currency: string;
|
|
2912
2913
|
trade_id: string;
|
|
@@ -2921,22 +2922,23 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2921
2922
|
};
|
|
2922
2923
|
webhookexitcancel: {
|
|
2923
2924
|
limit: string;
|
|
2924
|
-
|
|
2925
|
+
userId: string;
|
|
2925
2926
|
stake_currency: string;
|
|
2926
2927
|
event: string;
|
|
2927
|
-
|
|
2928
|
+
traderId: any;
|
|
2928
2929
|
pair: string;
|
|
2929
2930
|
profit_amount: string;
|
|
2930
2931
|
profit_ratio: string;
|
|
2931
2932
|
};
|
|
2932
2933
|
webhookexitfill: {
|
|
2933
|
-
traderId: any;
|
|
2934
|
-
event: string;
|
|
2935
2934
|
userId: string;
|
|
2935
|
+
event: string;
|
|
2936
|
+
traderId: any;
|
|
2936
2937
|
pair: string;
|
|
2937
2938
|
close_rate: string;
|
|
2938
2939
|
};
|
|
2939
2940
|
} | undefined;
|
|
2941
|
+
reset?: boolean | undefined;
|
|
2940
2942
|
host: string;
|
|
2941
2943
|
name: any;
|
|
2942
2944
|
provider: "docker";
|
|
@@ -2946,20 +2948,20 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2946
2948
|
_id: string | {};
|
|
2947
2949
|
createdAt: any;
|
|
2948
2950
|
updatedAt: any;
|
|
2949
|
-
|
|
2950
|
-
strategyId: string | {};
|
|
2951
|
-
stake_amount: string | number;
|
|
2952
|
-
stake_currency: string;
|
|
2953
|
-
exchangeId: any;
|
|
2954
|
-
userId: any;
|
|
2951
|
+
connected: boolean;
|
|
2955
2952
|
which: string;
|
|
2953
|
+
userId: any;
|
|
2954
|
+
"traders/pods": any;
|
|
2956
2955
|
exchange: any;
|
|
2957
|
-
|
|
2956
|
+
exchangeId: any;
|
|
2957
|
+
stake_currency: string;
|
|
2958
|
+
stake_amount: string | number;
|
|
2958
2959
|
dry_run: boolean;
|
|
2959
2960
|
handling: string;
|
|
2960
2961
|
initial_state: string;
|
|
2961
2962
|
pairlists: any;
|
|
2962
2963
|
strategy: any;
|
|
2964
|
+
strategyId: string | {};
|
|
2963
2965
|
entry_pricing: {
|
|
2964
2966
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
2965
2967
|
use_order_book?: boolean | undefined;
|
|
@@ -2979,35 +2981,34 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
2979
2981
|
api_server: {
|
|
2980
2982
|
password: string;
|
|
2981
2983
|
enabled: boolean;
|
|
2984
|
+
username: string;
|
|
2982
2985
|
listen_ip_address: string;
|
|
2983
2986
|
listen_port: number;
|
|
2984
2987
|
verbosity: string;
|
|
2985
2988
|
jwt_secret_key: string;
|
|
2986
2989
|
CORS_origins: string[];
|
|
2987
|
-
username: string;
|
|
2988
2990
|
};
|
|
2989
2991
|
pod: string;
|
|
2990
2992
|
}[] | undefined;
|
|
2991
2993
|
createdAt?: any;
|
|
2992
2994
|
updatedAt?: any;
|
|
2995
|
+
userId?: string | {} | undefined;
|
|
2993
2996
|
'strategies/templates'?: {
|
|
2994
2997
|
_id?: string | {} | undefined;
|
|
2998
|
+
createdAt?: any;
|
|
2995
2999
|
values: any;
|
|
2996
3000
|
name: string;
|
|
2997
|
-
createdAt: any;
|
|
2998
3001
|
description: string;
|
|
2999
3002
|
type: string;
|
|
3000
3003
|
} | undefined;
|
|
3004
|
+
file?: any;
|
|
3005
|
+
templateId?: string | {} | undefined;
|
|
3006
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3001
3007
|
stoploss?: number | undefined;
|
|
3002
3008
|
minimal_roi?: {
|
|
3003
3009
|
minutes: number;
|
|
3004
3010
|
profit: number;
|
|
3005
3011
|
}[] | undefined;
|
|
3006
|
-
results?: unknown;
|
|
3007
|
-
userId?: string | {} | undefined;
|
|
3008
|
-
file?: any;
|
|
3009
|
-
templateId?: string | {} | undefined;
|
|
3010
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
3011
3012
|
exit_sell_signal?: boolean | undefined;
|
|
3012
3013
|
exit_profit_only?: boolean | undefined;
|
|
3013
3014
|
exit_profit_offset?: number | undefined;
|
|
@@ -3016,10 +3017,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3016
3017
|
stoploss?: string | undefined;
|
|
3017
3018
|
entry?: "Limit" | "Market" | undefined;
|
|
3018
3019
|
exit?: "Limit" | "Market" | undefined;
|
|
3019
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
3020
3020
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
3021
3021
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
3022
3022
|
forcesell?: "Limit" | "Market" | undefined;
|
|
3023
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
3023
3024
|
stoploss_on_exchange_interval?: number | undefined;
|
|
3024
3025
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
3025
3026
|
} | undefined;
|
|
@@ -3051,10 +3052,12 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3051
3052
|
}[] | undefined;
|
|
3052
3053
|
indicators?: unknown[] | undefined;
|
|
3053
3054
|
code?: unknown;
|
|
3055
|
+
results?: unknown;
|
|
3054
3056
|
configured?: boolean | undefined;
|
|
3055
3057
|
name: any;
|
|
3056
3058
|
'strategies/indicators': any;
|
|
3057
3059
|
}>;
|
|
3060
|
+
strategyId: string | {};
|
|
3058
3061
|
pod: any;
|
|
3059
3062
|
trader: Partial<{
|
|
3060
3063
|
telegram?: {
|
|
@@ -3065,19 +3068,19 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3065
3068
|
chat_id: any;
|
|
3066
3069
|
allow_custom_messages: boolean;
|
|
3067
3070
|
notification_settings: {
|
|
3068
|
-
status: "silent" | "on" | "off";
|
|
3069
3071
|
entry: "silent" | "on" | "off";
|
|
3070
3072
|
exit: {
|
|
3073
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3071
3074
|
roi: "silent" | "on" | "off";
|
|
3072
3075
|
emergency_exit: "silent" | "on" | "off";
|
|
3073
3076
|
force_exit: "silent" | "on" | "off";
|
|
3074
3077
|
exit_signal: "silent" | "on" | "off";
|
|
3075
3078
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
3076
3079
|
stop_loss: "silent" | "on" | "off";
|
|
3077
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3078
3080
|
custom_exit: "silent" | "on" | "off";
|
|
3079
3081
|
partial_exit: "silent" | "on" | "off";
|
|
3080
3082
|
};
|
|
3083
|
+
status: "silent" | "on" | "off";
|
|
3081
3084
|
warning: "silent" | "on" | "off";
|
|
3082
3085
|
startup: "silent" | "on" | "off";
|
|
3083
3086
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -3092,8 +3095,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3092
3095
|
reload: boolean;
|
|
3093
3096
|
balance_dust_level: number;
|
|
3094
3097
|
} | undefined;
|
|
3095
|
-
dry_run_wallet?: number | undefined;
|
|
3096
|
-
max_open_trades?: number | undefined;
|
|
3097
3098
|
plugins?: {
|
|
3098
3099
|
number_assets?: number | undefined;
|
|
3099
3100
|
refresh_period?: number | undefined;
|
|
@@ -3102,6 +3103,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3102
3103
|
removeRecentlyListed?: boolean | undefined;
|
|
3103
3104
|
removeRecentlyListedDays?: number | undefined;
|
|
3104
3105
|
} | undefined;
|
|
3106
|
+
dry_run_wallet?: number | undefined;
|
|
3107
|
+
max_open_trades?: number | undefined;
|
|
3105
3108
|
fiat_display_currency?: string | undefined;
|
|
3106
3109
|
unfilledtimeout?: {
|
|
3107
3110
|
entry: number;
|
|
@@ -3115,37 +3118,36 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3115
3118
|
enabled: boolean;
|
|
3116
3119
|
format: string;
|
|
3117
3120
|
webhookstatus: {
|
|
3118
|
-
|
|
3121
|
+
userId: string;
|
|
3119
3122
|
event: string;
|
|
3120
3123
|
status: string;
|
|
3121
|
-
|
|
3124
|
+
traderId: any;
|
|
3122
3125
|
};
|
|
3123
3126
|
webhookentry: {
|
|
3124
|
-
|
|
3125
|
-
traderId: any;
|
|
3126
|
-
stake_amount: string;
|
|
3127
|
+
userId: string;
|
|
3127
3128
|
stake_currency: string;
|
|
3129
|
+
stake_amount: string;
|
|
3128
3130
|
event: string;
|
|
3129
|
-
|
|
3131
|
+
traderId: any;
|
|
3130
3132
|
pair: string;
|
|
3131
3133
|
fiat_currency: string;
|
|
3132
3134
|
};
|
|
3133
3135
|
webhookentrycancel: {
|
|
3134
3136
|
limit: string;
|
|
3135
|
-
|
|
3136
|
-
stake_amount: string;
|
|
3137
|
+
userId: string;
|
|
3137
3138
|
stake_currency: string;
|
|
3139
|
+
stake_amount: string;
|
|
3138
3140
|
event: string;
|
|
3139
|
-
|
|
3141
|
+
traderId: any;
|
|
3140
3142
|
pair: string;
|
|
3141
3143
|
fiat_currency: string;
|
|
3142
3144
|
};
|
|
3143
3145
|
webhookentryfill: {
|
|
3144
|
-
|
|
3145
|
-
stake_amount: string;
|
|
3146
|
+
userId: string;
|
|
3146
3147
|
stake_currency: string;
|
|
3148
|
+
stake_amount: string;
|
|
3147
3149
|
event: string;
|
|
3148
|
-
|
|
3150
|
+
traderId: any;
|
|
3149
3151
|
pair: string;
|
|
3150
3152
|
trade_id: string;
|
|
3151
3153
|
open_rate: string;
|
|
@@ -3154,10 +3156,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3154
3156
|
};
|
|
3155
3157
|
webhookexit: {
|
|
3156
3158
|
limit: string;
|
|
3157
|
-
|
|
3159
|
+
userId: string;
|
|
3158
3160
|
stake_currency: string;
|
|
3159
3161
|
event: string;
|
|
3160
|
-
|
|
3162
|
+
traderId: any;
|
|
3161
3163
|
pair: string;
|
|
3162
3164
|
fiat_currency: string;
|
|
3163
3165
|
trade_id: string;
|
|
@@ -3172,22 +3174,23 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3172
3174
|
};
|
|
3173
3175
|
webhookexitcancel: {
|
|
3174
3176
|
limit: string;
|
|
3175
|
-
|
|
3177
|
+
userId: string;
|
|
3176
3178
|
stake_currency: string;
|
|
3177
3179
|
event: string;
|
|
3178
|
-
|
|
3180
|
+
traderId: any;
|
|
3179
3181
|
pair: string;
|
|
3180
3182
|
profit_amount: string;
|
|
3181
3183
|
profit_ratio: string;
|
|
3182
3184
|
};
|
|
3183
3185
|
webhookexitfill: {
|
|
3184
|
-
traderId: any;
|
|
3185
|
-
event: string;
|
|
3186
3186
|
userId: string;
|
|
3187
|
+
event: string;
|
|
3188
|
+
traderId: any;
|
|
3187
3189
|
pair: string;
|
|
3188
3190
|
close_rate: string;
|
|
3189
3191
|
};
|
|
3190
3192
|
} | undefined;
|
|
3193
|
+
reset?: boolean | undefined;
|
|
3191
3194
|
host: string;
|
|
3192
3195
|
name: any;
|
|
3193
3196
|
provider: "docker";
|
|
@@ -3197,20 +3200,20 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3197
3200
|
_id: string | {};
|
|
3198
3201
|
createdAt: any;
|
|
3199
3202
|
updatedAt: any;
|
|
3200
|
-
|
|
3201
|
-
strategyId: string | {};
|
|
3202
|
-
stake_amount: string | number;
|
|
3203
|
-
stake_currency: string;
|
|
3204
|
-
exchangeId: any;
|
|
3205
|
-
userId: any;
|
|
3203
|
+
connected: boolean;
|
|
3206
3204
|
which: string;
|
|
3205
|
+
userId: any;
|
|
3206
|
+
"traders/pods": any;
|
|
3207
3207
|
exchange: any;
|
|
3208
|
-
|
|
3208
|
+
exchangeId: any;
|
|
3209
|
+
stake_currency: string;
|
|
3210
|
+
stake_amount: string | number;
|
|
3209
3211
|
dry_run: boolean;
|
|
3210
3212
|
handling: string;
|
|
3211
3213
|
initial_state: string;
|
|
3212
3214
|
pairlists: any;
|
|
3213
3215
|
strategy: any;
|
|
3216
|
+
strategyId: string | {};
|
|
3214
3217
|
entry_pricing: {
|
|
3215
3218
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3216
3219
|
use_order_book?: boolean | undefined;
|
|
@@ -3230,16 +3233,17 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3230
3233
|
api_server: {
|
|
3231
3234
|
password: string;
|
|
3232
3235
|
enabled: boolean;
|
|
3236
|
+
username: string;
|
|
3233
3237
|
listen_ip_address: string;
|
|
3234
3238
|
listen_port: number;
|
|
3235
3239
|
verbosity: string;
|
|
3236
3240
|
jwt_secret_key: string;
|
|
3237
3241
|
CORS_origins: string[];
|
|
3238
|
-
username: string;
|
|
3239
3242
|
};
|
|
3240
3243
|
pod: string;
|
|
3241
3244
|
}>;
|
|
3242
3245
|
}> | undefined;
|
|
3246
|
+
options?: any;
|
|
3243
3247
|
trader?: Partial<{
|
|
3244
3248
|
telegram?: {
|
|
3245
3249
|
access_hash?: string | null | undefined;
|
|
@@ -3249,19 +3253,19 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3249
3253
|
chat_id: any;
|
|
3250
3254
|
allow_custom_messages: boolean;
|
|
3251
3255
|
notification_settings: {
|
|
3252
|
-
status: "silent" | "on" | "off";
|
|
3253
3256
|
entry: "silent" | "on" | "off";
|
|
3254
3257
|
exit: {
|
|
3258
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3255
3259
|
roi: "silent" | "on" | "off";
|
|
3256
3260
|
emergency_exit: "silent" | "on" | "off";
|
|
3257
3261
|
force_exit: "silent" | "on" | "off";
|
|
3258
3262
|
exit_signal: "silent" | "on" | "off";
|
|
3259
3263
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
3260
3264
|
stop_loss: "silent" | "on" | "off";
|
|
3261
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3262
3265
|
custom_exit: "silent" | "on" | "off";
|
|
3263
3266
|
partial_exit: "silent" | "on" | "off";
|
|
3264
3267
|
};
|
|
3268
|
+
status: "silent" | "on" | "off";
|
|
3265
3269
|
warning: "silent" | "on" | "off";
|
|
3266
3270
|
startup: "silent" | "on" | "off";
|
|
3267
3271
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -3276,8 +3280,6 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3276
3280
|
reload: boolean;
|
|
3277
3281
|
balance_dust_level: number;
|
|
3278
3282
|
} | undefined;
|
|
3279
|
-
dry_run_wallet?: number | undefined;
|
|
3280
|
-
max_open_trades?: number | undefined;
|
|
3281
3283
|
plugins?: {
|
|
3282
3284
|
number_assets?: number | undefined;
|
|
3283
3285
|
refresh_period?: number | undefined;
|
|
@@ -3286,6 +3288,8 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3286
3288
|
removeRecentlyListed?: boolean | undefined;
|
|
3287
3289
|
removeRecentlyListedDays?: number | undefined;
|
|
3288
3290
|
} | undefined;
|
|
3291
|
+
dry_run_wallet?: number | undefined;
|
|
3292
|
+
max_open_trades?: number | undefined;
|
|
3289
3293
|
fiat_display_currency?: string | undefined;
|
|
3290
3294
|
unfilledtimeout?: {
|
|
3291
3295
|
entry: number;
|
|
@@ -3299,37 +3303,36 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3299
3303
|
enabled: boolean;
|
|
3300
3304
|
format: string;
|
|
3301
3305
|
webhookstatus: {
|
|
3302
|
-
|
|
3306
|
+
userId: string;
|
|
3303
3307
|
event: string;
|
|
3304
3308
|
status: string;
|
|
3305
|
-
|
|
3309
|
+
traderId: any;
|
|
3306
3310
|
};
|
|
3307
3311
|
webhookentry: {
|
|
3308
|
-
|
|
3309
|
-
traderId: any;
|
|
3310
|
-
stake_amount: string;
|
|
3312
|
+
userId: string;
|
|
3311
3313
|
stake_currency: string;
|
|
3314
|
+
stake_amount: string;
|
|
3312
3315
|
event: string;
|
|
3313
|
-
|
|
3316
|
+
traderId: any;
|
|
3314
3317
|
pair: string;
|
|
3315
3318
|
fiat_currency: string;
|
|
3316
3319
|
};
|
|
3317
3320
|
webhookentrycancel: {
|
|
3318
3321
|
limit: string;
|
|
3319
|
-
|
|
3320
|
-
stake_amount: string;
|
|
3322
|
+
userId: string;
|
|
3321
3323
|
stake_currency: string;
|
|
3324
|
+
stake_amount: string;
|
|
3322
3325
|
event: string;
|
|
3323
|
-
|
|
3326
|
+
traderId: any;
|
|
3324
3327
|
pair: string;
|
|
3325
3328
|
fiat_currency: string;
|
|
3326
3329
|
};
|
|
3327
3330
|
webhookentryfill: {
|
|
3328
|
-
|
|
3329
|
-
stake_amount: string;
|
|
3331
|
+
userId: string;
|
|
3330
3332
|
stake_currency: string;
|
|
3333
|
+
stake_amount: string;
|
|
3331
3334
|
event: string;
|
|
3332
|
-
|
|
3335
|
+
traderId: any;
|
|
3333
3336
|
pair: string;
|
|
3334
3337
|
trade_id: string;
|
|
3335
3338
|
open_rate: string;
|
|
@@ -3338,10 +3341,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3338
3341
|
};
|
|
3339
3342
|
webhookexit: {
|
|
3340
3343
|
limit: string;
|
|
3341
|
-
|
|
3344
|
+
userId: string;
|
|
3342
3345
|
stake_currency: string;
|
|
3343
3346
|
event: string;
|
|
3344
|
-
|
|
3347
|
+
traderId: any;
|
|
3345
3348
|
pair: string;
|
|
3346
3349
|
fiat_currency: string;
|
|
3347
3350
|
trade_id: string;
|
|
@@ -3356,22 +3359,23 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3356
3359
|
};
|
|
3357
3360
|
webhookexitcancel: {
|
|
3358
3361
|
limit: string;
|
|
3359
|
-
|
|
3362
|
+
userId: string;
|
|
3360
3363
|
stake_currency: string;
|
|
3361
3364
|
event: string;
|
|
3362
|
-
|
|
3365
|
+
traderId: any;
|
|
3363
3366
|
pair: string;
|
|
3364
3367
|
profit_amount: string;
|
|
3365
3368
|
profit_ratio: string;
|
|
3366
3369
|
};
|
|
3367
3370
|
webhookexitfill: {
|
|
3368
|
-
traderId: any;
|
|
3369
|
-
event: string;
|
|
3370
3371
|
userId: string;
|
|
3372
|
+
event: string;
|
|
3373
|
+
traderId: any;
|
|
3371
3374
|
pair: string;
|
|
3372
3375
|
close_rate: string;
|
|
3373
3376
|
};
|
|
3374
3377
|
} | undefined;
|
|
3378
|
+
reset?: boolean | undefined;
|
|
3375
3379
|
host: string;
|
|
3376
3380
|
name: any;
|
|
3377
3381
|
provider: "docker";
|
|
@@ -3379,22 +3383,22 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3379
3383
|
secret: string;
|
|
3380
3384
|
key: string;
|
|
3381
3385
|
_id: string | {};
|
|
3382
|
-
createdAt: any;
|
|
3383
|
-
updatedAt: any;
|
|
3384
|
-
|
|
3385
|
-
strategyId: string | {};
|
|
3386
|
-
stake_amount: string | number;
|
|
3387
|
-
stake_currency: string;
|
|
3388
|
-
exchangeId: any;
|
|
3389
|
-
userId: any;
|
|
3386
|
+
createdAt: any;
|
|
3387
|
+
updatedAt: any;
|
|
3388
|
+
connected: boolean;
|
|
3390
3389
|
which: string;
|
|
3390
|
+
userId: any;
|
|
3391
|
+
"traders/pods": any;
|
|
3391
3392
|
exchange: any;
|
|
3392
|
-
|
|
3393
|
+
exchangeId: any;
|
|
3394
|
+
stake_currency: string;
|
|
3395
|
+
stake_amount: string | number;
|
|
3393
3396
|
dry_run: boolean;
|
|
3394
3397
|
handling: string;
|
|
3395
3398
|
initial_state: string;
|
|
3396
3399
|
pairlists: any;
|
|
3397
3400
|
strategy: any;
|
|
3401
|
+
strategyId: string | {};
|
|
3398
3402
|
entry_pricing: {
|
|
3399
3403
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
3400
3404
|
use_order_book?: boolean | undefined;
|
|
@@ -3414,19 +3418,20 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
3414
3418
|
api_server: {
|
|
3415
3419
|
password: string;
|
|
3416
3420
|
enabled: boolean;
|
|
3421
|
+
username: string;
|
|
3417
3422
|
listen_ip_address: string;
|
|
3418
3423
|
listen_port: number;
|
|
3419
3424
|
verbosity: string;
|
|
3420
3425
|
jwt_secret_key: string;
|
|
3421
3426
|
CORS_origins: string[];
|
|
3422
|
-
username: string;
|
|
3423
3427
|
};
|
|
3424
3428
|
pod: string;
|
|
3425
3429
|
}> | undefined;
|
|
3426
3430
|
_id: string | {};
|
|
3427
3431
|
createdAt: any;
|
|
3428
|
-
|
|
3432
|
+
updatedAt: any;
|
|
3429
3433
|
userId: any;
|
|
3434
|
+
traderId: any;
|
|
3430
3435
|
action: string;
|
|
3431
3436
|
result: any;
|
|
3432
3437
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
@@ -3487,7 +3492,6 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3487
3492
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3488
3493
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3489
3494
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3490
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3491
3495
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3492
3496
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3493
3497
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3612,6 +3616,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3612
3616
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3613
3617
|
}>>;
|
|
3614
3618
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3619
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3615
3620
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3616
3621
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3617
3622
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3673,7 +3678,6 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3673
3678
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3674
3679
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3675
3680
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3676
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3677
3681
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3678
3682
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3679
3683
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3798,6 +3802,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3798
3802
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3799
3803
|
}>>;
|
|
3800
3804
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3805
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3801
3806
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3802
3807
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
3803
3808
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -3965,7 +3970,6 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
3965
3970
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3966
3971
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3967
3972
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
3968
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
3969
3973
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3970
3974
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3971
3975
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4090,6 +4094,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4090
4094
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
4091
4095
|
}>>;
|
|
4092
4096
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
4097
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4093
4098
|
host: import("@feathersjs/typebox").TString<string>;
|
|
4094
4099
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4095
4100
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -4100,7 +4105,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4100
4105
|
name: import("@feathersjs/typebox").TString<string>;
|
|
4101
4106
|
type: import("@feathersjs/typebox").TString<string>;
|
|
4102
4107
|
description: import("@feathersjs/typebox").TString<string>;
|
|
4103
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
4108
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4104
4109
|
values: import("@feathersjs/typebox").TAny;
|
|
4105
4110
|
}>>>;
|
|
4106
4111
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -4111,6 +4116,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4111
4116
|
options: import("@feathersjs/typebox").TAny;
|
|
4112
4117
|
}>>>>;
|
|
4113
4118
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
4119
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
4114
4120
|
action: import("@feathersjs/typebox").TString<string>;
|
|
4115
4121
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
4116
4122
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -4118,27 +4124,23 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
4118
4124
|
export type TradersPodsApiPatch = Static<typeof tradersPodsApiPatchSchema>;
|
|
4119
4125
|
export declare const tradersPodsApiPatchValidator: import("@feathersjs/schema").Validator<any, any>;
|
|
4120
4126
|
export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").Resolver<{
|
|
4121
|
-
options?: any;
|
|
4122
4127
|
'traders/pods'?: Partial<{
|
|
4123
4128
|
host?: string | undefined;
|
|
4124
4129
|
stop?: boolean | undefined;
|
|
4125
4130
|
provider: "docker";
|
|
4126
4131
|
_id: string | {};
|
|
4127
4132
|
options: any;
|
|
4128
|
-
strategyId: string | {};
|
|
4129
|
-
exchangeId: string;
|
|
4130
4133
|
exchange: Partial<{
|
|
4131
4134
|
password?: string | undefined;
|
|
4132
4135
|
name?: any;
|
|
4133
4136
|
apiKey?: string | undefined;
|
|
4137
|
+
token?: string | undefined;
|
|
4134
4138
|
secret?: string | undefined;
|
|
4135
4139
|
avatar?: any;
|
|
4136
4140
|
createdAt?: any;
|
|
4137
4141
|
updatedAt?: any;
|
|
4138
|
-
|
|
4139
|
-
which?: string | undefined;
|
|
4142
|
+
login?: string | undefined;
|
|
4140
4143
|
connected?: boolean | undefined;
|
|
4141
|
-
token?: string | undefined;
|
|
4142
4144
|
downloaded?: {
|
|
4143
4145
|
updatedAt: any;
|
|
4144
4146
|
size: string;
|
|
@@ -4166,15 +4168,17 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4166
4168
|
}[] | undefined;
|
|
4167
4169
|
whitelist?: any[] | undefined;
|
|
4168
4170
|
ccxt_async_config?: any;
|
|
4171
|
+
which?: string | undefined;
|
|
4169
4172
|
requiredCredentials?: any;
|
|
4170
4173
|
uid?: string | undefined;
|
|
4171
|
-
login?: string | undefined;
|
|
4172
4174
|
twofa?: string | undefined;
|
|
4173
4175
|
privateKey?: string | undefined;
|
|
4174
4176
|
walletAddress?: string | undefined;
|
|
4177
|
+
userId?: string | {} | undefined;
|
|
4175
4178
|
__v?: any;
|
|
4176
4179
|
_id: string | {};
|
|
4177
4180
|
}>;
|
|
4181
|
+
exchangeId: string;
|
|
4178
4182
|
strategy: Partial<{
|
|
4179
4183
|
_id?: string | {} | undefined;
|
|
4180
4184
|
traders?: {
|
|
@@ -4186,19 +4190,19 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4186
4190
|
chat_id: any;
|
|
4187
4191
|
allow_custom_messages: boolean;
|
|
4188
4192
|
notification_settings: {
|
|
4189
|
-
status: "silent" | "on" | "off";
|
|
4190
4193
|
entry: "silent" | "on" | "off";
|
|
4191
4194
|
exit: {
|
|
4195
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4192
4196
|
roi: "silent" | "on" | "off";
|
|
4193
4197
|
emergency_exit: "silent" | "on" | "off";
|
|
4194
4198
|
force_exit: "silent" | "on" | "off";
|
|
4195
4199
|
exit_signal: "silent" | "on" | "off";
|
|
4196
4200
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
4197
4201
|
stop_loss: "silent" | "on" | "off";
|
|
4198
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4199
4202
|
custom_exit: "silent" | "on" | "off";
|
|
4200
4203
|
partial_exit: "silent" | "on" | "off";
|
|
4201
4204
|
};
|
|
4205
|
+
status: "silent" | "on" | "off";
|
|
4202
4206
|
warning: "silent" | "on" | "off";
|
|
4203
4207
|
startup: "silent" | "on" | "off";
|
|
4204
4208
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -4213,8 +4217,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4213
4217
|
reload: boolean;
|
|
4214
4218
|
balance_dust_level: number;
|
|
4215
4219
|
} | undefined;
|
|
4216
|
-
dry_run_wallet?: number | undefined;
|
|
4217
|
-
max_open_trades?: number | undefined;
|
|
4218
4220
|
plugins?: {
|
|
4219
4221
|
number_assets?: number | undefined;
|
|
4220
4222
|
refresh_period?: number | undefined;
|
|
@@ -4223,6 +4225,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4223
4225
|
removeRecentlyListed?: boolean | undefined;
|
|
4224
4226
|
removeRecentlyListedDays?: number | undefined;
|
|
4225
4227
|
} | undefined;
|
|
4228
|
+
dry_run_wallet?: number | undefined;
|
|
4229
|
+
max_open_trades?: number | undefined;
|
|
4226
4230
|
fiat_display_currency?: string | undefined;
|
|
4227
4231
|
unfilledtimeout?: {
|
|
4228
4232
|
entry: number;
|
|
@@ -4236,37 +4240,36 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4236
4240
|
enabled: boolean;
|
|
4237
4241
|
format: string;
|
|
4238
4242
|
webhookstatus: {
|
|
4239
|
-
|
|
4243
|
+
userId: string;
|
|
4240
4244
|
event: string;
|
|
4241
4245
|
status: string;
|
|
4242
|
-
|
|
4246
|
+
traderId: any;
|
|
4243
4247
|
};
|
|
4244
4248
|
webhookentry: {
|
|
4245
|
-
|
|
4246
|
-
traderId: any;
|
|
4247
|
-
stake_amount: string;
|
|
4249
|
+
userId: string;
|
|
4248
4250
|
stake_currency: string;
|
|
4251
|
+
stake_amount: string;
|
|
4249
4252
|
event: string;
|
|
4250
|
-
|
|
4253
|
+
traderId: any;
|
|
4251
4254
|
pair: string;
|
|
4252
4255
|
fiat_currency: string;
|
|
4253
4256
|
};
|
|
4254
4257
|
webhookentrycancel: {
|
|
4255
4258
|
limit: string;
|
|
4256
|
-
|
|
4257
|
-
stake_amount: string;
|
|
4259
|
+
userId: string;
|
|
4258
4260
|
stake_currency: string;
|
|
4261
|
+
stake_amount: string;
|
|
4259
4262
|
event: string;
|
|
4260
|
-
|
|
4263
|
+
traderId: any;
|
|
4261
4264
|
pair: string;
|
|
4262
4265
|
fiat_currency: string;
|
|
4263
4266
|
};
|
|
4264
4267
|
webhookentryfill: {
|
|
4265
|
-
|
|
4266
|
-
stake_amount: string;
|
|
4268
|
+
userId: string;
|
|
4267
4269
|
stake_currency: string;
|
|
4270
|
+
stake_amount: string;
|
|
4268
4271
|
event: string;
|
|
4269
|
-
|
|
4272
|
+
traderId: any;
|
|
4270
4273
|
pair: string;
|
|
4271
4274
|
trade_id: string;
|
|
4272
4275
|
open_rate: string;
|
|
@@ -4275,10 +4278,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4275
4278
|
};
|
|
4276
4279
|
webhookexit: {
|
|
4277
4280
|
limit: string;
|
|
4278
|
-
|
|
4281
|
+
userId: string;
|
|
4279
4282
|
stake_currency: string;
|
|
4280
4283
|
event: string;
|
|
4281
|
-
|
|
4284
|
+
traderId: any;
|
|
4282
4285
|
pair: string;
|
|
4283
4286
|
fiat_currency: string;
|
|
4284
4287
|
trade_id: string;
|
|
@@ -4293,22 +4296,23 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4293
4296
|
};
|
|
4294
4297
|
webhookexitcancel: {
|
|
4295
4298
|
limit: string;
|
|
4296
|
-
|
|
4299
|
+
userId: string;
|
|
4297
4300
|
stake_currency: string;
|
|
4298
4301
|
event: string;
|
|
4299
|
-
|
|
4302
|
+
traderId: any;
|
|
4300
4303
|
pair: string;
|
|
4301
4304
|
profit_amount: string;
|
|
4302
4305
|
profit_ratio: string;
|
|
4303
4306
|
};
|
|
4304
4307
|
webhookexitfill: {
|
|
4305
|
-
traderId: any;
|
|
4306
|
-
event: string;
|
|
4307
4308
|
userId: string;
|
|
4309
|
+
event: string;
|
|
4310
|
+
traderId: any;
|
|
4308
4311
|
pair: string;
|
|
4309
4312
|
close_rate: string;
|
|
4310
4313
|
};
|
|
4311
4314
|
} | undefined;
|
|
4315
|
+
reset?: boolean | undefined;
|
|
4312
4316
|
host: string;
|
|
4313
4317
|
name: any;
|
|
4314
4318
|
provider: "docker";
|
|
@@ -4318,20 +4322,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4318
4322
|
_id: string | {};
|
|
4319
4323
|
createdAt: any;
|
|
4320
4324
|
updatedAt: any;
|
|
4321
|
-
|
|
4322
|
-
strategyId: string | {};
|
|
4323
|
-
stake_amount: string | number;
|
|
4324
|
-
stake_currency: string;
|
|
4325
|
-
exchangeId: any;
|
|
4326
|
-
userId: any;
|
|
4325
|
+
connected: boolean;
|
|
4327
4326
|
which: string;
|
|
4327
|
+
userId: any;
|
|
4328
|
+
"traders/pods": any;
|
|
4328
4329
|
exchange: any;
|
|
4329
|
-
|
|
4330
|
+
exchangeId: any;
|
|
4331
|
+
stake_currency: string;
|
|
4332
|
+
stake_amount: string | number;
|
|
4330
4333
|
dry_run: boolean;
|
|
4331
4334
|
handling: string;
|
|
4332
4335
|
initial_state: string;
|
|
4333
4336
|
pairlists: any;
|
|
4334
4337
|
strategy: any;
|
|
4338
|
+
strategyId: string | {};
|
|
4335
4339
|
entry_pricing: {
|
|
4336
4340
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4337
4341
|
use_order_book?: boolean | undefined;
|
|
@@ -4351,35 +4355,34 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4351
4355
|
api_server: {
|
|
4352
4356
|
password: string;
|
|
4353
4357
|
enabled: boolean;
|
|
4358
|
+
username: string;
|
|
4354
4359
|
listen_ip_address: string;
|
|
4355
4360
|
listen_port: number;
|
|
4356
4361
|
verbosity: string;
|
|
4357
4362
|
jwt_secret_key: string;
|
|
4358
4363
|
CORS_origins: string[];
|
|
4359
|
-
username: string;
|
|
4360
4364
|
};
|
|
4361
4365
|
pod: string;
|
|
4362
4366
|
}[] | undefined;
|
|
4363
4367
|
createdAt?: any;
|
|
4364
4368
|
updatedAt?: any;
|
|
4369
|
+
userId?: string | {} | undefined;
|
|
4365
4370
|
'strategies/templates'?: {
|
|
4366
4371
|
_id?: string | {} | undefined;
|
|
4372
|
+
createdAt?: any;
|
|
4367
4373
|
values: any;
|
|
4368
4374
|
name: string;
|
|
4369
|
-
createdAt: any;
|
|
4370
4375
|
description: string;
|
|
4371
4376
|
type: string;
|
|
4372
4377
|
} | undefined;
|
|
4378
|
+
file?: any;
|
|
4379
|
+
templateId?: string | {} | undefined;
|
|
4380
|
+
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
4373
4381
|
stoploss?: number | undefined;
|
|
4374
4382
|
minimal_roi?: {
|
|
4375
4383
|
minutes: number;
|
|
4376
4384
|
profit: number;
|
|
4377
4385
|
}[] | undefined;
|
|
4378
|
-
results?: unknown;
|
|
4379
|
-
userId?: string | {} | undefined;
|
|
4380
|
-
file?: any;
|
|
4381
|
-
templateId?: string | {} | undefined;
|
|
4382
|
-
interval?: "1m" | "5m" | "30m" | "2h" | "6h" | "12h" | "1d" | "1w" | undefined;
|
|
4383
4386
|
exit_sell_signal?: boolean | undefined;
|
|
4384
4387
|
exit_profit_only?: boolean | undefined;
|
|
4385
4388
|
exit_profit_offset?: number | undefined;
|
|
@@ -4388,10 +4391,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4388
4391
|
stoploss?: string | undefined;
|
|
4389
4392
|
entry?: "Limit" | "Market" | undefined;
|
|
4390
4393
|
exit?: "Limit" | "Market" | undefined;
|
|
4391
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
4392
4394
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
4393
4395
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
4394
4396
|
forcesell?: "Limit" | "Market" | undefined;
|
|
4397
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
4395
4398
|
stoploss_on_exchange_interval?: number | undefined;
|
|
4396
4399
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
4397
4400
|
} | undefined;
|
|
@@ -4423,10 +4426,12 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4423
4426
|
}[] | undefined;
|
|
4424
4427
|
indicators?: unknown[] | undefined;
|
|
4425
4428
|
code?: unknown;
|
|
4429
|
+
results?: unknown;
|
|
4426
4430
|
configured?: boolean | undefined;
|
|
4427
4431
|
name: any;
|
|
4428
4432
|
'strategies/indicators': any;
|
|
4429
4433
|
}>;
|
|
4434
|
+
strategyId: string | {};
|
|
4430
4435
|
pod: any;
|
|
4431
4436
|
trader: Partial<{
|
|
4432
4437
|
telegram?: {
|
|
@@ -4437,19 +4442,19 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4437
4442
|
chat_id: any;
|
|
4438
4443
|
allow_custom_messages: boolean;
|
|
4439
4444
|
notification_settings: {
|
|
4440
|
-
status: "silent" | "on" | "off";
|
|
4441
4445
|
entry: "silent" | "on" | "off";
|
|
4442
4446
|
exit: {
|
|
4447
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4443
4448
|
roi: "silent" | "on" | "off";
|
|
4444
4449
|
emergency_exit: "silent" | "on" | "off";
|
|
4445
4450
|
force_exit: "silent" | "on" | "off";
|
|
4446
4451
|
exit_signal: "silent" | "on" | "off";
|
|
4447
4452
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
4448
4453
|
stop_loss: "silent" | "on" | "off";
|
|
4449
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4450
4454
|
custom_exit: "silent" | "on" | "off";
|
|
4451
4455
|
partial_exit: "silent" | "on" | "off";
|
|
4452
4456
|
};
|
|
4457
|
+
status: "silent" | "on" | "off";
|
|
4453
4458
|
warning: "silent" | "on" | "off";
|
|
4454
4459
|
startup: "silent" | "on" | "off";
|
|
4455
4460
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -4464,8 +4469,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4464
4469
|
reload: boolean;
|
|
4465
4470
|
balance_dust_level: number;
|
|
4466
4471
|
} | undefined;
|
|
4467
|
-
dry_run_wallet?: number | undefined;
|
|
4468
|
-
max_open_trades?: number | undefined;
|
|
4469
4472
|
plugins?: {
|
|
4470
4473
|
number_assets?: number | undefined;
|
|
4471
4474
|
refresh_period?: number | undefined;
|
|
@@ -4474,6 +4477,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4474
4477
|
removeRecentlyListed?: boolean | undefined;
|
|
4475
4478
|
removeRecentlyListedDays?: number | undefined;
|
|
4476
4479
|
} | undefined;
|
|
4480
|
+
dry_run_wallet?: number | undefined;
|
|
4481
|
+
max_open_trades?: number | undefined;
|
|
4477
4482
|
fiat_display_currency?: string | undefined;
|
|
4478
4483
|
unfilledtimeout?: {
|
|
4479
4484
|
entry: number;
|
|
@@ -4487,37 +4492,36 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4487
4492
|
enabled: boolean;
|
|
4488
4493
|
format: string;
|
|
4489
4494
|
webhookstatus: {
|
|
4490
|
-
|
|
4495
|
+
userId: string;
|
|
4491
4496
|
event: string;
|
|
4492
4497
|
status: string;
|
|
4493
|
-
|
|
4498
|
+
traderId: any;
|
|
4494
4499
|
};
|
|
4495
4500
|
webhookentry: {
|
|
4496
|
-
|
|
4497
|
-
traderId: any;
|
|
4498
|
-
stake_amount: string;
|
|
4501
|
+
userId: string;
|
|
4499
4502
|
stake_currency: string;
|
|
4503
|
+
stake_amount: string;
|
|
4500
4504
|
event: string;
|
|
4501
|
-
|
|
4505
|
+
traderId: any;
|
|
4502
4506
|
pair: string;
|
|
4503
4507
|
fiat_currency: string;
|
|
4504
4508
|
};
|
|
4505
4509
|
webhookentrycancel: {
|
|
4506
4510
|
limit: string;
|
|
4507
|
-
|
|
4508
|
-
stake_amount: string;
|
|
4511
|
+
userId: string;
|
|
4509
4512
|
stake_currency: string;
|
|
4513
|
+
stake_amount: string;
|
|
4510
4514
|
event: string;
|
|
4511
|
-
|
|
4515
|
+
traderId: any;
|
|
4512
4516
|
pair: string;
|
|
4513
4517
|
fiat_currency: string;
|
|
4514
4518
|
};
|
|
4515
4519
|
webhookentryfill: {
|
|
4516
|
-
|
|
4517
|
-
stake_amount: string;
|
|
4520
|
+
userId: string;
|
|
4518
4521
|
stake_currency: string;
|
|
4522
|
+
stake_amount: string;
|
|
4519
4523
|
event: string;
|
|
4520
|
-
|
|
4524
|
+
traderId: any;
|
|
4521
4525
|
pair: string;
|
|
4522
4526
|
trade_id: string;
|
|
4523
4527
|
open_rate: string;
|
|
@@ -4526,10 +4530,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4526
4530
|
};
|
|
4527
4531
|
webhookexit: {
|
|
4528
4532
|
limit: string;
|
|
4529
|
-
|
|
4533
|
+
userId: string;
|
|
4530
4534
|
stake_currency: string;
|
|
4531
4535
|
event: string;
|
|
4532
|
-
|
|
4536
|
+
traderId: any;
|
|
4533
4537
|
pair: string;
|
|
4534
4538
|
fiat_currency: string;
|
|
4535
4539
|
trade_id: string;
|
|
@@ -4544,22 +4548,23 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4544
4548
|
};
|
|
4545
4549
|
webhookexitcancel: {
|
|
4546
4550
|
limit: string;
|
|
4547
|
-
|
|
4551
|
+
userId: string;
|
|
4548
4552
|
stake_currency: string;
|
|
4549
4553
|
event: string;
|
|
4550
|
-
|
|
4554
|
+
traderId: any;
|
|
4551
4555
|
pair: string;
|
|
4552
4556
|
profit_amount: string;
|
|
4553
4557
|
profit_ratio: string;
|
|
4554
4558
|
};
|
|
4555
4559
|
webhookexitfill: {
|
|
4556
|
-
traderId: any;
|
|
4557
|
-
event: string;
|
|
4558
4560
|
userId: string;
|
|
4561
|
+
event: string;
|
|
4562
|
+
traderId: any;
|
|
4559
4563
|
pair: string;
|
|
4560
4564
|
close_rate: string;
|
|
4561
4565
|
};
|
|
4562
4566
|
} | undefined;
|
|
4567
|
+
reset?: boolean | undefined;
|
|
4563
4568
|
host: string;
|
|
4564
4569
|
name: any;
|
|
4565
4570
|
provider: "docker";
|
|
@@ -4569,20 +4574,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4569
4574
|
_id: string | {};
|
|
4570
4575
|
createdAt: any;
|
|
4571
4576
|
updatedAt: any;
|
|
4572
|
-
|
|
4573
|
-
strategyId: string | {};
|
|
4574
|
-
stake_amount: string | number;
|
|
4575
|
-
stake_currency: string;
|
|
4576
|
-
exchangeId: any;
|
|
4577
|
-
userId: any;
|
|
4577
|
+
connected: boolean;
|
|
4578
4578
|
which: string;
|
|
4579
|
+
userId: any;
|
|
4580
|
+
"traders/pods": any;
|
|
4579
4581
|
exchange: any;
|
|
4580
|
-
|
|
4582
|
+
exchangeId: any;
|
|
4583
|
+
stake_currency: string;
|
|
4584
|
+
stake_amount: string | number;
|
|
4581
4585
|
dry_run: boolean;
|
|
4582
4586
|
handling: string;
|
|
4583
4587
|
initial_state: string;
|
|
4584
4588
|
pairlists: any;
|
|
4585
4589
|
strategy: any;
|
|
4590
|
+
strategyId: string | {};
|
|
4586
4591
|
entry_pricing: {
|
|
4587
4592
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4588
4593
|
use_order_book?: boolean | undefined;
|
|
@@ -4602,16 +4607,17 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4602
4607
|
api_server: {
|
|
4603
4608
|
password: string;
|
|
4604
4609
|
enabled: boolean;
|
|
4610
|
+
username: string;
|
|
4605
4611
|
listen_ip_address: string;
|
|
4606
4612
|
listen_port: number;
|
|
4607
4613
|
verbosity: string;
|
|
4608
4614
|
jwt_secret_key: string;
|
|
4609
4615
|
CORS_origins: string[];
|
|
4610
|
-
username: string;
|
|
4611
4616
|
};
|
|
4612
4617
|
pod: string;
|
|
4613
4618
|
}>;
|
|
4614
4619
|
}> | undefined;
|
|
4620
|
+
options?: any;
|
|
4615
4621
|
trader?: Partial<{
|
|
4616
4622
|
telegram?: {
|
|
4617
4623
|
access_hash?: string | null | undefined;
|
|
@@ -4621,19 +4627,19 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4621
4627
|
chat_id: any;
|
|
4622
4628
|
allow_custom_messages: boolean;
|
|
4623
4629
|
notification_settings: {
|
|
4624
|
-
status: "silent" | "on" | "off";
|
|
4625
4630
|
entry: "silent" | "on" | "off";
|
|
4626
4631
|
exit: {
|
|
4632
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4627
4633
|
roi: "silent" | "on" | "off";
|
|
4628
4634
|
emergency_exit: "silent" | "on" | "off";
|
|
4629
4635
|
force_exit: "silent" | "on" | "off";
|
|
4630
4636
|
exit_signal: "silent" | "on" | "off";
|
|
4631
4637
|
trailing_stop_loss: "silent" | "on" | "off";
|
|
4632
4638
|
stop_loss: "silent" | "on" | "off";
|
|
4633
|
-
stoploss_on_exchange: "silent" | "on" | "off";
|
|
4634
4639
|
custom_exit: "silent" | "on" | "off";
|
|
4635
4640
|
partial_exit: "silent" | "on" | "off";
|
|
4636
4641
|
};
|
|
4642
|
+
status: "silent" | "on" | "off";
|
|
4637
4643
|
warning: "silent" | "on" | "off";
|
|
4638
4644
|
startup: "silent" | "on" | "off";
|
|
4639
4645
|
entry_fill: "silent" | "on" | "off";
|
|
@@ -4648,8 +4654,6 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4648
4654
|
reload: boolean;
|
|
4649
4655
|
balance_dust_level: number;
|
|
4650
4656
|
} | undefined;
|
|
4651
|
-
dry_run_wallet?: number | undefined;
|
|
4652
|
-
max_open_trades?: number | undefined;
|
|
4653
4657
|
plugins?: {
|
|
4654
4658
|
number_assets?: number | undefined;
|
|
4655
4659
|
refresh_period?: number | undefined;
|
|
@@ -4658,6 +4662,8 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4658
4662
|
removeRecentlyListed?: boolean | undefined;
|
|
4659
4663
|
removeRecentlyListedDays?: number | undefined;
|
|
4660
4664
|
} | undefined;
|
|
4665
|
+
dry_run_wallet?: number | undefined;
|
|
4666
|
+
max_open_trades?: number | undefined;
|
|
4661
4667
|
fiat_display_currency?: string | undefined;
|
|
4662
4668
|
unfilledtimeout?: {
|
|
4663
4669
|
entry: number;
|
|
@@ -4671,37 +4677,36 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4671
4677
|
enabled: boolean;
|
|
4672
4678
|
format: string;
|
|
4673
4679
|
webhookstatus: {
|
|
4674
|
-
|
|
4680
|
+
userId: string;
|
|
4675
4681
|
event: string;
|
|
4676
4682
|
status: string;
|
|
4677
|
-
|
|
4683
|
+
traderId: any;
|
|
4678
4684
|
};
|
|
4679
4685
|
webhookentry: {
|
|
4680
|
-
|
|
4681
|
-
traderId: any;
|
|
4682
|
-
stake_amount: string;
|
|
4686
|
+
userId: string;
|
|
4683
4687
|
stake_currency: string;
|
|
4688
|
+
stake_amount: string;
|
|
4684
4689
|
event: string;
|
|
4685
|
-
|
|
4690
|
+
traderId: any;
|
|
4686
4691
|
pair: string;
|
|
4687
4692
|
fiat_currency: string;
|
|
4688
4693
|
};
|
|
4689
4694
|
webhookentrycancel: {
|
|
4690
4695
|
limit: string;
|
|
4691
|
-
|
|
4692
|
-
stake_amount: string;
|
|
4696
|
+
userId: string;
|
|
4693
4697
|
stake_currency: string;
|
|
4698
|
+
stake_amount: string;
|
|
4694
4699
|
event: string;
|
|
4695
|
-
|
|
4700
|
+
traderId: any;
|
|
4696
4701
|
pair: string;
|
|
4697
4702
|
fiat_currency: string;
|
|
4698
4703
|
};
|
|
4699
4704
|
webhookentryfill: {
|
|
4700
|
-
|
|
4701
|
-
stake_amount: string;
|
|
4705
|
+
userId: string;
|
|
4702
4706
|
stake_currency: string;
|
|
4707
|
+
stake_amount: string;
|
|
4703
4708
|
event: string;
|
|
4704
|
-
|
|
4709
|
+
traderId: any;
|
|
4705
4710
|
pair: string;
|
|
4706
4711
|
trade_id: string;
|
|
4707
4712
|
open_rate: string;
|
|
@@ -4710,10 +4715,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4710
4715
|
};
|
|
4711
4716
|
webhookexit: {
|
|
4712
4717
|
limit: string;
|
|
4713
|
-
|
|
4718
|
+
userId: string;
|
|
4714
4719
|
stake_currency: string;
|
|
4715
4720
|
event: string;
|
|
4716
|
-
|
|
4721
|
+
traderId: any;
|
|
4717
4722
|
pair: string;
|
|
4718
4723
|
fiat_currency: string;
|
|
4719
4724
|
trade_id: string;
|
|
@@ -4728,22 +4733,23 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4728
4733
|
};
|
|
4729
4734
|
webhookexitcancel: {
|
|
4730
4735
|
limit: string;
|
|
4731
|
-
|
|
4736
|
+
userId: string;
|
|
4732
4737
|
stake_currency: string;
|
|
4733
4738
|
event: string;
|
|
4734
|
-
|
|
4739
|
+
traderId: any;
|
|
4735
4740
|
pair: string;
|
|
4736
4741
|
profit_amount: string;
|
|
4737
4742
|
profit_ratio: string;
|
|
4738
4743
|
};
|
|
4739
4744
|
webhookexitfill: {
|
|
4740
|
-
traderId: any;
|
|
4741
|
-
event: string;
|
|
4742
4745
|
userId: string;
|
|
4746
|
+
event: string;
|
|
4747
|
+
traderId: any;
|
|
4743
4748
|
pair: string;
|
|
4744
4749
|
close_rate: string;
|
|
4745
4750
|
};
|
|
4746
4751
|
} | undefined;
|
|
4752
|
+
reset?: boolean | undefined;
|
|
4747
4753
|
host: string;
|
|
4748
4754
|
name: any;
|
|
4749
4755
|
provider: "docker";
|
|
@@ -4753,20 +4759,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4753
4759
|
_id: string | {};
|
|
4754
4760
|
createdAt: any;
|
|
4755
4761
|
updatedAt: any;
|
|
4756
|
-
|
|
4757
|
-
strategyId: string | {};
|
|
4758
|
-
stake_amount: string | number;
|
|
4759
|
-
stake_currency: string;
|
|
4760
|
-
exchangeId: any;
|
|
4761
|
-
userId: any;
|
|
4762
|
+
connected: boolean;
|
|
4762
4763
|
which: string;
|
|
4764
|
+
userId: any;
|
|
4765
|
+
"traders/pods": any;
|
|
4763
4766
|
exchange: any;
|
|
4764
|
-
|
|
4767
|
+
exchangeId: any;
|
|
4768
|
+
stake_currency: string;
|
|
4769
|
+
stake_amount: string | number;
|
|
4765
4770
|
dry_run: boolean;
|
|
4766
4771
|
handling: string;
|
|
4767
4772
|
initial_state: string;
|
|
4768
4773
|
pairlists: any;
|
|
4769
4774
|
strategy: any;
|
|
4775
|
+
strategyId: string | {};
|
|
4770
4776
|
entry_pricing: {
|
|
4771
4777
|
price_side?: "ask" | "bid" | "same" | "other" | undefined;
|
|
4772
4778
|
use_order_book?: boolean | undefined;
|
|
@@ -4786,19 +4792,20 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
4786
4792
|
api_server: {
|
|
4787
4793
|
password: string;
|
|
4788
4794
|
enabled: boolean;
|
|
4795
|
+
username: string;
|
|
4789
4796
|
listen_ip_address: string;
|
|
4790
4797
|
listen_port: number;
|
|
4791
4798
|
verbosity: string;
|
|
4792
4799
|
jwt_secret_key: string;
|
|
4793
4800
|
CORS_origins: string[];
|
|
4794
|
-
username: string;
|
|
4795
4801
|
};
|
|
4796
4802
|
pod: string;
|
|
4797
4803
|
}> | undefined;
|
|
4798
4804
|
_id: string | {};
|
|
4799
4805
|
createdAt: any;
|
|
4800
|
-
|
|
4806
|
+
updatedAt: any;
|
|
4801
4807
|
userId: any;
|
|
4808
|
+
traderId: any;
|
|
4802
4809
|
action: string;
|
|
4803
4810
|
result: any;
|
|
4804
4811
|
}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|
|
@@ -4859,7 +4866,6 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4859
4866
|
traderId: import("@feathersjs/typebox").TAny;
|
|
4860
4867
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
4861
4868
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
4862
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
4863
4869
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
4864
4870
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
4865
4871
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4984,6 +4990,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
4984
4990
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
4985
4991
|
}>>;
|
|
4986
4992
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
4993
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4987
4994
|
host: import("@feathersjs/typebox").TString<string>;
|
|
4988
4995
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
4989
4996
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5045,7 +5052,6 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5045
5052
|
traderId: import("@feathersjs/typebox").TAny;
|
|
5046
5053
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
5047
5054
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
5048
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
5049
5055
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
5050
5056
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
5051
5057
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5170,6 +5176,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5170
5176
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
5171
5177
|
}>>;
|
|
5172
5178
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
5179
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5173
5180
|
host: import("@feathersjs/typebox").TString<string>;
|
|
5174
5181
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
5175
5182
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5337,7 +5344,6 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5337
5344
|
traderId: import("@feathersjs/typebox").TAny;
|
|
5338
5345
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
5339
5346
|
pair: import("@feathersjs/typebox").TString<string>;
|
|
5340
|
-
limit: import("@feathersjs/typebox").TString<string>;
|
|
5341
5347
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
5342
5348
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
5343
5349
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5462,6 +5468,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5462
5468
|
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
5463
5469
|
}>>;
|
|
5464
5470
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
5471
|
+
reset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5465
5472
|
host: import("@feathersjs/typebox").TString<string>;
|
|
5466
5473
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
5467
5474
|
strategies: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
@@ -5472,7 +5479,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5472
5479
|
name: import("@feathersjs/typebox").TString<string>;
|
|
5473
5480
|
type: import("@feathersjs/typebox").TString<string>;
|
|
5474
5481
|
description: import("@feathersjs/typebox").TString<string>;
|
|
5475
|
-
createdAt: import("@feathersjs/typebox").TAny
|
|
5482
|
+
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5476
5483
|
values: import("@feathersjs/typebox").TAny;
|
|
5477
5484
|
}>>>;
|
|
5478
5485
|
'strategies/indicators': import("@feathersjs/typebox").TAny;
|
|
@@ -5483,6 +5490,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
5483
5490
|
options: import("@feathersjs/typebox").TAny;
|
|
5484
5491
|
}>>>>;
|
|
5485
5492
|
createdAt: import("@feathersjs/typebox").TAny;
|
|
5493
|
+
updatedAt: import("@feathersjs/typebox").TAny;
|
|
5486
5494
|
action: import("@feathersjs/typebox").TString<string>;
|
|
5487
5495
|
options: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
5488
5496
|
result: import("@feathersjs/typebox").TAny;
|
|
@@ -5493,12 +5501,12 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5493
5501
|
$sort: import("@feathersjs/typebox").TObject<{
|
|
5494
5502
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5495
5503
|
createdAt: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5496
|
-
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5497
5504
|
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5505
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5498
5506
|
action: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5499
5507
|
result: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TInteger>;
|
|
5500
5508
|
}>;
|
|
5501
|
-
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "
|
|
5509
|
+
$select: import("@feathersjs/typebox").TUnsafe<("_id" | "createdAt" | "userId" | "traderId" | "action" | "result")[]>;
|
|
5502
5510
|
$and: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5503
5511
|
_id: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5504
5512
|
$gt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
@@ -5506,8 +5514,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5506
5514
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5507
5515
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5508
5516
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5509
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5510
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5517
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5518
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5511
5519
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5512
5520
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5513
5521
|
} | undefined>]>>]>>;
|
|
@@ -5517,30 +5525,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5517
5525
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5518
5526
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5519
5527
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5520
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5521
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5528
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5529
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5522
5530
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5523
5531
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5524
5532
|
} | undefined>]>>]>>;
|
|
5525
|
-
|
|
5533
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5526
5534
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5527
5535
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5528
5536
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5529
5537
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5530
5538
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5531
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5532
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5539
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5540
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5533
5541
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5534
5542
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5535
5543
|
} | undefined>]>>]>>;
|
|
5536
|
-
|
|
5544
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5537
5545
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5538
5546
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5539
5547
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5540
5548
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5541
5549
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5542
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5543
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5550
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5551
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5544
5552
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5545
5553
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5546
5554
|
} | undefined>]>>]>>;
|
|
@@ -5550,8 +5558,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5550
5558
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5551
5559
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5552
5560
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5553
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5554
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5561
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5562
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5555
5563
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5556
5564
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5557
5565
|
} | undefined>]>>]>>;
|
|
@@ -5561,8 +5569,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5561
5569
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5562
5570
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5563
5571
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5564
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5565
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5572
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5573
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5566
5574
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5567
5575
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5568
5576
|
} | undefined>]>>]>>;
|
|
@@ -5574,8 +5582,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5574
5582
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5575
5583
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5576
5584
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5577
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5578
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5585
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5586
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5579
5587
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5580
5588
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5581
5589
|
} | undefined>]>>]>>;
|
|
@@ -5585,30 +5593,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5585
5593
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5586
5594
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5587
5595
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5588
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5589
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5596
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5597
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5590
5598
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5591
5599
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5592
5600
|
} | undefined>]>>]>>;
|
|
5593
|
-
|
|
5601
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5594
5602
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5595
5603
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5596
5604
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5597
5605
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5598
5606
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5599
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5600
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5607
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5608
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5601
5609
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5602
5610
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5603
5611
|
} | undefined>]>>]>>;
|
|
5604
|
-
|
|
5612
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5605
5613
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5606
5614
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5607
5615
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5608
5616
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5609
5617
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5610
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5611
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5618
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5619
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5612
5620
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5613
5621
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5614
5622
|
} | undefined>]>>]>>;
|
|
@@ -5618,8 +5626,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5618
5626
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5619
5627
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5620
5628
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5621
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5622
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5629
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5630
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5623
5631
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5624
5632
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5625
5633
|
} | undefined>]>>]>>;
|
|
@@ -5629,8 +5637,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5629
5637
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5630
5638
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5631
5639
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5632
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5633
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5640
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5641
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5634
5642
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5635
5643
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5636
5644
|
} | undefined>]>>]>>;
|
|
@@ -5643,8 +5651,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5643
5651
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5644
5652
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5645
5653
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5646
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5647
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5654
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5655
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5648
5656
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5649
5657
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5650
5658
|
} | undefined>]>>]>>;
|
|
@@ -5654,30 +5662,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5654
5662
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5655
5663
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5656
5664
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5657
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5658
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5665
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5666
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5659
5667
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5660
5668
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5661
5669
|
} | undefined>]>>]>>;
|
|
5662
|
-
|
|
5670
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5663
5671
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5664
5672
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5665
5673
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5666
5674
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5667
5675
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5668
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5669
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5676
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5677
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5670
5678
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5671
5679
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5672
5680
|
} | undefined>]>>]>>;
|
|
5673
|
-
|
|
5681
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5674
5682
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5675
5683
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5676
5684
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5677
5685
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5678
5686
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5679
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5680
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5687
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5688
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5681
5689
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5682
5690
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5683
5691
|
} | undefined>]>>]>>;
|
|
@@ -5687,8 +5695,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5687
5695
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5688
5696
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5689
5697
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5690
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5691
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5698
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5699
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5692
5700
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5693
5701
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5694
5702
|
} | undefined>]>>]>>;
|
|
@@ -5698,8 +5706,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5698
5706
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5699
5707
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5700
5708
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5701
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5702
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5709
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5710
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5703
5711
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5704
5712
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5705
5713
|
} | undefined>]>>]>>;
|
|
@@ -5711,8 +5719,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5711
5719
|
$lt: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5712
5720
|
$lte: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5713
5721
|
$ne: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>;
|
|
5714
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5715
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5722
|
+
$in: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5723
|
+
$nin: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
5716
5724
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5717
5725
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5718
5726
|
} | undefined>]>>]>>;
|
|
@@ -5722,30 +5730,30 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5722
5730
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5723
5731
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5724
5732
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5725
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5726
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5733
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5734
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5727
5735
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5728
5736
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5729
5737
|
} | undefined>]>>]>>;
|
|
5730
|
-
|
|
5738
|
+
userId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5731
5739
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5732
5740
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5733
5741
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5734
5742
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5735
5743
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5736
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5737
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5744
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5745
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5738
5746
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5739
5747
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5740
5748
|
} | undefined>]>>]>>;
|
|
5741
|
-
|
|
5749
|
+
traderId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TAny, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5742
5750
|
$gt: import("@feathersjs/typebox").TAny;
|
|
5743
5751
|
$gte: import("@feathersjs/typebox").TAny;
|
|
5744
5752
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5745
5753
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5746
5754
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5747
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5748
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5755
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5756
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5749
5757
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5750
5758
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5751
5759
|
} | undefined>]>>]>>;
|
|
@@ -5755,8 +5763,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5755
5763
|
$lt: import("@feathersjs/typebox").TString<string>;
|
|
5756
5764
|
$lte: import("@feathersjs/typebox").TString<string>;
|
|
5757
5765
|
$ne: import("@feathersjs/typebox").TString<string>;
|
|
5758
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5759
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5766
|
+
$in: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5767
|
+
$nin: import("@feathersjs/typebox").TString<string> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TString<string>>;
|
|
5760
5768
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5761
5769
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5762
5770
|
} | undefined>]>>]>>;
|
|
@@ -5766,8 +5774,8 @@ export declare const tradersPodsApiQuerySchema: import("@feathersjs/typebox").TI
|
|
|
5766
5774
|
$lt: import("@feathersjs/typebox").TAny;
|
|
5767
5775
|
$lte: import("@feathersjs/typebox").TAny;
|
|
5768
5776
|
$ne: import("@feathersjs/typebox").TAny;
|
|
5769
|
-
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5770
|
-
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5777
|
+
$in: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5778
|
+
$nin: import("@feathersjs/typebox").TAny | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>;
|
|
5771
5779
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5772
5780
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
5773
5781
|
} | undefined>]>>]>>;
|
|
@@ -5780,12 +5788,12 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5780
5788
|
$sort: {
|
|
5781
5789
|
_id?: number | undefined;
|
|
5782
5790
|
createdAt?: number | undefined;
|
|
5783
|
-
traderId?: number | undefined;
|
|
5784
5791
|
userId?: number | undefined;
|
|
5792
|
+
traderId?: number | undefined;
|
|
5785
5793
|
action?: number | undefined;
|
|
5786
5794
|
result?: number | undefined;
|
|
5787
5795
|
};
|
|
5788
|
-
$select: ("_id" | "createdAt" | "
|
|
5796
|
+
$select: ("_id" | "createdAt" | "userId" | "traderId" | "action" | "result")[];
|
|
5789
5797
|
$and: ({
|
|
5790
5798
|
_id?: string | {} | Partial<{
|
|
5791
5799
|
$gt: string | {};
|
|
@@ -5793,20 +5801,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5793
5801
|
$lt: string | {};
|
|
5794
5802
|
$lte: string | {};
|
|
5795
5803
|
$ne: string | {};
|
|
5796
|
-
$in: (string | {})[];
|
|
5797
|
-
$nin: (string | {})[];
|
|
5804
|
+
$in: string | {} | (string | {})[];
|
|
5805
|
+
$nin: string | {} | (string | {})[];
|
|
5798
5806
|
} & {}> | undefined;
|
|
5799
5807
|
createdAt?: any;
|
|
5800
|
-
traderId?: any;
|
|
5801
5808
|
userId?: any;
|
|
5809
|
+
traderId?: any;
|
|
5802
5810
|
action?: string | Partial<{
|
|
5803
5811
|
$gt: string;
|
|
5804
5812
|
$gte: string;
|
|
5805
5813
|
$lt: string;
|
|
5806
5814
|
$lte: string;
|
|
5807
5815
|
$ne: string;
|
|
5808
|
-
$in: string[];
|
|
5809
|
-
$nin: string[];
|
|
5816
|
+
$in: string | string[];
|
|
5817
|
+
$nin: string | string[];
|
|
5810
5818
|
} & {}> | undefined;
|
|
5811
5819
|
result?: any;
|
|
5812
5820
|
} | {
|
|
@@ -5817,20 +5825,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5817
5825
|
$lt: string | {};
|
|
5818
5826
|
$lte: string | {};
|
|
5819
5827
|
$ne: string | {};
|
|
5820
|
-
$in: (string | {})[];
|
|
5821
|
-
$nin: (string | {})[];
|
|
5828
|
+
$in: string | {} | (string | {})[];
|
|
5829
|
+
$nin: string | {} | (string | {})[];
|
|
5822
5830
|
} & {}> | undefined;
|
|
5823
5831
|
createdAt?: any;
|
|
5824
|
-
traderId?: any;
|
|
5825
5832
|
userId?: any;
|
|
5833
|
+
traderId?: any;
|
|
5826
5834
|
action?: string | Partial<{
|
|
5827
5835
|
$gt: string;
|
|
5828
5836
|
$gte: string;
|
|
5829
5837
|
$lt: string;
|
|
5830
5838
|
$lte: string;
|
|
5831
5839
|
$ne: string;
|
|
5832
|
-
$in: string[];
|
|
5833
|
-
$nin: string[];
|
|
5840
|
+
$in: string | string[];
|
|
5841
|
+
$nin: string | string[];
|
|
5834
5842
|
} & {}> | undefined;
|
|
5835
5843
|
result?: any;
|
|
5836
5844
|
}[];
|
|
@@ -5842,20 +5850,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5842
5850
|
$lt: string | {};
|
|
5843
5851
|
$lte: string | {};
|
|
5844
5852
|
$ne: string | {};
|
|
5845
|
-
$in: (string | {})[];
|
|
5846
|
-
$nin: (string | {})[];
|
|
5853
|
+
$in: string | {} | (string | {})[];
|
|
5854
|
+
$nin: string | {} | (string | {})[];
|
|
5847
5855
|
} & {}> | undefined;
|
|
5848
5856
|
createdAt?: any;
|
|
5849
|
-
traderId?: any;
|
|
5850
5857
|
userId?: any;
|
|
5858
|
+
traderId?: any;
|
|
5851
5859
|
action?: string | Partial<{
|
|
5852
5860
|
$gt: string;
|
|
5853
5861
|
$gte: string;
|
|
5854
5862
|
$lt: string;
|
|
5855
5863
|
$lte: string;
|
|
5856
5864
|
$ne: string;
|
|
5857
|
-
$in: string[];
|
|
5858
|
-
$nin: string[];
|
|
5865
|
+
$in: string | string[];
|
|
5866
|
+
$nin: string | string[];
|
|
5859
5867
|
} & {}> | undefined;
|
|
5860
5868
|
result?: any;
|
|
5861
5869
|
}[];
|
|
@@ -5866,20 +5874,20 @@ export declare const tradersPodsApiQueryResolver: import("@feathersjs/schema").R
|
|
|
5866
5874
|
$lt: string | {};
|
|
5867
5875
|
$lte: string | {};
|
|
5868
5876
|
$ne: string | {};
|
|
5869
|
-
$in: (string | {})[];
|
|
5870
|
-
$nin: (string | {})[];
|
|
5877
|
+
$in: string | {} | (string | {})[];
|
|
5878
|
+
$nin: string | {} | (string | {})[];
|
|
5871
5879
|
} & {}> | undefined;
|
|
5872
5880
|
createdAt?: any;
|
|
5873
|
-
traderId?: any;
|
|
5874
5881
|
userId?: any;
|
|
5882
|
+
traderId?: any;
|
|
5875
5883
|
action?: string | Partial<{
|
|
5876
5884
|
$gt: string;
|
|
5877
5885
|
$gte: string;
|
|
5878
5886
|
$lt: string;
|
|
5879
5887
|
$lte: string;
|
|
5880
5888
|
$ne: string;
|
|
5881
|
-
$in: string[];
|
|
5882
|
-
$nin: string[];
|
|
5889
|
+
$in: string | string[];
|
|
5890
|
+
$nin: string | string[];
|
|
5883
5891
|
} & {}> | undefined;
|
|
5884
5892
|
result?: any;
|
|
5885
5893
|
} & {}, HookContext<TradersPodsApiService<import("./api.class").TradersPodsApiParams>>>;
|