@cryptorobot.ai/client 1.26.0-dev.1023 → 1.26.0-dev.1025
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/src/services/copilot/recommendations/recommendations.hooks.d.ts +4 -0
- package/lib/src/services/strategies/strategies.schema.d.ts +419 -0
- package/lib/src/services/strategies/templates/templates.schema.d.ts +2464 -0
- package/lib/src/services/traders/pods/api/api.schema.d.ts +448 -0
- package/lib/src/services/traders/pods/pods.schema.d.ts +504 -0
- package/package.json +1 -1
|
@@ -1205,6 +1205,34 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
1205
1205
|
stress_shield: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1206
1206
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1207
1207
|
}>>;
|
|
1208
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1209
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1210
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
1211
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1212
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1213
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1214
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1215
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
1216
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1217
|
+
}>;
|
|
1218
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1219
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1220
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1221
|
+
}>>;
|
|
1222
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1223
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1224
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1225
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1226
|
+
}>>;
|
|
1227
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1228
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1229
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1230
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
1231
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1232
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1233
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1234
|
+
}>>;
|
|
1235
|
+
}>>;
|
|
1208
1236
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1209
1237
|
sourceStrategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
1210
1238
|
sourceUserId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
@@ -1786,6 +1814,34 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
|
|
|
1786
1814
|
}>;
|
|
1787
1815
|
}>>;
|
|
1788
1816
|
}>;
|
|
1817
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1818
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1819
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
1820
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1821
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1822
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1823
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1824
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
1825
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1826
|
+
}>;
|
|
1827
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1828
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1829
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1830
|
+
}>>;
|
|
1831
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1832
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1833
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1834
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1835
|
+
}>>;
|
|
1836
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1837
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1838
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1839
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
1840
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1841
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1842
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1843
|
+
}>>;
|
|
1844
|
+
}>>;
|
|
1789
1845
|
}>;
|
|
1790
1846
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
1791
1847
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -3050,6 +3106,34 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
3050
3106
|
stress_shield?: {
|
|
3051
3107
|
enabled: boolean;
|
|
3052
3108
|
} | undefined;
|
|
3109
|
+
dca?: {
|
|
3110
|
+
enabled: boolean;
|
|
3111
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
3112
|
+
trigger: {
|
|
3113
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
3114
|
+
stepPct?: number | undefined;
|
|
3115
|
+
stepScale?: number | undefined;
|
|
3116
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
3117
|
+
count?: number | undefined;
|
|
3118
|
+
};
|
|
3119
|
+
baseOrder?: {
|
|
3120
|
+
type: "fixed" | "percentOfBalance";
|
|
3121
|
+
value: number;
|
|
3122
|
+
} | undefined;
|
|
3123
|
+
safetyOrder?: {
|
|
3124
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
3125
|
+
value?: number | undefined;
|
|
3126
|
+
volumeScale?: number | undefined;
|
|
3127
|
+
} | undefined;
|
|
3128
|
+
maxSafetyOrders?: number | undefined;
|
|
3129
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
3130
|
+
exit?: {
|
|
3131
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
3132
|
+
takeProfitPct?: number | undefined;
|
|
3133
|
+
trailing?: boolean | undefined;
|
|
3134
|
+
stopLossPct?: number | undefined;
|
|
3135
|
+
} | undefined;
|
|
3136
|
+
} | undefined;
|
|
3053
3137
|
configured?: boolean | undefined;
|
|
3054
3138
|
sourceStrategyId?: string | {} | undefined;
|
|
3055
3139
|
sourceUserId?: string | {} | undefined;
|
|
@@ -3631,6 +3715,34 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
|
|
|
3631
3715
|
};
|
|
3632
3716
|
}[];
|
|
3633
3717
|
};
|
|
3718
|
+
dca?: {
|
|
3719
|
+
enabled: boolean;
|
|
3720
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
3721
|
+
trigger: {
|
|
3722
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
3723
|
+
stepPct?: number | undefined;
|
|
3724
|
+
stepScale?: number | undefined;
|
|
3725
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
3726
|
+
count?: number | undefined;
|
|
3727
|
+
};
|
|
3728
|
+
baseOrder?: {
|
|
3729
|
+
type: "fixed" | "percentOfBalance";
|
|
3730
|
+
value: number;
|
|
3731
|
+
} | undefined;
|
|
3732
|
+
safetyOrder?: {
|
|
3733
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
3734
|
+
value?: number | undefined;
|
|
3735
|
+
volumeScale?: number | undefined;
|
|
3736
|
+
} | undefined;
|
|
3737
|
+
maxSafetyOrders?: number | undefined;
|
|
3738
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
3739
|
+
exit?: {
|
|
3740
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
3741
|
+
takeProfitPct?: number | undefined;
|
|
3742
|
+
trailing?: boolean | undefined;
|
|
3743
|
+
stopLossPct?: number | undefined;
|
|
3744
|
+
} | undefined;
|
|
3745
|
+
} | undefined;
|
|
3634
3746
|
};
|
|
3635
3747
|
timeinforce: string;
|
|
3636
3748
|
source?: "community" | "official" | undefined;
|
|
@@ -4893,6 +5005,34 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
4893
5005
|
stress_shield?: {
|
|
4894
5006
|
enabled: boolean;
|
|
4895
5007
|
} | undefined;
|
|
5008
|
+
dca?: {
|
|
5009
|
+
enabled: boolean;
|
|
5010
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
5011
|
+
trigger: {
|
|
5012
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
5013
|
+
stepPct?: number | undefined;
|
|
5014
|
+
stepScale?: number | undefined;
|
|
5015
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
5016
|
+
count?: number | undefined;
|
|
5017
|
+
};
|
|
5018
|
+
baseOrder?: {
|
|
5019
|
+
type: "fixed" | "percentOfBalance";
|
|
5020
|
+
value: number;
|
|
5021
|
+
} | undefined;
|
|
5022
|
+
safetyOrder?: {
|
|
5023
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
5024
|
+
value?: number | undefined;
|
|
5025
|
+
volumeScale?: number | undefined;
|
|
5026
|
+
} | undefined;
|
|
5027
|
+
maxSafetyOrders?: number | undefined;
|
|
5028
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
5029
|
+
exit?: {
|
|
5030
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
5031
|
+
takeProfitPct?: number | undefined;
|
|
5032
|
+
trailing?: boolean | undefined;
|
|
5033
|
+
stopLossPct?: number | undefined;
|
|
5034
|
+
} | undefined;
|
|
5035
|
+
} | undefined;
|
|
4896
5036
|
configured?: boolean | undefined;
|
|
4897
5037
|
sourceStrategyId?: string | {} | undefined;
|
|
4898
5038
|
sourceUserId?: string | {} | undefined;
|
|
@@ -5474,6 +5614,34 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
|
|
|
5474
5614
|
};
|
|
5475
5615
|
}[];
|
|
5476
5616
|
};
|
|
5617
|
+
dca?: {
|
|
5618
|
+
enabled: boolean;
|
|
5619
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
5620
|
+
trigger: {
|
|
5621
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
5622
|
+
stepPct?: number | undefined;
|
|
5623
|
+
stepScale?: number | undefined;
|
|
5624
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
5625
|
+
count?: number | undefined;
|
|
5626
|
+
};
|
|
5627
|
+
baseOrder?: {
|
|
5628
|
+
type: "fixed" | "percentOfBalance";
|
|
5629
|
+
value: number;
|
|
5630
|
+
} | undefined;
|
|
5631
|
+
safetyOrder?: {
|
|
5632
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
5633
|
+
value?: number | undefined;
|
|
5634
|
+
volumeScale?: number | undefined;
|
|
5635
|
+
} | undefined;
|
|
5636
|
+
maxSafetyOrders?: number | undefined;
|
|
5637
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
5638
|
+
exit?: {
|
|
5639
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
5640
|
+
takeProfitPct?: number | undefined;
|
|
5641
|
+
trailing?: boolean | undefined;
|
|
5642
|
+
stopLossPct?: number | undefined;
|
|
5643
|
+
} | undefined;
|
|
5644
|
+
} | undefined;
|
|
5477
5645
|
};
|
|
5478
5646
|
timeinforce: string;
|
|
5479
5647
|
source?: "community" | "official" | undefined;
|
|
@@ -6736,6 +6904,34 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
6736
6904
|
stress_shield: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6737
6905
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6738
6906
|
}>>;
|
|
6907
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6908
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6909
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
6910
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6911
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6912
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6913
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6914
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
6915
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6916
|
+
}>;
|
|
6917
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6918
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6919
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6920
|
+
}>>;
|
|
6921
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6922
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6923
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6924
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6925
|
+
}>>;
|
|
6926
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6927
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6928
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6929
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
6930
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6931
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6932
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6933
|
+
}>>;
|
|
6934
|
+
}>>;
|
|
6739
6935
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6740
6936
|
sourceStrategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
6741
6937
|
sourceUserId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
@@ -7317,6 +7513,34 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
|
|
|
7317
7513
|
}>;
|
|
7318
7514
|
}>>;
|
|
7319
7515
|
}>;
|
|
7516
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
7517
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
7518
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
7519
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
7520
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
7521
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7522
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7523
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
7524
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7525
|
+
}>;
|
|
7526
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
7527
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
7528
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
7529
|
+
}>>;
|
|
7530
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
7531
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
7532
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7533
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7534
|
+
}>>;
|
|
7535
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7536
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
7537
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
7538
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
7539
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7540
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
7541
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
7542
|
+
}>>;
|
|
7543
|
+
}>>;
|
|
7320
7544
|
}>;
|
|
7321
7545
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
7322
7546
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -8581,6 +8805,34 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
8581
8805
|
stress_shield?: {
|
|
8582
8806
|
enabled: boolean;
|
|
8583
8807
|
} | undefined;
|
|
8808
|
+
dca?: {
|
|
8809
|
+
enabled: boolean;
|
|
8810
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8811
|
+
trigger: {
|
|
8812
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8813
|
+
stepPct?: number | undefined;
|
|
8814
|
+
stepScale?: number | undefined;
|
|
8815
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8816
|
+
count?: number | undefined;
|
|
8817
|
+
};
|
|
8818
|
+
baseOrder?: {
|
|
8819
|
+
type: "fixed" | "percentOfBalance";
|
|
8820
|
+
value: number;
|
|
8821
|
+
} | undefined;
|
|
8822
|
+
safetyOrder?: {
|
|
8823
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8824
|
+
value?: number | undefined;
|
|
8825
|
+
volumeScale?: number | undefined;
|
|
8826
|
+
} | undefined;
|
|
8827
|
+
maxSafetyOrders?: number | undefined;
|
|
8828
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8829
|
+
exit?: {
|
|
8830
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8831
|
+
takeProfitPct?: number | undefined;
|
|
8832
|
+
trailing?: boolean | undefined;
|
|
8833
|
+
stopLossPct?: number | undefined;
|
|
8834
|
+
} | undefined;
|
|
8835
|
+
} | undefined;
|
|
8584
8836
|
configured?: boolean | undefined;
|
|
8585
8837
|
sourceStrategyId?: string | {} | undefined;
|
|
8586
8838
|
sourceUserId?: string | {} | undefined;
|
|
@@ -9162,6 +9414,34 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
|
|
|
9162
9414
|
};
|
|
9163
9415
|
}[];
|
|
9164
9416
|
};
|
|
9417
|
+
dca?: {
|
|
9418
|
+
enabled: boolean;
|
|
9419
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9420
|
+
trigger: {
|
|
9421
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9422
|
+
stepPct?: number | undefined;
|
|
9423
|
+
stepScale?: number | undefined;
|
|
9424
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9425
|
+
count?: number | undefined;
|
|
9426
|
+
};
|
|
9427
|
+
baseOrder?: {
|
|
9428
|
+
type: "fixed" | "percentOfBalance";
|
|
9429
|
+
value: number;
|
|
9430
|
+
} | undefined;
|
|
9431
|
+
safetyOrder?: {
|
|
9432
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9433
|
+
value?: number | undefined;
|
|
9434
|
+
volumeScale?: number | undefined;
|
|
9435
|
+
} | undefined;
|
|
9436
|
+
maxSafetyOrders?: number | undefined;
|
|
9437
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9438
|
+
exit?: {
|
|
9439
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9440
|
+
takeProfitPct?: number | undefined;
|
|
9441
|
+
trailing?: boolean | undefined;
|
|
9442
|
+
stopLossPct?: number | undefined;
|
|
9443
|
+
} | undefined;
|
|
9444
|
+
} | undefined;
|
|
9165
9445
|
};
|
|
9166
9446
|
timeinforce: string;
|
|
9167
9447
|
source?: "community" | "official" | undefined;
|
|
@@ -10424,6 +10704,34 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
10424
10704
|
stress_shield: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
10425
10705
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
10426
10706
|
}>>;
|
|
10707
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
10708
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
10709
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
10710
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
10711
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
10712
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10713
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10714
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
10715
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10716
|
+
}>;
|
|
10717
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
10718
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
10719
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
10720
|
+
}>>;
|
|
10721
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
10722
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
10723
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10724
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10725
|
+
}>>;
|
|
10726
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10727
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
10728
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
10729
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
10730
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10731
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
10732
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
10733
|
+
}>>;
|
|
10734
|
+
}>>;
|
|
10427
10735
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
10428
10736
|
sourceStrategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
10429
10737
|
sourceUserId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
@@ -11005,6 +11313,34 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
|
|
|
11005
11313
|
}>;
|
|
11006
11314
|
}>>;
|
|
11007
11315
|
}>;
|
|
11316
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
11317
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
11318
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
11319
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
11320
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
11321
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11322
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11323
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
11324
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11325
|
+
}>;
|
|
11326
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
11327
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
11328
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
11329
|
+
}>>;
|
|
11330
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
11331
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
11332
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11333
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11334
|
+
}>>;
|
|
11335
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11336
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
11337
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
11338
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
11339
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11340
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
11341
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
11342
|
+
}>>;
|
|
11343
|
+
}>>;
|
|
11008
11344
|
}>;
|
|
11009
11345
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
11010
11346
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -12269,6 +12605,34 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
12269
12605
|
stress_shield?: {
|
|
12270
12606
|
enabled: boolean;
|
|
12271
12607
|
} | undefined;
|
|
12608
|
+
dca?: {
|
|
12609
|
+
enabled: boolean;
|
|
12610
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
12611
|
+
trigger: {
|
|
12612
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
12613
|
+
stepPct?: number | undefined;
|
|
12614
|
+
stepScale?: number | undefined;
|
|
12615
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
12616
|
+
count?: number | undefined;
|
|
12617
|
+
};
|
|
12618
|
+
baseOrder?: {
|
|
12619
|
+
type: "fixed" | "percentOfBalance";
|
|
12620
|
+
value: number;
|
|
12621
|
+
} | undefined;
|
|
12622
|
+
safetyOrder?: {
|
|
12623
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
12624
|
+
value?: number | undefined;
|
|
12625
|
+
volumeScale?: number | undefined;
|
|
12626
|
+
} | undefined;
|
|
12627
|
+
maxSafetyOrders?: number | undefined;
|
|
12628
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
12629
|
+
exit?: {
|
|
12630
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
12631
|
+
takeProfitPct?: number | undefined;
|
|
12632
|
+
trailing?: boolean | undefined;
|
|
12633
|
+
stopLossPct?: number | undefined;
|
|
12634
|
+
} | undefined;
|
|
12635
|
+
} | undefined;
|
|
12272
12636
|
configured?: boolean | undefined;
|
|
12273
12637
|
sourceStrategyId?: string | {} | undefined;
|
|
12274
12638
|
sourceUserId?: string | {} | undefined;
|
|
@@ -12850,6 +13214,34 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
|
|
|
12850
13214
|
};
|
|
12851
13215
|
}[];
|
|
12852
13216
|
};
|
|
13217
|
+
dca?: {
|
|
13218
|
+
enabled: boolean;
|
|
13219
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
13220
|
+
trigger: {
|
|
13221
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
13222
|
+
stepPct?: number | undefined;
|
|
13223
|
+
stepScale?: number | undefined;
|
|
13224
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
13225
|
+
count?: number | undefined;
|
|
13226
|
+
};
|
|
13227
|
+
baseOrder?: {
|
|
13228
|
+
type: "fixed" | "percentOfBalance";
|
|
13229
|
+
value: number;
|
|
13230
|
+
} | undefined;
|
|
13231
|
+
safetyOrder?: {
|
|
13232
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
13233
|
+
value?: number | undefined;
|
|
13234
|
+
volumeScale?: number | undefined;
|
|
13235
|
+
} | undefined;
|
|
13236
|
+
maxSafetyOrders?: number | undefined;
|
|
13237
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
13238
|
+
exit?: {
|
|
13239
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
13240
|
+
takeProfitPct?: number | undefined;
|
|
13241
|
+
trailing?: boolean | undefined;
|
|
13242
|
+
stopLossPct?: number | undefined;
|
|
13243
|
+
} | undefined;
|
|
13244
|
+
} | undefined;
|
|
12853
13245
|
};
|
|
12854
13246
|
timeinforce: string;
|
|
12855
13247
|
source?: "community" | "official" | undefined;
|
|
@@ -14112,6 +14504,34 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
14112
14504
|
stress_shield: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
14113
14505
|
enabled: import("@feathersjs/typebox").TBoolean;
|
|
14114
14506
|
}>>;
|
|
14507
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
14508
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
14509
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
14510
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
14511
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
14512
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14513
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14514
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
14515
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14516
|
+
}>;
|
|
14517
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
14518
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
14519
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
14520
|
+
}>>;
|
|
14521
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
14522
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
14523
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14524
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14525
|
+
}>>;
|
|
14526
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14527
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
14528
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
14529
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
14530
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14531
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
14532
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
14533
|
+
}>>;
|
|
14534
|
+
}>>;
|
|
14115
14535
|
configured: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
14116
14536
|
sourceStrategyId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
14117
14537
|
sourceUserId: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TObject<{}>]>>;
|
|
@@ -14693,6 +15113,34 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
|
|
|
14693
15113
|
}>;
|
|
14694
15114
|
}>>;
|
|
14695
15115
|
}>;
|
|
15116
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
15117
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
15118
|
+
reference: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"ath">, import("@feathersjs/typebox").TLiteral<"lastEntry">, import("@feathersjs/typebox").TLiteral<"averageEntry">, import("@feathersjs/typebox").TLiteral<"baseEntry">]>>;
|
|
15119
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
15120
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
15121
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15122
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15123
|
+
every: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"hour">, import("@feathersjs/typebox").TLiteral<"day">, import("@feathersjs/typebox").TLiteral<"week">, import("@feathersjs/typebox").TLiteral<"month">]>>;
|
|
15124
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15125
|
+
}>;
|
|
15126
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
15127
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
15128
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
15129
|
+
}>>;
|
|
15130
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
15131
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
15132
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15133
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15134
|
+
}>>;
|
|
15135
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15136
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
15137
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
15138
|
+
mode: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"none">, import("@feathersjs/typebox").TLiteral<"takeProfit">, import("@feathersjs/typebox").TLiteral<"newAth">, import("@feathersjs/typebox").TLiteral<"roi">]>;
|
|
15139
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15140
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
15141
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
15142
|
+
}>>;
|
|
15143
|
+
}>>;
|
|
14696
15144
|
}>;
|
|
14697
15145
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
14698
15146
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|