@cryptorobot.ai/client 1.26.0-dev.1023 → 1.26.0-dev.1024
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
|
@@ -77,6 +77,34 @@ export declare const strategiesTemplatesSchema: import("@feathersjs/typebox").TO
|
|
|
77
77
|
}>;
|
|
78
78
|
}>>;
|
|
79
79
|
}>;
|
|
80
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
81
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
82
|
+
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">]>>;
|
|
83
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
84
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
85
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
86
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
87
|
+
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">]>>;
|
|
88
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
89
|
+
}>;
|
|
90
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
91
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
92
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
93
|
+
}>>;
|
|
94
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
95
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
96
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
97
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
98
|
+
}>>;
|
|
99
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
100
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
101
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
102
|
+
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">]>;
|
|
103
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
104
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
105
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
106
|
+
}>>;
|
|
107
|
+
}>>;
|
|
80
108
|
}>;
|
|
81
109
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
82
110
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -199,6 +227,34 @@ export declare const strategiesTemplatesResolver: import("@feathersjs/schema").R
|
|
|
199
227
|
};
|
|
200
228
|
}[];
|
|
201
229
|
};
|
|
230
|
+
dca?: {
|
|
231
|
+
enabled: boolean;
|
|
232
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
233
|
+
trigger: {
|
|
234
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
235
|
+
stepPct?: number | undefined;
|
|
236
|
+
stepScale?: number | undefined;
|
|
237
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
238
|
+
count?: number | undefined;
|
|
239
|
+
};
|
|
240
|
+
baseOrder?: {
|
|
241
|
+
type: "fixed" | "percentOfBalance";
|
|
242
|
+
value: number;
|
|
243
|
+
} | undefined;
|
|
244
|
+
safetyOrder?: {
|
|
245
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
246
|
+
value?: number | undefined;
|
|
247
|
+
volumeScale?: number | undefined;
|
|
248
|
+
} | undefined;
|
|
249
|
+
maxSafetyOrders?: number | undefined;
|
|
250
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
251
|
+
exit?: {
|
|
252
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
253
|
+
takeProfitPct?: number | undefined;
|
|
254
|
+
trailing?: boolean | undefined;
|
|
255
|
+
stopLossPct?: number | undefined;
|
|
256
|
+
} | undefined;
|
|
257
|
+
} | undefined;
|
|
202
258
|
};
|
|
203
259
|
timeinforce: string;
|
|
204
260
|
source?: "community" | "official" | undefined;
|
|
@@ -319,6 +375,34 @@ export declare const strategiesTemplatesExternalResolver: import("@feathersjs/sc
|
|
|
319
375
|
};
|
|
320
376
|
}[];
|
|
321
377
|
};
|
|
378
|
+
dca?: {
|
|
379
|
+
enabled: boolean;
|
|
380
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
381
|
+
trigger: {
|
|
382
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
383
|
+
stepPct?: number | undefined;
|
|
384
|
+
stepScale?: number | undefined;
|
|
385
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
386
|
+
count?: number | undefined;
|
|
387
|
+
};
|
|
388
|
+
baseOrder?: {
|
|
389
|
+
type: "fixed" | "percentOfBalance";
|
|
390
|
+
value: number;
|
|
391
|
+
} | undefined;
|
|
392
|
+
safetyOrder?: {
|
|
393
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
394
|
+
value?: number | undefined;
|
|
395
|
+
volumeScale?: number | undefined;
|
|
396
|
+
} | undefined;
|
|
397
|
+
maxSafetyOrders?: number | undefined;
|
|
398
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
399
|
+
exit?: {
|
|
400
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
401
|
+
takeProfitPct?: number | undefined;
|
|
402
|
+
trailing?: boolean | undefined;
|
|
403
|
+
stopLossPct?: number | undefined;
|
|
404
|
+
} | undefined;
|
|
405
|
+
} | undefined;
|
|
322
406
|
};
|
|
323
407
|
timeinforce: string;
|
|
324
408
|
source?: "community" | "official" | undefined;
|
|
@@ -439,6 +523,34 @@ export declare const strategiesTemplatesDataSchema: import("@feathersjs/typebox"
|
|
|
439
523
|
}>;
|
|
440
524
|
}>>;
|
|
441
525
|
}>;
|
|
526
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
527
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
528
|
+
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">]>>;
|
|
529
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
530
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
531
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
532
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
533
|
+
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">]>>;
|
|
534
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
535
|
+
}>;
|
|
536
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
537
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
538
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
539
|
+
}>>;
|
|
540
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
541
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
542
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
543
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
544
|
+
}>>;
|
|
545
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
546
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
547
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
548
|
+
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">]>;
|
|
549
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
550
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
551
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
552
|
+
}>>;
|
|
553
|
+
}>>;
|
|
442
554
|
}>;
|
|
443
555
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
444
556
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -561,6 +673,34 @@ export declare const strategiesTemplatesDataResolver: import("@feathersjs/schema
|
|
|
561
673
|
};
|
|
562
674
|
}[];
|
|
563
675
|
};
|
|
676
|
+
dca?: {
|
|
677
|
+
enabled: boolean;
|
|
678
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
679
|
+
trigger: {
|
|
680
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
681
|
+
stepPct?: number | undefined;
|
|
682
|
+
stepScale?: number | undefined;
|
|
683
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
684
|
+
count?: number | undefined;
|
|
685
|
+
};
|
|
686
|
+
baseOrder?: {
|
|
687
|
+
type: "fixed" | "percentOfBalance";
|
|
688
|
+
value: number;
|
|
689
|
+
} | undefined;
|
|
690
|
+
safetyOrder?: {
|
|
691
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
692
|
+
value?: number | undefined;
|
|
693
|
+
volumeScale?: number | undefined;
|
|
694
|
+
} | undefined;
|
|
695
|
+
maxSafetyOrders?: number | undefined;
|
|
696
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
697
|
+
exit?: {
|
|
698
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
699
|
+
takeProfitPct?: number | undefined;
|
|
700
|
+
trailing?: boolean | undefined;
|
|
701
|
+
stopLossPct?: number | undefined;
|
|
702
|
+
} | undefined;
|
|
703
|
+
} | undefined;
|
|
564
704
|
};
|
|
565
705
|
timeinforce: string;
|
|
566
706
|
source?: "community" | "official" | undefined;
|
|
@@ -681,6 +821,34 @@ export declare const strategiesTemplatesPatchSchema: import("@feathersjs/typebox
|
|
|
681
821
|
}>;
|
|
682
822
|
}>>;
|
|
683
823
|
}>;
|
|
824
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
825
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
826
|
+
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">]>>;
|
|
827
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
828
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
829
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
830
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
831
|
+
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">]>>;
|
|
832
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
833
|
+
}>;
|
|
834
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
835
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
836
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
837
|
+
}>>;
|
|
838
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
839
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
840
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
841
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
842
|
+
}>>;
|
|
843
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
844
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
845
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
846
|
+
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">]>;
|
|
847
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
848
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
849
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
850
|
+
}>>;
|
|
851
|
+
}>>;
|
|
684
852
|
}>;
|
|
685
853
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
686
854
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -803,6 +971,34 @@ export declare const strategiesTemplatesPatchResolver: import("@feathersjs/schem
|
|
|
803
971
|
};
|
|
804
972
|
}[];
|
|
805
973
|
};
|
|
974
|
+
dca?: {
|
|
975
|
+
enabled: boolean;
|
|
976
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
977
|
+
trigger: {
|
|
978
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
979
|
+
stepPct?: number | undefined;
|
|
980
|
+
stepScale?: number | undefined;
|
|
981
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
982
|
+
count?: number | undefined;
|
|
983
|
+
};
|
|
984
|
+
baseOrder?: {
|
|
985
|
+
type: "fixed" | "percentOfBalance";
|
|
986
|
+
value: number;
|
|
987
|
+
} | undefined;
|
|
988
|
+
safetyOrder?: {
|
|
989
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
990
|
+
value?: number | undefined;
|
|
991
|
+
volumeScale?: number | undefined;
|
|
992
|
+
} | undefined;
|
|
993
|
+
maxSafetyOrders?: number | undefined;
|
|
994
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
995
|
+
exit?: {
|
|
996
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
997
|
+
takeProfitPct?: number | undefined;
|
|
998
|
+
trailing?: boolean | undefined;
|
|
999
|
+
stopLossPct?: number | undefined;
|
|
1000
|
+
} | undefined;
|
|
1001
|
+
} | undefined;
|
|
806
1002
|
};
|
|
807
1003
|
timeinforce: string;
|
|
808
1004
|
source?: "community" | "official" | undefined;
|
|
@@ -923,6 +1119,34 @@ export declare const strategiesTemplatesQueryProperties: import("@feathersjs/typ
|
|
|
923
1119
|
}>;
|
|
924
1120
|
}>>;
|
|
925
1121
|
}>;
|
|
1122
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1123
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1124
|
+
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">]>>;
|
|
1125
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1126
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1127
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1128
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1129
|
+
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">]>>;
|
|
1130
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1131
|
+
}>;
|
|
1132
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1133
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1134
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1135
|
+
}>>;
|
|
1136
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1137
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1138
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1139
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1140
|
+
}>>;
|
|
1141
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1142
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1143
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1144
|
+
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">]>;
|
|
1145
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1146
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1147
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1148
|
+
}>>;
|
|
1149
|
+
}>>;
|
|
926
1150
|
}>;
|
|
927
1151
|
timeinforce: import("@feathersjs/typebox").TString<string>;
|
|
928
1152
|
source: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"official">, import("@feathersjs/typebox").TLiteral<"community">]>>;
|
|
@@ -1452,6 +1676,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1452
1676
|
}>;
|
|
1453
1677
|
}>>;
|
|
1454
1678
|
}>;
|
|
1679
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1680
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1681
|
+
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">]>>;
|
|
1682
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1683
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1684
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1685
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1686
|
+
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">]>>;
|
|
1687
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1688
|
+
}>;
|
|
1689
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1690
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1691
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1692
|
+
}>>;
|
|
1693
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1694
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1695
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1696
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1697
|
+
}>>;
|
|
1698
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1699
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1700
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1701
|
+
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">]>;
|
|
1702
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1703
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1704
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1705
|
+
}>>;
|
|
1706
|
+
}>>;
|
|
1455
1707
|
}>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1456
1708
|
$gt: import("@feathersjs/typebox").TObject<{
|
|
1457
1709
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1520,6 +1772,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1520
1772
|
}>;
|
|
1521
1773
|
}>>;
|
|
1522
1774
|
}>;
|
|
1775
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1776
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1777
|
+
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">]>>;
|
|
1778
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1779
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1780
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1781
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1782
|
+
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">]>>;
|
|
1783
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1784
|
+
}>;
|
|
1785
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1786
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1787
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1788
|
+
}>>;
|
|
1789
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1790
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1791
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1792
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1793
|
+
}>>;
|
|
1794
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1795
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1796
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1797
|
+
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">]>;
|
|
1798
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1799
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1800
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1801
|
+
}>>;
|
|
1802
|
+
}>>;
|
|
1523
1803
|
}>;
|
|
1524
1804
|
$gte: import("@feathersjs/typebox").TObject<{
|
|
1525
1805
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1588,6 +1868,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1588
1868
|
}>;
|
|
1589
1869
|
}>>;
|
|
1590
1870
|
}>;
|
|
1871
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1872
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1873
|
+
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">]>>;
|
|
1874
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1875
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1876
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1877
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1878
|
+
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">]>>;
|
|
1879
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1880
|
+
}>;
|
|
1881
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1882
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1883
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1884
|
+
}>>;
|
|
1885
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1886
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1887
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1888
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1889
|
+
}>>;
|
|
1890
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1891
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1892
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1893
|
+
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">]>;
|
|
1894
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1895
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1896
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1897
|
+
}>>;
|
|
1898
|
+
}>>;
|
|
1591
1899
|
}>;
|
|
1592
1900
|
$lt: import("@feathersjs/typebox").TObject<{
|
|
1593
1901
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1656,6 +1964,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1656
1964
|
}>;
|
|
1657
1965
|
}>>;
|
|
1658
1966
|
}>;
|
|
1967
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1968
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1969
|
+
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">]>>;
|
|
1970
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
1971
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
1972
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1973
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1974
|
+
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">]>>;
|
|
1975
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1976
|
+
}>;
|
|
1977
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1978
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
1979
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
1980
|
+
}>>;
|
|
1981
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1982
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
1983
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1984
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1985
|
+
}>>;
|
|
1986
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1987
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
1988
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1989
|
+
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">]>;
|
|
1990
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1991
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
1992
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
1993
|
+
}>>;
|
|
1994
|
+
}>>;
|
|
1659
1995
|
}>;
|
|
1660
1996
|
$lte: import("@feathersjs/typebox").TObject<{
|
|
1661
1997
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1724,6 +2060,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1724
2060
|
}>;
|
|
1725
2061
|
}>>;
|
|
1726
2062
|
}>;
|
|
2063
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2064
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2065
|
+
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">]>>;
|
|
2066
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
2067
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
2068
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2069
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2070
|
+
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">]>>;
|
|
2071
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2072
|
+
}>;
|
|
2073
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2074
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
2075
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
2076
|
+
}>>;
|
|
2077
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2078
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
2079
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2080
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2081
|
+
}>>;
|
|
2082
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2083
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
2084
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2085
|
+
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">]>;
|
|
2086
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2087
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2088
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2089
|
+
}>>;
|
|
2090
|
+
}>>;
|
|
1727
2091
|
}>;
|
|
1728
2092
|
$ne: import("@feathersjs/typebox").TObject<{
|
|
1729
2093
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1792,6 +2156,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1792
2156
|
}>;
|
|
1793
2157
|
}>>;
|
|
1794
2158
|
}>;
|
|
2159
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2160
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2161
|
+
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">]>>;
|
|
2162
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
2163
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
2164
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2165
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2166
|
+
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">]>>;
|
|
2167
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2168
|
+
}>;
|
|
2169
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2170
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
2171
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
2172
|
+
}>>;
|
|
2173
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2174
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
2175
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2176
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2177
|
+
}>>;
|
|
2178
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2179
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
2180
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2181
|
+
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">]>;
|
|
2182
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2183
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2184
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2185
|
+
}>>;
|
|
2186
|
+
}>>;
|
|
1795
2187
|
}>;
|
|
1796
2188
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1797
2189
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1860,6 +2252,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1860
2252
|
}>;
|
|
1861
2253
|
}>>;
|
|
1862
2254
|
}>;
|
|
2255
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2256
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2257
|
+
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">]>>;
|
|
2258
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
2259
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
2260
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2261
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2262
|
+
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">]>>;
|
|
2263
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2264
|
+
}>;
|
|
2265
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2266
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
2267
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
2268
|
+
}>>;
|
|
2269
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2270
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
2271
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2272
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2273
|
+
}>>;
|
|
2274
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2275
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
2276
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2277
|
+
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">]>;
|
|
2278
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2279
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2280
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2281
|
+
}>>;
|
|
2282
|
+
}>>;
|
|
1863
2283
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
1864
2284
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
1865
2285
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -1927,6 +2347,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1927
2347
|
}>;
|
|
1928
2348
|
}>>;
|
|
1929
2349
|
}>;
|
|
2350
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2351
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2352
|
+
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">]>>;
|
|
2353
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
2354
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
2355
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2356
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2357
|
+
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">]>>;
|
|
2358
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2359
|
+
}>;
|
|
2360
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2361
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
2362
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
2363
|
+
}>>;
|
|
2364
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2365
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
2366
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2367
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2368
|
+
}>>;
|
|
2369
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2370
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
2371
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2372
|
+
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">]>;
|
|
2373
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2374
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2375
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2376
|
+
}>>;
|
|
2377
|
+
}>>;
|
|
1930
2378
|
}>;
|
|
1931
2379
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1932
2380
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1995,6 +2443,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
1995
2443
|
}>;
|
|
1996
2444
|
}>>;
|
|
1997
2445
|
}>;
|
|
2446
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2447
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2448
|
+
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">]>>;
|
|
2449
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
2450
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
2451
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2452
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2453
|
+
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">]>>;
|
|
2454
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2455
|
+
}>;
|
|
2456
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2457
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
2458
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
2459
|
+
}>>;
|
|
2460
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2461
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
2462
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2463
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2464
|
+
}>>;
|
|
2465
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2466
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
2467
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2468
|
+
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">]>;
|
|
2469
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2470
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2471
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2472
|
+
}>>;
|
|
2473
|
+
}>>;
|
|
1998
2474
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
1999
2475
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
2000
2476
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -2062,6 +2538,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2062
2538
|
}>;
|
|
2063
2539
|
}>>;
|
|
2064
2540
|
}>;
|
|
2541
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2542
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2543
|
+
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">]>>;
|
|
2544
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
2545
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
2546
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2547
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2548
|
+
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">]>>;
|
|
2549
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2550
|
+
}>;
|
|
2551
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2552
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
2553
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
2554
|
+
}>>;
|
|
2555
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2556
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
2557
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2558
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2559
|
+
}>>;
|
|
2560
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2561
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
2562
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2563
|
+
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">]>;
|
|
2564
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2565
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
2566
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
2567
|
+
}>>;
|
|
2568
|
+
}>>;
|
|
2065
2569
|
}>;
|
|
2066
2570
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2067
2571
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -2535,6 +3039,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2535
3039
|
}>;
|
|
2536
3040
|
}>>;
|
|
2537
3041
|
}>;
|
|
3042
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3043
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3044
|
+
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">]>>;
|
|
3045
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3046
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3047
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3048
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3049
|
+
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">]>>;
|
|
3050
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3051
|
+
}>;
|
|
3052
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3053
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3054
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3055
|
+
}>>;
|
|
3056
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3057
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3058
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3059
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3060
|
+
}>>;
|
|
3061
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3062
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3063
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3064
|
+
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">]>;
|
|
3065
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3066
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3067
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3068
|
+
}>>;
|
|
3069
|
+
}>>;
|
|
2538
3070
|
}>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
2539
3071
|
$gt: import("@feathersjs/typebox").TObject<{
|
|
2540
3072
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2603,6 +3135,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2603
3135
|
}>;
|
|
2604
3136
|
}>>;
|
|
2605
3137
|
}>;
|
|
3138
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3139
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3140
|
+
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">]>>;
|
|
3141
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3142
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3143
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3144
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3145
|
+
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">]>>;
|
|
3146
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3147
|
+
}>;
|
|
3148
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3149
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3150
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3151
|
+
}>>;
|
|
3152
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3153
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3154
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3155
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3156
|
+
}>>;
|
|
3157
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3158
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3159
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3160
|
+
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">]>;
|
|
3161
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3162
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3163
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3164
|
+
}>>;
|
|
3165
|
+
}>>;
|
|
2606
3166
|
}>;
|
|
2607
3167
|
$gte: import("@feathersjs/typebox").TObject<{
|
|
2608
3168
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2671,6 +3231,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2671
3231
|
}>;
|
|
2672
3232
|
}>>;
|
|
2673
3233
|
}>;
|
|
3234
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3235
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3236
|
+
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">]>>;
|
|
3237
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3238
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3239
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3240
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3241
|
+
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">]>>;
|
|
3242
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3243
|
+
}>;
|
|
3244
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3245
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3246
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3247
|
+
}>>;
|
|
3248
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3249
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3250
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3251
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3252
|
+
}>>;
|
|
3253
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3254
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3255
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3256
|
+
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">]>;
|
|
3257
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3258
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3259
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3260
|
+
}>>;
|
|
3261
|
+
}>>;
|
|
2674
3262
|
}>;
|
|
2675
3263
|
$lt: import("@feathersjs/typebox").TObject<{
|
|
2676
3264
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2739,6 +3327,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2739
3327
|
}>;
|
|
2740
3328
|
}>>;
|
|
2741
3329
|
}>;
|
|
3330
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3331
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3332
|
+
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">]>>;
|
|
3333
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3334
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3335
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3336
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3337
|
+
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">]>>;
|
|
3338
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3339
|
+
}>;
|
|
3340
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3341
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3342
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3343
|
+
}>>;
|
|
3344
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3345
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3346
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3347
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3348
|
+
}>>;
|
|
3349
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3350
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3351
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3352
|
+
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">]>;
|
|
3353
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3354
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3355
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3356
|
+
}>>;
|
|
3357
|
+
}>>;
|
|
2742
3358
|
}>;
|
|
2743
3359
|
$lte: import("@feathersjs/typebox").TObject<{
|
|
2744
3360
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2807,6 +3423,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2807
3423
|
}>;
|
|
2808
3424
|
}>>;
|
|
2809
3425
|
}>;
|
|
3426
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3427
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3428
|
+
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">]>>;
|
|
3429
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3430
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3431
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3432
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3433
|
+
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">]>>;
|
|
3434
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3435
|
+
}>;
|
|
3436
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3437
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3438
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3439
|
+
}>>;
|
|
3440
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3441
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3442
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3443
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3444
|
+
}>>;
|
|
3445
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3446
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3447
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3448
|
+
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">]>;
|
|
3449
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3450
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3451
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3452
|
+
}>>;
|
|
3453
|
+
}>>;
|
|
2810
3454
|
}>;
|
|
2811
3455
|
$ne: import("@feathersjs/typebox").TObject<{
|
|
2812
3456
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2875,6 +3519,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2875
3519
|
}>;
|
|
2876
3520
|
}>>;
|
|
2877
3521
|
}>;
|
|
3522
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3523
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3524
|
+
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">]>>;
|
|
3525
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3526
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3527
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3528
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3529
|
+
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">]>>;
|
|
3530
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3531
|
+
}>;
|
|
3532
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3533
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3534
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3535
|
+
}>>;
|
|
3536
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3537
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3538
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3539
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3540
|
+
}>>;
|
|
3541
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3542
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3543
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3544
|
+
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">]>;
|
|
3545
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3546
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3547
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3548
|
+
}>>;
|
|
3549
|
+
}>>;
|
|
2878
3550
|
}>;
|
|
2879
3551
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2880
3552
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2943,6 +3615,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
2943
3615
|
}>;
|
|
2944
3616
|
}>>;
|
|
2945
3617
|
}>;
|
|
3618
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3619
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3620
|
+
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">]>>;
|
|
3621
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3622
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3623
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3624
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3625
|
+
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">]>>;
|
|
3626
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3627
|
+
}>;
|
|
3628
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3629
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3630
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3631
|
+
}>>;
|
|
3632
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3633
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3634
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3635
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3636
|
+
}>>;
|
|
3637
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3638
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3639
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3640
|
+
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">]>;
|
|
3641
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3642
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3643
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3644
|
+
}>>;
|
|
3645
|
+
}>>;
|
|
2946
3646
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
2947
3647
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
2948
3648
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -3010,6 +3710,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3010
3710
|
}>;
|
|
3011
3711
|
}>>;
|
|
3012
3712
|
}>;
|
|
3713
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3714
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3715
|
+
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">]>>;
|
|
3716
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3717
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3718
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3719
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3720
|
+
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">]>>;
|
|
3721
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3722
|
+
}>;
|
|
3723
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3724
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3725
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3726
|
+
}>>;
|
|
3727
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3728
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3729
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3730
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3731
|
+
}>>;
|
|
3732
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3733
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3734
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3735
|
+
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">]>;
|
|
3736
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3737
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3738
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3739
|
+
}>>;
|
|
3740
|
+
}>>;
|
|
3013
3741
|
}>;
|
|
3014
3742
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3015
3743
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3078,6 +3806,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3078
3806
|
}>;
|
|
3079
3807
|
}>>;
|
|
3080
3808
|
}>;
|
|
3809
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3810
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3811
|
+
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">]>>;
|
|
3812
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3813
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3814
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3815
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3816
|
+
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">]>>;
|
|
3817
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3818
|
+
}>;
|
|
3819
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3820
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3821
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3822
|
+
}>>;
|
|
3823
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3824
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3825
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3826
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3827
|
+
}>>;
|
|
3828
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3829
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3830
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3831
|
+
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">]>;
|
|
3832
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3833
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3834
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3835
|
+
}>>;
|
|
3836
|
+
}>>;
|
|
3081
3837
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
3082
3838
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
3083
3839
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -3145,6 +3901,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3145
3901
|
}>;
|
|
3146
3902
|
}>>;
|
|
3147
3903
|
}>;
|
|
3904
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3905
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3906
|
+
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">]>>;
|
|
3907
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
3908
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
3909
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3910
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3911
|
+
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">]>>;
|
|
3912
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3913
|
+
}>;
|
|
3914
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3915
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
3916
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
3917
|
+
}>>;
|
|
3918
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3919
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
3920
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3921
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3922
|
+
}>>;
|
|
3923
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3924
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
3925
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3926
|
+
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">]>;
|
|
3927
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3928
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
3929
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
3930
|
+
}>>;
|
|
3931
|
+
}>>;
|
|
3148
3932
|
}>;
|
|
3149
3933
|
}>, import("@feathersjs/typebox").TObject<{
|
|
3150
3934
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -3619,6 +4403,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3619
4403
|
}>;
|
|
3620
4404
|
}>>;
|
|
3621
4405
|
}>;
|
|
4406
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4407
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4408
|
+
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">]>>;
|
|
4409
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4410
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4411
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4412
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4413
|
+
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">]>>;
|
|
4414
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4415
|
+
}>;
|
|
4416
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4417
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4418
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4419
|
+
}>>;
|
|
4420
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4421
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4422
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4423
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4424
|
+
}>>;
|
|
4425
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4426
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
4427
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4428
|
+
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">]>;
|
|
4429
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4430
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4431
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4432
|
+
}>>;
|
|
4433
|
+
}>>;
|
|
3622
4434
|
}>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
3623
4435
|
$gt: import("@feathersjs/typebox").TObject<{
|
|
3624
4436
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3687,6 +4499,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3687
4499
|
}>;
|
|
3688
4500
|
}>>;
|
|
3689
4501
|
}>;
|
|
4502
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4503
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4504
|
+
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">]>>;
|
|
4505
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4506
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4507
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4508
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4509
|
+
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">]>>;
|
|
4510
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4511
|
+
}>;
|
|
4512
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4513
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4514
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4515
|
+
}>>;
|
|
4516
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4517
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4518
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4519
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4520
|
+
}>>;
|
|
4521
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4522
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
4523
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4524
|
+
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">]>;
|
|
4525
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4526
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4527
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4528
|
+
}>>;
|
|
4529
|
+
}>>;
|
|
3690
4530
|
}>;
|
|
3691
4531
|
$gte: import("@feathersjs/typebox").TObject<{
|
|
3692
4532
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3755,6 +4595,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3755
4595
|
}>;
|
|
3756
4596
|
}>>;
|
|
3757
4597
|
}>;
|
|
4598
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4599
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4600
|
+
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">]>>;
|
|
4601
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4602
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4603
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4604
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4605
|
+
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">]>>;
|
|
4606
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4607
|
+
}>;
|
|
4608
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4609
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4610
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4611
|
+
}>>;
|
|
4612
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4613
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4614
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4615
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4616
|
+
}>>;
|
|
4617
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4618
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
4619
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4620
|
+
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">]>;
|
|
4621
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4622
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4623
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4624
|
+
}>>;
|
|
4625
|
+
}>>;
|
|
3758
4626
|
}>;
|
|
3759
4627
|
$lt: import("@feathersjs/typebox").TObject<{
|
|
3760
4628
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3823,6 +4691,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3823
4691
|
}>;
|
|
3824
4692
|
}>>;
|
|
3825
4693
|
}>;
|
|
4694
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4695
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4696
|
+
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">]>>;
|
|
4697
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4698
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4699
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4700
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4701
|
+
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">]>>;
|
|
4702
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4703
|
+
}>;
|
|
4704
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4705
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4706
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4707
|
+
}>>;
|
|
4708
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4709
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4710
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4711
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4712
|
+
}>>;
|
|
4713
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4714
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
4715
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4716
|
+
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">]>;
|
|
4717
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4718
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4719
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4720
|
+
}>>;
|
|
4721
|
+
}>>;
|
|
3826
4722
|
}>;
|
|
3827
4723
|
$lte: import("@feathersjs/typebox").TObject<{
|
|
3828
4724
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3891,6 +4787,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3891
4787
|
}>;
|
|
3892
4788
|
}>>;
|
|
3893
4789
|
}>;
|
|
4790
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4791
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4792
|
+
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">]>>;
|
|
4793
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4794
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4795
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4796
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4797
|
+
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">]>>;
|
|
4798
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4799
|
+
}>;
|
|
4800
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4801
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4802
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4803
|
+
}>>;
|
|
4804
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4805
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4806
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4807
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4808
|
+
}>>;
|
|
4809
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4810
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
4811
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4812
|
+
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">]>;
|
|
4813
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4814
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4815
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4816
|
+
}>>;
|
|
4817
|
+
}>>;
|
|
3894
4818
|
}>;
|
|
3895
4819
|
$ne: import("@feathersjs/typebox").TObject<{
|
|
3896
4820
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3959,6 +4883,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
3959
4883
|
}>;
|
|
3960
4884
|
}>>;
|
|
3961
4885
|
}>;
|
|
4886
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4887
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4888
|
+
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">]>>;
|
|
4889
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4890
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4891
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4892
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4893
|
+
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">]>>;
|
|
4894
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4895
|
+
}>;
|
|
4896
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4897
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4898
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4899
|
+
}>>;
|
|
4900
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4901
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4902
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4903
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4904
|
+
}>>;
|
|
4905
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4906
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
4907
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4908
|
+
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">]>;
|
|
4909
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4910
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
4911
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4912
|
+
}>>;
|
|
4913
|
+
}>>;
|
|
3962
4914
|
}>;
|
|
3963
4915
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3964
4916
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4027,6 +4979,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4027
4979
|
}>;
|
|
4028
4980
|
}>>;
|
|
4029
4981
|
}>;
|
|
4982
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4983
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
4984
|
+
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">]>>;
|
|
4985
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
4986
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
4987
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4988
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4989
|
+
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">]>>;
|
|
4990
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4991
|
+
}>;
|
|
4992
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4993
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
4994
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
4995
|
+
}>>;
|
|
4996
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
4997
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
4998
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
4999
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5000
|
+
}>>;
|
|
5001
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5002
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5003
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5004
|
+
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">]>;
|
|
5005
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5006
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5007
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5008
|
+
}>>;
|
|
5009
|
+
}>>;
|
|
4030
5010
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
4031
5011
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
4032
5012
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -4094,6 +5074,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4094
5074
|
}>;
|
|
4095
5075
|
}>>;
|
|
4096
5076
|
}>;
|
|
5077
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5078
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
5079
|
+
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">]>>;
|
|
5080
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
5081
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
5082
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5083
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5084
|
+
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">]>>;
|
|
5085
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5086
|
+
}>;
|
|
5087
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5088
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
5089
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
5090
|
+
}>>;
|
|
5091
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5092
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
5093
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5094
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5095
|
+
}>>;
|
|
5096
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5097
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5098
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5099
|
+
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">]>;
|
|
5100
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5101
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5102
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5103
|
+
}>>;
|
|
5104
|
+
}>>;
|
|
4097
5105
|
}>;
|
|
4098
5106
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4099
5107
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4162,6 +5170,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4162
5170
|
}>;
|
|
4163
5171
|
}>>;
|
|
4164
5172
|
}>;
|
|
5173
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5174
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
5175
|
+
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">]>>;
|
|
5176
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
5177
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
5178
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5179
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5180
|
+
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">]>>;
|
|
5181
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5182
|
+
}>;
|
|
5183
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5184
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
5185
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
5186
|
+
}>>;
|
|
5187
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5188
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
5189
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5190
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5191
|
+
}>>;
|
|
5192
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5193
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5194
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5195
|
+
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">]>;
|
|
5196
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5197
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5198
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5199
|
+
}>>;
|
|
5200
|
+
}>>;
|
|
4165
5201
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
4166
5202
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
4167
5203
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -4229,6 +5265,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4229
5265
|
}>;
|
|
4230
5266
|
}>>;
|
|
4231
5267
|
}>;
|
|
5268
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5269
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
5270
|
+
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">]>>;
|
|
5271
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
5272
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
5273
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5274
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5275
|
+
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">]>>;
|
|
5276
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5277
|
+
}>;
|
|
5278
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5279
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
5280
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
5281
|
+
}>>;
|
|
5282
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5283
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
5284
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5285
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5286
|
+
}>>;
|
|
5287
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5288
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5289
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5290
|
+
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">]>;
|
|
5291
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5292
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5293
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5294
|
+
}>>;
|
|
5295
|
+
}>>;
|
|
4232
5296
|
}>;
|
|
4233
5297
|
}>, import("@feathersjs/typebox").TObject<{
|
|
4234
5298
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -4702,6 +5766,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4702
5766
|
}>;
|
|
4703
5767
|
}>>;
|
|
4704
5768
|
}>;
|
|
5769
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5770
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
5771
|
+
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">]>>;
|
|
5772
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
5773
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
5774
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5775
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5776
|
+
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">]>>;
|
|
5777
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5778
|
+
}>;
|
|
5779
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5780
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
5781
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
5782
|
+
}>>;
|
|
5783
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5784
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
5785
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5786
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5787
|
+
}>>;
|
|
5788
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5789
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5790
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5791
|
+
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">]>;
|
|
5792
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5793
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5794
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5795
|
+
}>>;
|
|
5796
|
+
}>>;
|
|
4705
5797
|
}>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
4706
5798
|
$gt: import("@feathersjs/typebox").TObject<{
|
|
4707
5799
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4770,6 +5862,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4770
5862
|
}>;
|
|
4771
5863
|
}>>;
|
|
4772
5864
|
}>;
|
|
5865
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5866
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
5867
|
+
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">]>>;
|
|
5868
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
5869
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
5870
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5871
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5872
|
+
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">]>>;
|
|
5873
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5874
|
+
}>;
|
|
5875
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5876
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
5877
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
5878
|
+
}>>;
|
|
5879
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5880
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
5881
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5882
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5883
|
+
}>>;
|
|
5884
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5885
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5886
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5887
|
+
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">]>;
|
|
5888
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5889
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5890
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5891
|
+
}>>;
|
|
5892
|
+
}>>;
|
|
4773
5893
|
}>;
|
|
4774
5894
|
$gte: import("@feathersjs/typebox").TObject<{
|
|
4775
5895
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4838,6 +5958,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4838
5958
|
}>;
|
|
4839
5959
|
}>>;
|
|
4840
5960
|
}>;
|
|
5961
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5962
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
5963
|
+
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">]>>;
|
|
5964
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
5965
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
5966
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5967
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5968
|
+
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">]>>;
|
|
5969
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5970
|
+
}>;
|
|
5971
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5972
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
5973
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
5974
|
+
}>>;
|
|
5975
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5976
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
5977
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5978
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5979
|
+
}>>;
|
|
5980
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5981
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
5982
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
5983
|
+
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">]>;
|
|
5984
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5985
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
5986
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
5987
|
+
}>>;
|
|
5988
|
+
}>>;
|
|
4841
5989
|
}>;
|
|
4842
5990
|
$lt: import("@feathersjs/typebox").TObject<{
|
|
4843
5991
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4906,6 +6054,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4906
6054
|
}>;
|
|
4907
6055
|
}>>;
|
|
4908
6056
|
}>;
|
|
6057
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6058
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6059
|
+
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">]>>;
|
|
6060
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6061
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6062
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6063
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6064
|
+
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">]>>;
|
|
6065
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6066
|
+
}>;
|
|
6067
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6068
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6069
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6070
|
+
}>>;
|
|
6071
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6072
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6073
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6074
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6075
|
+
}>>;
|
|
6076
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6077
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6078
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6079
|
+
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">]>;
|
|
6080
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6081
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6082
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6083
|
+
}>>;
|
|
6084
|
+
}>>;
|
|
4909
6085
|
}>;
|
|
4910
6086
|
$lte: import("@feathersjs/typebox").TObject<{
|
|
4911
6087
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4974,6 +6150,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
4974
6150
|
}>;
|
|
4975
6151
|
}>>;
|
|
4976
6152
|
}>;
|
|
6153
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6154
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6155
|
+
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">]>>;
|
|
6156
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6157
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6158
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6159
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6160
|
+
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">]>>;
|
|
6161
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6162
|
+
}>;
|
|
6163
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6164
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6165
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6166
|
+
}>>;
|
|
6167
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6168
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6169
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6170
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6171
|
+
}>>;
|
|
6172
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6173
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6174
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6175
|
+
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">]>;
|
|
6176
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6177
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6178
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6179
|
+
}>>;
|
|
6180
|
+
}>>;
|
|
4977
6181
|
}>;
|
|
4978
6182
|
$ne: import("@feathersjs/typebox").TObject<{
|
|
4979
6183
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5042,6 +6246,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
5042
6246
|
}>;
|
|
5043
6247
|
}>>;
|
|
5044
6248
|
}>;
|
|
6249
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6250
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6251
|
+
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">]>>;
|
|
6252
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6253
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6254
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6255
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6256
|
+
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">]>>;
|
|
6257
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6258
|
+
}>;
|
|
6259
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6260
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6261
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6262
|
+
}>>;
|
|
6263
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6264
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6265
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6266
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6267
|
+
}>>;
|
|
6268
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6269
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6270
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6271
|
+
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">]>;
|
|
6272
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6273
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6274
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6275
|
+
}>>;
|
|
6276
|
+
}>>;
|
|
5045
6277
|
}>;
|
|
5046
6278
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5047
6279
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5110,6 +6342,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
5110
6342
|
}>;
|
|
5111
6343
|
}>>;
|
|
5112
6344
|
}>;
|
|
6345
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6346
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6347
|
+
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">]>>;
|
|
6348
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6349
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6350
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6351
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6352
|
+
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">]>>;
|
|
6353
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6354
|
+
}>;
|
|
6355
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6356
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6357
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6358
|
+
}>>;
|
|
6359
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6360
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6361
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6362
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6363
|
+
}>>;
|
|
6364
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6365
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6366
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6367
|
+
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">]>;
|
|
6368
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6369
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6370
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6371
|
+
}>>;
|
|
6372
|
+
}>>;
|
|
5113
6373
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
5114
6374
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
5115
6375
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -5177,6 +6437,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
5177
6437
|
}>;
|
|
5178
6438
|
}>>;
|
|
5179
6439
|
}>;
|
|
6440
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6441
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6442
|
+
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">]>>;
|
|
6443
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6444
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6445
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6446
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6447
|
+
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">]>>;
|
|
6448
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6449
|
+
}>;
|
|
6450
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6451
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6452
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6453
|
+
}>>;
|
|
6454
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6455
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6456
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6457
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6458
|
+
}>>;
|
|
6459
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6460
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6461
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6462
|
+
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">]>;
|
|
6463
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6464
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6465
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6466
|
+
}>>;
|
|
6467
|
+
}>>;
|
|
5180
6468
|
}>;
|
|
5181
6469
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5182
6470
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5245,6 +6533,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
5245
6533
|
}>;
|
|
5246
6534
|
}>>;
|
|
5247
6535
|
}>;
|
|
6536
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6537
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6538
|
+
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">]>>;
|
|
6539
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6540
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6541
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6542
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6543
|
+
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">]>>;
|
|
6544
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6545
|
+
}>;
|
|
6546
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6547
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6548
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6549
|
+
}>>;
|
|
6550
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6551
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6552
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6553
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6554
|
+
}>>;
|
|
6555
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6556
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6557
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6558
|
+
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">]>;
|
|
6559
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6560
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6561
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6562
|
+
}>>;
|
|
6563
|
+
}>>;
|
|
5248
6564
|
}>> | import("@feathersjs/typebox").TObject<{
|
|
5249
6565
|
interval: import("@feathersjs/typebox").TString<string>;
|
|
5250
6566
|
stoploss: import("@feathersjs/typebox").TNumber;
|
|
@@ -5312,6 +6628,34 @@ export declare const strategiesTemplatesQuerySchema: import("@feathersjs/typebox
|
|
|
5312
6628
|
}>;
|
|
5313
6629
|
}>>;
|
|
5314
6630
|
}>;
|
|
6631
|
+
dca: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6632
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
6633
|
+
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">]>>;
|
|
6634
|
+
trigger: import("@feathersjs/typebox").TObject<{
|
|
6635
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"priceDeviation">, import("@feathersjs/typebox").TLiteral<"interval">, import("@feathersjs/typebox").TLiteral<"signal">]>;
|
|
6636
|
+
stepPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6637
|
+
stepScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6638
|
+
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">]>>;
|
|
6639
|
+
count: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6640
|
+
}>;
|
|
6641
|
+
baseOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6642
|
+
type: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"fixed">, import("@feathersjs/typebox").TLiteral<"percentOfBalance">]>;
|
|
6643
|
+
value: import("@feathersjs/typebox").TNumber;
|
|
6644
|
+
}>>;
|
|
6645
|
+
safetyOrder: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6646
|
+
type: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"multipleOfBase">, import("@feathersjs/typebox").TLiteral<"fixed">]>>;
|
|
6647
|
+
value: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6648
|
+
volumeScale: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6649
|
+
}>>;
|
|
6650
|
+
maxSafetyOrders: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6651
|
+
start: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"immediate">, import("@feathersjs/typebox").TLiteral<"onSignal">]>>;
|
|
6652
|
+
exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
6653
|
+
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">]>;
|
|
6654
|
+
takeProfitPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6655
|
+
trailing: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TBoolean>;
|
|
6656
|
+
stopLossPct: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
|
|
6657
|
+
}>>;
|
|
6658
|
+
}>>;
|
|
5315
6659
|
}>;
|
|
5316
6660
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5317
6661
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -5769,6 +7113,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
5769
7113
|
};
|
|
5770
7114
|
}[];
|
|
5771
7115
|
};
|
|
7116
|
+
dca?: {
|
|
7117
|
+
enabled: boolean;
|
|
7118
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7119
|
+
trigger: {
|
|
7120
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7121
|
+
stepPct?: number | undefined;
|
|
7122
|
+
stepScale?: number | undefined;
|
|
7123
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7124
|
+
count?: number | undefined;
|
|
7125
|
+
};
|
|
7126
|
+
baseOrder?: {
|
|
7127
|
+
type: "fixed" | "percentOfBalance";
|
|
7128
|
+
value: number;
|
|
7129
|
+
} | undefined;
|
|
7130
|
+
safetyOrder?: {
|
|
7131
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7132
|
+
value?: number | undefined;
|
|
7133
|
+
volumeScale?: number | undefined;
|
|
7134
|
+
} | undefined;
|
|
7135
|
+
maxSafetyOrders?: number | undefined;
|
|
7136
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7137
|
+
exit?: {
|
|
7138
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7139
|
+
takeProfitPct?: number | undefined;
|
|
7140
|
+
trailing?: boolean | undefined;
|
|
7141
|
+
stopLossPct?: number | undefined;
|
|
7142
|
+
} | undefined;
|
|
7143
|
+
} | undefined;
|
|
5772
7144
|
};
|
|
5773
7145
|
$gte: {
|
|
5774
7146
|
interval: string;
|
|
@@ -5837,6 +7209,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
5837
7209
|
};
|
|
5838
7210
|
}[];
|
|
5839
7211
|
};
|
|
7212
|
+
dca?: {
|
|
7213
|
+
enabled: boolean;
|
|
7214
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7215
|
+
trigger: {
|
|
7216
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7217
|
+
stepPct?: number | undefined;
|
|
7218
|
+
stepScale?: number | undefined;
|
|
7219
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7220
|
+
count?: number | undefined;
|
|
7221
|
+
};
|
|
7222
|
+
baseOrder?: {
|
|
7223
|
+
type: "fixed" | "percentOfBalance";
|
|
7224
|
+
value: number;
|
|
7225
|
+
} | undefined;
|
|
7226
|
+
safetyOrder?: {
|
|
7227
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7228
|
+
value?: number | undefined;
|
|
7229
|
+
volumeScale?: number | undefined;
|
|
7230
|
+
} | undefined;
|
|
7231
|
+
maxSafetyOrders?: number | undefined;
|
|
7232
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7233
|
+
exit?: {
|
|
7234
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7235
|
+
takeProfitPct?: number | undefined;
|
|
7236
|
+
trailing?: boolean | undefined;
|
|
7237
|
+
stopLossPct?: number | undefined;
|
|
7238
|
+
} | undefined;
|
|
7239
|
+
} | undefined;
|
|
5840
7240
|
};
|
|
5841
7241
|
$lt: {
|
|
5842
7242
|
interval: string;
|
|
@@ -5905,6 +7305,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
5905
7305
|
};
|
|
5906
7306
|
}[];
|
|
5907
7307
|
};
|
|
7308
|
+
dca?: {
|
|
7309
|
+
enabled: boolean;
|
|
7310
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7311
|
+
trigger: {
|
|
7312
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7313
|
+
stepPct?: number | undefined;
|
|
7314
|
+
stepScale?: number | undefined;
|
|
7315
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7316
|
+
count?: number | undefined;
|
|
7317
|
+
};
|
|
7318
|
+
baseOrder?: {
|
|
7319
|
+
type: "fixed" | "percentOfBalance";
|
|
7320
|
+
value: number;
|
|
7321
|
+
} | undefined;
|
|
7322
|
+
safetyOrder?: {
|
|
7323
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7324
|
+
value?: number | undefined;
|
|
7325
|
+
volumeScale?: number | undefined;
|
|
7326
|
+
} | undefined;
|
|
7327
|
+
maxSafetyOrders?: number | undefined;
|
|
7328
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7329
|
+
exit?: {
|
|
7330
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7331
|
+
takeProfitPct?: number | undefined;
|
|
7332
|
+
trailing?: boolean | undefined;
|
|
7333
|
+
stopLossPct?: number | undefined;
|
|
7334
|
+
} | undefined;
|
|
7335
|
+
} | undefined;
|
|
5908
7336
|
};
|
|
5909
7337
|
$lte: {
|
|
5910
7338
|
interval: string;
|
|
@@ -5973,6 +7401,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
5973
7401
|
};
|
|
5974
7402
|
}[];
|
|
5975
7403
|
};
|
|
7404
|
+
dca?: {
|
|
7405
|
+
enabled: boolean;
|
|
7406
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7407
|
+
trigger: {
|
|
7408
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7409
|
+
stepPct?: number | undefined;
|
|
7410
|
+
stepScale?: number | undefined;
|
|
7411
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7412
|
+
count?: number | undefined;
|
|
7413
|
+
};
|
|
7414
|
+
baseOrder?: {
|
|
7415
|
+
type: "fixed" | "percentOfBalance";
|
|
7416
|
+
value: number;
|
|
7417
|
+
} | undefined;
|
|
7418
|
+
safetyOrder?: {
|
|
7419
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7420
|
+
value?: number | undefined;
|
|
7421
|
+
volumeScale?: number | undefined;
|
|
7422
|
+
} | undefined;
|
|
7423
|
+
maxSafetyOrders?: number | undefined;
|
|
7424
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7425
|
+
exit?: {
|
|
7426
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7427
|
+
takeProfitPct?: number | undefined;
|
|
7428
|
+
trailing?: boolean | undefined;
|
|
7429
|
+
stopLossPct?: number | undefined;
|
|
7430
|
+
} | undefined;
|
|
7431
|
+
} | undefined;
|
|
5976
7432
|
};
|
|
5977
7433
|
$ne: {
|
|
5978
7434
|
interval: string;
|
|
@@ -6041,6 +7497,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6041
7497
|
};
|
|
6042
7498
|
}[];
|
|
6043
7499
|
};
|
|
7500
|
+
dca?: {
|
|
7501
|
+
enabled: boolean;
|
|
7502
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7503
|
+
trigger: {
|
|
7504
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7505
|
+
stepPct?: number | undefined;
|
|
7506
|
+
stepScale?: number | undefined;
|
|
7507
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7508
|
+
count?: number | undefined;
|
|
7509
|
+
};
|
|
7510
|
+
baseOrder?: {
|
|
7511
|
+
type: "fixed" | "percentOfBalance";
|
|
7512
|
+
value: number;
|
|
7513
|
+
} | undefined;
|
|
7514
|
+
safetyOrder?: {
|
|
7515
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7516
|
+
value?: number | undefined;
|
|
7517
|
+
volumeScale?: number | undefined;
|
|
7518
|
+
} | undefined;
|
|
7519
|
+
maxSafetyOrders?: number | undefined;
|
|
7520
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7521
|
+
exit?: {
|
|
7522
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7523
|
+
takeProfitPct?: number | undefined;
|
|
7524
|
+
trailing?: boolean | undefined;
|
|
7525
|
+
stopLossPct?: number | undefined;
|
|
7526
|
+
} | undefined;
|
|
7527
|
+
} | undefined;
|
|
6044
7528
|
};
|
|
6045
7529
|
$in: {
|
|
6046
7530
|
interval: string;
|
|
@@ -6109,6 +7593,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6109
7593
|
};
|
|
6110
7594
|
}[];
|
|
6111
7595
|
};
|
|
7596
|
+
dca?: {
|
|
7597
|
+
enabled: boolean;
|
|
7598
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7599
|
+
trigger: {
|
|
7600
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7601
|
+
stepPct?: number | undefined;
|
|
7602
|
+
stepScale?: number | undefined;
|
|
7603
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7604
|
+
count?: number | undefined;
|
|
7605
|
+
};
|
|
7606
|
+
baseOrder?: {
|
|
7607
|
+
type: "fixed" | "percentOfBalance";
|
|
7608
|
+
value: number;
|
|
7609
|
+
} | undefined;
|
|
7610
|
+
safetyOrder?: {
|
|
7611
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7612
|
+
value?: number | undefined;
|
|
7613
|
+
volumeScale?: number | undefined;
|
|
7614
|
+
} | undefined;
|
|
7615
|
+
maxSafetyOrders?: number | undefined;
|
|
7616
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7617
|
+
exit?: {
|
|
7618
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7619
|
+
takeProfitPct?: number | undefined;
|
|
7620
|
+
trailing?: boolean | undefined;
|
|
7621
|
+
stopLossPct?: number | undefined;
|
|
7622
|
+
} | undefined;
|
|
7623
|
+
} | undefined;
|
|
6112
7624
|
}[] | {
|
|
6113
7625
|
interval: string;
|
|
6114
7626
|
stoploss: number;
|
|
@@ -6176,6 +7688,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6176
7688
|
};
|
|
6177
7689
|
}[];
|
|
6178
7690
|
};
|
|
7691
|
+
dca?: {
|
|
7692
|
+
enabled: boolean;
|
|
7693
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7694
|
+
trigger: {
|
|
7695
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7696
|
+
stepPct?: number | undefined;
|
|
7697
|
+
stepScale?: number | undefined;
|
|
7698
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7699
|
+
count?: number | undefined;
|
|
7700
|
+
};
|
|
7701
|
+
baseOrder?: {
|
|
7702
|
+
type: "fixed" | "percentOfBalance";
|
|
7703
|
+
value: number;
|
|
7704
|
+
} | undefined;
|
|
7705
|
+
safetyOrder?: {
|
|
7706
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7707
|
+
value?: number | undefined;
|
|
7708
|
+
volumeScale?: number | undefined;
|
|
7709
|
+
} | undefined;
|
|
7710
|
+
maxSafetyOrders?: number | undefined;
|
|
7711
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7712
|
+
exit?: {
|
|
7713
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7714
|
+
takeProfitPct?: number | undefined;
|
|
7715
|
+
trailing?: boolean | undefined;
|
|
7716
|
+
stopLossPct?: number | undefined;
|
|
7717
|
+
} | undefined;
|
|
7718
|
+
} | undefined;
|
|
6179
7719
|
};
|
|
6180
7720
|
$nin: {
|
|
6181
7721
|
interval: string;
|
|
@@ -6244,6 +7784,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6244
7784
|
};
|
|
6245
7785
|
}[];
|
|
6246
7786
|
};
|
|
7787
|
+
dca?: {
|
|
7788
|
+
enabled: boolean;
|
|
7789
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7790
|
+
trigger: {
|
|
7791
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7792
|
+
stepPct?: number | undefined;
|
|
7793
|
+
stepScale?: number | undefined;
|
|
7794
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7795
|
+
count?: number | undefined;
|
|
7796
|
+
};
|
|
7797
|
+
baseOrder?: {
|
|
7798
|
+
type: "fixed" | "percentOfBalance";
|
|
7799
|
+
value: number;
|
|
7800
|
+
} | undefined;
|
|
7801
|
+
safetyOrder?: {
|
|
7802
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7803
|
+
value?: number | undefined;
|
|
7804
|
+
volumeScale?: number | undefined;
|
|
7805
|
+
} | undefined;
|
|
7806
|
+
maxSafetyOrders?: number | undefined;
|
|
7807
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7808
|
+
exit?: {
|
|
7809
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7810
|
+
takeProfitPct?: number | undefined;
|
|
7811
|
+
trailing?: boolean | undefined;
|
|
7812
|
+
stopLossPct?: number | undefined;
|
|
7813
|
+
} | undefined;
|
|
7814
|
+
} | undefined;
|
|
6247
7815
|
}[] | {
|
|
6248
7816
|
interval: string;
|
|
6249
7817
|
stoploss: number;
|
|
@@ -6311,6 +7879,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6311
7879
|
};
|
|
6312
7880
|
}[];
|
|
6313
7881
|
};
|
|
7882
|
+
dca?: {
|
|
7883
|
+
enabled: boolean;
|
|
7884
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7885
|
+
trigger: {
|
|
7886
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7887
|
+
stepPct?: number | undefined;
|
|
7888
|
+
stepScale?: number | undefined;
|
|
7889
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7890
|
+
count?: number | undefined;
|
|
7891
|
+
};
|
|
7892
|
+
baseOrder?: {
|
|
7893
|
+
type: "fixed" | "percentOfBalance";
|
|
7894
|
+
value: number;
|
|
7895
|
+
} | undefined;
|
|
7896
|
+
safetyOrder?: {
|
|
7897
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7898
|
+
value?: number | undefined;
|
|
7899
|
+
volumeScale?: number | undefined;
|
|
7900
|
+
} | undefined;
|
|
7901
|
+
maxSafetyOrders?: number | undefined;
|
|
7902
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7903
|
+
exit?: {
|
|
7904
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
7905
|
+
takeProfitPct?: number | undefined;
|
|
7906
|
+
trailing?: boolean | undefined;
|
|
7907
|
+
stopLossPct?: number | undefined;
|
|
7908
|
+
} | undefined;
|
|
7909
|
+
} | undefined;
|
|
6314
7910
|
};
|
|
6315
7911
|
} & {}> | {
|
|
6316
7912
|
interval: string;
|
|
@@ -6379,6 +7975,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6379
7975
|
};
|
|
6380
7976
|
}[];
|
|
6381
7977
|
};
|
|
7978
|
+
dca?: {
|
|
7979
|
+
enabled: boolean;
|
|
7980
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
7981
|
+
trigger: {
|
|
7982
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
7983
|
+
stepPct?: number | undefined;
|
|
7984
|
+
stepScale?: number | undefined;
|
|
7985
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
7986
|
+
count?: number | undefined;
|
|
7987
|
+
};
|
|
7988
|
+
baseOrder?: {
|
|
7989
|
+
type: "fixed" | "percentOfBalance";
|
|
7990
|
+
value: number;
|
|
7991
|
+
} | undefined;
|
|
7992
|
+
safetyOrder?: {
|
|
7993
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
7994
|
+
value?: number | undefined;
|
|
7995
|
+
volumeScale?: number | undefined;
|
|
7996
|
+
} | undefined;
|
|
7997
|
+
maxSafetyOrders?: number | undefined;
|
|
7998
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
7999
|
+
exit?: {
|
|
8000
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8001
|
+
takeProfitPct?: number | undefined;
|
|
8002
|
+
trailing?: boolean | undefined;
|
|
8003
|
+
stopLossPct?: number | undefined;
|
|
8004
|
+
} | undefined;
|
|
8005
|
+
} | undefined;
|
|
6382
8006
|
} | undefined;
|
|
6383
8007
|
} | {
|
|
6384
8008
|
$or: {
|
|
@@ -6814,6 +8438,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6814
8438
|
};
|
|
6815
8439
|
}[];
|
|
6816
8440
|
};
|
|
8441
|
+
dca?: {
|
|
8442
|
+
enabled: boolean;
|
|
8443
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8444
|
+
trigger: {
|
|
8445
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8446
|
+
stepPct?: number | undefined;
|
|
8447
|
+
stepScale?: number | undefined;
|
|
8448
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8449
|
+
count?: number | undefined;
|
|
8450
|
+
};
|
|
8451
|
+
baseOrder?: {
|
|
8452
|
+
type: "fixed" | "percentOfBalance";
|
|
8453
|
+
value: number;
|
|
8454
|
+
} | undefined;
|
|
8455
|
+
safetyOrder?: {
|
|
8456
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8457
|
+
value?: number | undefined;
|
|
8458
|
+
volumeScale?: number | undefined;
|
|
8459
|
+
} | undefined;
|
|
8460
|
+
maxSafetyOrders?: number | undefined;
|
|
8461
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8462
|
+
exit?: {
|
|
8463
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8464
|
+
takeProfitPct?: number | undefined;
|
|
8465
|
+
trailing?: boolean | undefined;
|
|
8466
|
+
stopLossPct?: number | undefined;
|
|
8467
|
+
} | undefined;
|
|
8468
|
+
} | undefined;
|
|
6817
8469
|
};
|
|
6818
8470
|
$gte: {
|
|
6819
8471
|
interval: string;
|
|
@@ -6882,6 +8534,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6882
8534
|
};
|
|
6883
8535
|
}[];
|
|
6884
8536
|
};
|
|
8537
|
+
dca?: {
|
|
8538
|
+
enabled: boolean;
|
|
8539
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8540
|
+
trigger: {
|
|
8541
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8542
|
+
stepPct?: number | undefined;
|
|
8543
|
+
stepScale?: number | undefined;
|
|
8544
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8545
|
+
count?: number | undefined;
|
|
8546
|
+
};
|
|
8547
|
+
baseOrder?: {
|
|
8548
|
+
type: "fixed" | "percentOfBalance";
|
|
8549
|
+
value: number;
|
|
8550
|
+
} | undefined;
|
|
8551
|
+
safetyOrder?: {
|
|
8552
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8553
|
+
value?: number | undefined;
|
|
8554
|
+
volumeScale?: number | undefined;
|
|
8555
|
+
} | undefined;
|
|
8556
|
+
maxSafetyOrders?: number | undefined;
|
|
8557
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8558
|
+
exit?: {
|
|
8559
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8560
|
+
takeProfitPct?: number | undefined;
|
|
8561
|
+
trailing?: boolean | undefined;
|
|
8562
|
+
stopLossPct?: number | undefined;
|
|
8563
|
+
} | undefined;
|
|
8564
|
+
} | undefined;
|
|
6885
8565
|
};
|
|
6886
8566
|
$lt: {
|
|
6887
8567
|
interval: string;
|
|
@@ -6950,6 +8630,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
6950
8630
|
};
|
|
6951
8631
|
}[];
|
|
6952
8632
|
};
|
|
8633
|
+
dca?: {
|
|
8634
|
+
enabled: boolean;
|
|
8635
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8636
|
+
trigger: {
|
|
8637
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8638
|
+
stepPct?: number | undefined;
|
|
8639
|
+
stepScale?: number | undefined;
|
|
8640
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8641
|
+
count?: number | undefined;
|
|
8642
|
+
};
|
|
8643
|
+
baseOrder?: {
|
|
8644
|
+
type: "fixed" | "percentOfBalance";
|
|
8645
|
+
value: number;
|
|
8646
|
+
} | undefined;
|
|
8647
|
+
safetyOrder?: {
|
|
8648
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8649
|
+
value?: number | undefined;
|
|
8650
|
+
volumeScale?: number | undefined;
|
|
8651
|
+
} | undefined;
|
|
8652
|
+
maxSafetyOrders?: number | undefined;
|
|
8653
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8654
|
+
exit?: {
|
|
8655
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8656
|
+
takeProfitPct?: number | undefined;
|
|
8657
|
+
trailing?: boolean | undefined;
|
|
8658
|
+
stopLossPct?: number | undefined;
|
|
8659
|
+
} | undefined;
|
|
8660
|
+
} | undefined;
|
|
6953
8661
|
};
|
|
6954
8662
|
$lte: {
|
|
6955
8663
|
interval: string;
|
|
@@ -7018,6 +8726,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7018
8726
|
};
|
|
7019
8727
|
}[];
|
|
7020
8728
|
};
|
|
8729
|
+
dca?: {
|
|
8730
|
+
enabled: boolean;
|
|
8731
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8732
|
+
trigger: {
|
|
8733
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8734
|
+
stepPct?: number | undefined;
|
|
8735
|
+
stepScale?: number | undefined;
|
|
8736
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8737
|
+
count?: number | undefined;
|
|
8738
|
+
};
|
|
8739
|
+
baseOrder?: {
|
|
8740
|
+
type: "fixed" | "percentOfBalance";
|
|
8741
|
+
value: number;
|
|
8742
|
+
} | undefined;
|
|
8743
|
+
safetyOrder?: {
|
|
8744
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8745
|
+
value?: number | undefined;
|
|
8746
|
+
volumeScale?: number | undefined;
|
|
8747
|
+
} | undefined;
|
|
8748
|
+
maxSafetyOrders?: number | undefined;
|
|
8749
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8750
|
+
exit?: {
|
|
8751
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8752
|
+
takeProfitPct?: number | undefined;
|
|
8753
|
+
trailing?: boolean | undefined;
|
|
8754
|
+
stopLossPct?: number | undefined;
|
|
8755
|
+
} | undefined;
|
|
8756
|
+
} | undefined;
|
|
7021
8757
|
};
|
|
7022
8758
|
$ne: {
|
|
7023
8759
|
interval: string;
|
|
@@ -7086,6 +8822,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7086
8822
|
};
|
|
7087
8823
|
}[];
|
|
7088
8824
|
};
|
|
8825
|
+
dca?: {
|
|
8826
|
+
enabled: boolean;
|
|
8827
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8828
|
+
trigger: {
|
|
8829
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8830
|
+
stepPct?: number | undefined;
|
|
8831
|
+
stepScale?: number | undefined;
|
|
8832
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8833
|
+
count?: number | undefined;
|
|
8834
|
+
};
|
|
8835
|
+
baseOrder?: {
|
|
8836
|
+
type: "fixed" | "percentOfBalance";
|
|
8837
|
+
value: number;
|
|
8838
|
+
} | undefined;
|
|
8839
|
+
safetyOrder?: {
|
|
8840
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8841
|
+
value?: number | undefined;
|
|
8842
|
+
volumeScale?: number | undefined;
|
|
8843
|
+
} | undefined;
|
|
8844
|
+
maxSafetyOrders?: number | undefined;
|
|
8845
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8846
|
+
exit?: {
|
|
8847
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8848
|
+
takeProfitPct?: number | undefined;
|
|
8849
|
+
trailing?: boolean | undefined;
|
|
8850
|
+
stopLossPct?: number | undefined;
|
|
8851
|
+
} | undefined;
|
|
8852
|
+
} | undefined;
|
|
7089
8853
|
};
|
|
7090
8854
|
$in: {
|
|
7091
8855
|
interval: string;
|
|
@@ -7154,6 +8918,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7154
8918
|
};
|
|
7155
8919
|
}[];
|
|
7156
8920
|
};
|
|
8921
|
+
dca?: {
|
|
8922
|
+
enabled: boolean;
|
|
8923
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
8924
|
+
trigger: {
|
|
8925
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
8926
|
+
stepPct?: number | undefined;
|
|
8927
|
+
stepScale?: number | undefined;
|
|
8928
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
8929
|
+
count?: number | undefined;
|
|
8930
|
+
};
|
|
8931
|
+
baseOrder?: {
|
|
8932
|
+
type: "fixed" | "percentOfBalance";
|
|
8933
|
+
value: number;
|
|
8934
|
+
} | undefined;
|
|
8935
|
+
safetyOrder?: {
|
|
8936
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
8937
|
+
value?: number | undefined;
|
|
8938
|
+
volumeScale?: number | undefined;
|
|
8939
|
+
} | undefined;
|
|
8940
|
+
maxSafetyOrders?: number | undefined;
|
|
8941
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
8942
|
+
exit?: {
|
|
8943
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
8944
|
+
takeProfitPct?: number | undefined;
|
|
8945
|
+
trailing?: boolean | undefined;
|
|
8946
|
+
stopLossPct?: number | undefined;
|
|
8947
|
+
} | undefined;
|
|
8948
|
+
} | undefined;
|
|
7157
8949
|
}[] | {
|
|
7158
8950
|
interval: string;
|
|
7159
8951
|
stoploss: number;
|
|
@@ -7221,6 +9013,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7221
9013
|
};
|
|
7222
9014
|
}[];
|
|
7223
9015
|
};
|
|
9016
|
+
dca?: {
|
|
9017
|
+
enabled: boolean;
|
|
9018
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9019
|
+
trigger: {
|
|
9020
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9021
|
+
stepPct?: number | undefined;
|
|
9022
|
+
stepScale?: number | undefined;
|
|
9023
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9024
|
+
count?: number | undefined;
|
|
9025
|
+
};
|
|
9026
|
+
baseOrder?: {
|
|
9027
|
+
type: "fixed" | "percentOfBalance";
|
|
9028
|
+
value: number;
|
|
9029
|
+
} | undefined;
|
|
9030
|
+
safetyOrder?: {
|
|
9031
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9032
|
+
value?: number | undefined;
|
|
9033
|
+
volumeScale?: number | undefined;
|
|
9034
|
+
} | undefined;
|
|
9035
|
+
maxSafetyOrders?: number | undefined;
|
|
9036
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9037
|
+
exit?: {
|
|
9038
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9039
|
+
takeProfitPct?: number | undefined;
|
|
9040
|
+
trailing?: boolean | undefined;
|
|
9041
|
+
stopLossPct?: number | undefined;
|
|
9042
|
+
} | undefined;
|
|
9043
|
+
} | undefined;
|
|
7224
9044
|
};
|
|
7225
9045
|
$nin: {
|
|
7226
9046
|
interval: string;
|
|
@@ -7289,6 +9109,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7289
9109
|
};
|
|
7290
9110
|
}[];
|
|
7291
9111
|
};
|
|
9112
|
+
dca?: {
|
|
9113
|
+
enabled: boolean;
|
|
9114
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9115
|
+
trigger: {
|
|
9116
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9117
|
+
stepPct?: number | undefined;
|
|
9118
|
+
stepScale?: number | undefined;
|
|
9119
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9120
|
+
count?: number | undefined;
|
|
9121
|
+
};
|
|
9122
|
+
baseOrder?: {
|
|
9123
|
+
type: "fixed" | "percentOfBalance";
|
|
9124
|
+
value: number;
|
|
9125
|
+
} | undefined;
|
|
9126
|
+
safetyOrder?: {
|
|
9127
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9128
|
+
value?: number | undefined;
|
|
9129
|
+
volumeScale?: number | undefined;
|
|
9130
|
+
} | undefined;
|
|
9131
|
+
maxSafetyOrders?: number | undefined;
|
|
9132
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9133
|
+
exit?: {
|
|
9134
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9135
|
+
takeProfitPct?: number | undefined;
|
|
9136
|
+
trailing?: boolean | undefined;
|
|
9137
|
+
stopLossPct?: number | undefined;
|
|
9138
|
+
} | undefined;
|
|
9139
|
+
} | undefined;
|
|
7292
9140
|
}[] | {
|
|
7293
9141
|
interval: string;
|
|
7294
9142
|
stoploss: number;
|
|
@@ -7356,6 +9204,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7356
9204
|
};
|
|
7357
9205
|
}[];
|
|
7358
9206
|
};
|
|
9207
|
+
dca?: {
|
|
9208
|
+
enabled: boolean;
|
|
9209
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9210
|
+
trigger: {
|
|
9211
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9212
|
+
stepPct?: number | undefined;
|
|
9213
|
+
stepScale?: number | undefined;
|
|
9214
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9215
|
+
count?: number | undefined;
|
|
9216
|
+
};
|
|
9217
|
+
baseOrder?: {
|
|
9218
|
+
type: "fixed" | "percentOfBalance";
|
|
9219
|
+
value: number;
|
|
9220
|
+
} | undefined;
|
|
9221
|
+
safetyOrder?: {
|
|
9222
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9223
|
+
value?: number | undefined;
|
|
9224
|
+
volumeScale?: number | undefined;
|
|
9225
|
+
} | undefined;
|
|
9226
|
+
maxSafetyOrders?: number | undefined;
|
|
9227
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9228
|
+
exit?: {
|
|
9229
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9230
|
+
takeProfitPct?: number | undefined;
|
|
9231
|
+
trailing?: boolean | undefined;
|
|
9232
|
+
stopLossPct?: number | undefined;
|
|
9233
|
+
} | undefined;
|
|
9234
|
+
} | undefined;
|
|
7359
9235
|
};
|
|
7360
9236
|
} & {}> | {
|
|
7361
9237
|
interval: string;
|
|
@@ -7424,6 +9300,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7424
9300
|
};
|
|
7425
9301
|
}[];
|
|
7426
9302
|
};
|
|
9303
|
+
dca?: {
|
|
9304
|
+
enabled: boolean;
|
|
9305
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9306
|
+
trigger: {
|
|
9307
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9308
|
+
stepPct?: number | undefined;
|
|
9309
|
+
stepScale?: number | undefined;
|
|
9310
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9311
|
+
count?: number | undefined;
|
|
9312
|
+
};
|
|
9313
|
+
baseOrder?: {
|
|
9314
|
+
type: "fixed" | "percentOfBalance";
|
|
9315
|
+
value: number;
|
|
9316
|
+
} | undefined;
|
|
9317
|
+
safetyOrder?: {
|
|
9318
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9319
|
+
value?: number | undefined;
|
|
9320
|
+
volumeScale?: number | undefined;
|
|
9321
|
+
} | undefined;
|
|
9322
|
+
maxSafetyOrders?: number | undefined;
|
|
9323
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9324
|
+
exit?: {
|
|
9325
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9326
|
+
takeProfitPct?: number | undefined;
|
|
9327
|
+
trailing?: boolean | undefined;
|
|
9328
|
+
stopLossPct?: number | undefined;
|
|
9329
|
+
} | undefined;
|
|
9330
|
+
} | undefined;
|
|
7427
9331
|
} | undefined;
|
|
7428
9332
|
}[];
|
|
7429
9333
|
})[];
|
|
@@ -7860,6 +9764,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7860
9764
|
};
|
|
7861
9765
|
}[];
|
|
7862
9766
|
};
|
|
9767
|
+
dca?: {
|
|
9768
|
+
enabled: boolean;
|
|
9769
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9770
|
+
trigger: {
|
|
9771
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9772
|
+
stepPct?: number | undefined;
|
|
9773
|
+
stepScale?: number | undefined;
|
|
9774
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9775
|
+
count?: number | undefined;
|
|
9776
|
+
};
|
|
9777
|
+
baseOrder?: {
|
|
9778
|
+
type: "fixed" | "percentOfBalance";
|
|
9779
|
+
value: number;
|
|
9780
|
+
} | undefined;
|
|
9781
|
+
safetyOrder?: {
|
|
9782
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9783
|
+
value?: number | undefined;
|
|
9784
|
+
volumeScale?: number | undefined;
|
|
9785
|
+
} | undefined;
|
|
9786
|
+
maxSafetyOrders?: number | undefined;
|
|
9787
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9788
|
+
exit?: {
|
|
9789
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9790
|
+
takeProfitPct?: number | undefined;
|
|
9791
|
+
trailing?: boolean | undefined;
|
|
9792
|
+
stopLossPct?: number | undefined;
|
|
9793
|
+
} | undefined;
|
|
9794
|
+
} | undefined;
|
|
7863
9795
|
};
|
|
7864
9796
|
$gte: {
|
|
7865
9797
|
interval: string;
|
|
@@ -7928,6 +9860,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7928
9860
|
};
|
|
7929
9861
|
}[];
|
|
7930
9862
|
};
|
|
9863
|
+
dca?: {
|
|
9864
|
+
enabled: boolean;
|
|
9865
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9866
|
+
trigger: {
|
|
9867
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9868
|
+
stepPct?: number | undefined;
|
|
9869
|
+
stepScale?: number | undefined;
|
|
9870
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9871
|
+
count?: number | undefined;
|
|
9872
|
+
};
|
|
9873
|
+
baseOrder?: {
|
|
9874
|
+
type: "fixed" | "percentOfBalance";
|
|
9875
|
+
value: number;
|
|
9876
|
+
} | undefined;
|
|
9877
|
+
safetyOrder?: {
|
|
9878
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9879
|
+
value?: number | undefined;
|
|
9880
|
+
volumeScale?: number | undefined;
|
|
9881
|
+
} | undefined;
|
|
9882
|
+
maxSafetyOrders?: number | undefined;
|
|
9883
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9884
|
+
exit?: {
|
|
9885
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9886
|
+
takeProfitPct?: number | undefined;
|
|
9887
|
+
trailing?: boolean | undefined;
|
|
9888
|
+
stopLossPct?: number | undefined;
|
|
9889
|
+
} | undefined;
|
|
9890
|
+
} | undefined;
|
|
7931
9891
|
};
|
|
7932
9892
|
$lt: {
|
|
7933
9893
|
interval: string;
|
|
@@ -7996,6 +9956,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
7996
9956
|
};
|
|
7997
9957
|
}[];
|
|
7998
9958
|
};
|
|
9959
|
+
dca?: {
|
|
9960
|
+
enabled: boolean;
|
|
9961
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
9962
|
+
trigger: {
|
|
9963
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
9964
|
+
stepPct?: number | undefined;
|
|
9965
|
+
stepScale?: number | undefined;
|
|
9966
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
9967
|
+
count?: number | undefined;
|
|
9968
|
+
};
|
|
9969
|
+
baseOrder?: {
|
|
9970
|
+
type: "fixed" | "percentOfBalance";
|
|
9971
|
+
value: number;
|
|
9972
|
+
} | undefined;
|
|
9973
|
+
safetyOrder?: {
|
|
9974
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
9975
|
+
value?: number | undefined;
|
|
9976
|
+
volumeScale?: number | undefined;
|
|
9977
|
+
} | undefined;
|
|
9978
|
+
maxSafetyOrders?: number | undefined;
|
|
9979
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
9980
|
+
exit?: {
|
|
9981
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
9982
|
+
takeProfitPct?: number | undefined;
|
|
9983
|
+
trailing?: boolean | undefined;
|
|
9984
|
+
stopLossPct?: number | undefined;
|
|
9985
|
+
} | undefined;
|
|
9986
|
+
} | undefined;
|
|
7999
9987
|
};
|
|
8000
9988
|
$lte: {
|
|
8001
9989
|
interval: string;
|
|
@@ -8064,6 +10052,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8064
10052
|
};
|
|
8065
10053
|
}[];
|
|
8066
10054
|
};
|
|
10055
|
+
dca?: {
|
|
10056
|
+
enabled: boolean;
|
|
10057
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10058
|
+
trigger: {
|
|
10059
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10060
|
+
stepPct?: number | undefined;
|
|
10061
|
+
stepScale?: number | undefined;
|
|
10062
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10063
|
+
count?: number | undefined;
|
|
10064
|
+
};
|
|
10065
|
+
baseOrder?: {
|
|
10066
|
+
type: "fixed" | "percentOfBalance";
|
|
10067
|
+
value: number;
|
|
10068
|
+
} | undefined;
|
|
10069
|
+
safetyOrder?: {
|
|
10070
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10071
|
+
value?: number | undefined;
|
|
10072
|
+
volumeScale?: number | undefined;
|
|
10073
|
+
} | undefined;
|
|
10074
|
+
maxSafetyOrders?: number | undefined;
|
|
10075
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10076
|
+
exit?: {
|
|
10077
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10078
|
+
takeProfitPct?: number | undefined;
|
|
10079
|
+
trailing?: boolean | undefined;
|
|
10080
|
+
stopLossPct?: number | undefined;
|
|
10081
|
+
} | undefined;
|
|
10082
|
+
} | undefined;
|
|
8067
10083
|
};
|
|
8068
10084
|
$ne: {
|
|
8069
10085
|
interval: string;
|
|
@@ -8132,6 +10148,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8132
10148
|
};
|
|
8133
10149
|
}[];
|
|
8134
10150
|
};
|
|
10151
|
+
dca?: {
|
|
10152
|
+
enabled: boolean;
|
|
10153
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10154
|
+
trigger: {
|
|
10155
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10156
|
+
stepPct?: number | undefined;
|
|
10157
|
+
stepScale?: number | undefined;
|
|
10158
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10159
|
+
count?: number | undefined;
|
|
10160
|
+
};
|
|
10161
|
+
baseOrder?: {
|
|
10162
|
+
type: "fixed" | "percentOfBalance";
|
|
10163
|
+
value: number;
|
|
10164
|
+
} | undefined;
|
|
10165
|
+
safetyOrder?: {
|
|
10166
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10167
|
+
value?: number | undefined;
|
|
10168
|
+
volumeScale?: number | undefined;
|
|
10169
|
+
} | undefined;
|
|
10170
|
+
maxSafetyOrders?: number | undefined;
|
|
10171
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10172
|
+
exit?: {
|
|
10173
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10174
|
+
takeProfitPct?: number | undefined;
|
|
10175
|
+
trailing?: boolean | undefined;
|
|
10176
|
+
stopLossPct?: number | undefined;
|
|
10177
|
+
} | undefined;
|
|
10178
|
+
} | undefined;
|
|
8135
10179
|
};
|
|
8136
10180
|
$in: {
|
|
8137
10181
|
interval: string;
|
|
@@ -8200,6 +10244,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8200
10244
|
};
|
|
8201
10245
|
}[];
|
|
8202
10246
|
};
|
|
10247
|
+
dca?: {
|
|
10248
|
+
enabled: boolean;
|
|
10249
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10250
|
+
trigger: {
|
|
10251
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10252
|
+
stepPct?: number | undefined;
|
|
10253
|
+
stepScale?: number | undefined;
|
|
10254
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10255
|
+
count?: number | undefined;
|
|
10256
|
+
};
|
|
10257
|
+
baseOrder?: {
|
|
10258
|
+
type: "fixed" | "percentOfBalance";
|
|
10259
|
+
value: number;
|
|
10260
|
+
} | undefined;
|
|
10261
|
+
safetyOrder?: {
|
|
10262
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10263
|
+
value?: number | undefined;
|
|
10264
|
+
volumeScale?: number | undefined;
|
|
10265
|
+
} | undefined;
|
|
10266
|
+
maxSafetyOrders?: number | undefined;
|
|
10267
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10268
|
+
exit?: {
|
|
10269
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10270
|
+
takeProfitPct?: number | undefined;
|
|
10271
|
+
trailing?: boolean | undefined;
|
|
10272
|
+
stopLossPct?: number | undefined;
|
|
10273
|
+
} | undefined;
|
|
10274
|
+
} | undefined;
|
|
8203
10275
|
}[] | {
|
|
8204
10276
|
interval: string;
|
|
8205
10277
|
stoploss: number;
|
|
@@ -8267,6 +10339,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8267
10339
|
};
|
|
8268
10340
|
}[];
|
|
8269
10341
|
};
|
|
10342
|
+
dca?: {
|
|
10343
|
+
enabled: boolean;
|
|
10344
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10345
|
+
trigger: {
|
|
10346
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10347
|
+
stepPct?: number | undefined;
|
|
10348
|
+
stepScale?: number | undefined;
|
|
10349
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10350
|
+
count?: number | undefined;
|
|
10351
|
+
};
|
|
10352
|
+
baseOrder?: {
|
|
10353
|
+
type: "fixed" | "percentOfBalance";
|
|
10354
|
+
value: number;
|
|
10355
|
+
} | undefined;
|
|
10356
|
+
safetyOrder?: {
|
|
10357
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10358
|
+
value?: number | undefined;
|
|
10359
|
+
volumeScale?: number | undefined;
|
|
10360
|
+
} | undefined;
|
|
10361
|
+
maxSafetyOrders?: number | undefined;
|
|
10362
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10363
|
+
exit?: {
|
|
10364
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10365
|
+
takeProfitPct?: number | undefined;
|
|
10366
|
+
trailing?: boolean | undefined;
|
|
10367
|
+
stopLossPct?: number | undefined;
|
|
10368
|
+
} | undefined;
|
|
10369
|
+
} | undefined;
|
|
8270
10370
|
};
|
|
8271
10371
|
$nin: {
|
|
8272
10372
|
interval: string;
|
|
@@ -8335,6 +10435,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8335
10435
|
};
|
|
8336
10436
|
}[];
|
|
8337
10437
|
};
|
|
10438
|
+
dca?: {
|
|
10439
|
+
enabled: boolean;
|
|
10440
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10441
|
+
trigger: {
|
|
10442
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10443
|
+
stepPct?: number | undefined;
|
|
10444
|
+
stepScale?: number | undefined;
|
|
10445
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10446
|
+
count?: number | undefined;
|
|
10447
|
+
};
|
|
10448
|
+
baseOrder?: {
|
|
10449
|
+
type: "fixed" | "percentOfBalance";
|
|
10450
|
+
value: number;
|
|
10451
|
+
} | undefined;
|
|
10452
|
+
safetyOrder?: {
|
|
10453
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10454
|
+
value?: number | undefined;
|
|
10455
|
+
volumeScale?: number | undefined;
|
|
10456
|
+
} | undefined;
|
|
10457
|
+
maxSafetyOrders?: number | undefined;
|
|
10458
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10459
|
+
exit?: {
|
|
10460
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10461
|
+
takeProfitPct?: number | undefined;
|
|
10462
|
+
trailing?: boolean | undefined;
|
|
10463
|
+
stopLossPct?: number | undefined;
|
|
10464
|
+
} | undefined;
|
|
10465
|
+
} | undefined;
|
|
8338
10466
|
}[] | {
|
|
8339
10467
|
interval: string;
|
|
8340
10468
|
stoploss: number;
|
|
@@ -8402,6 +10530,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8402
10530
|
};
|
|
8403
10531
|
}[];
|
|
8404
10532
|
};
|
|
10533
|
+
dca?: {
|
|
10534
|
+
enabled: boolean;
|
|
10535
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10536
|
+
trigger: {
|
|
10537
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10538
|
+
stepPct?: number | undefined;
|
|
10539
|
+
stepScale?: number | undefined;
|
|
10540
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10541
|
+
count?: number | undefined;
|
|
10542
|
+
};
|
|
10543
|
+
baseOrder?: {
|
|
10544
|
+
type: "fixed" | "percentOfBalance";
|
|
10545
|
+
value: number;
|
|
10546
|
+
} | undefined;
|
|
10547
|
+
safetyOrder?: {
|
|
10548
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10549
|
+
value?: number | undefined;
|
|
10550
|
+
volumeScale?: number | undefined;
|
|
10551
|
+
} | undefined;
|
|
10552
|
+
maxSafetyOrders?: number | undefined;
|
|
10553
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10554
|
+
exit?: {
|
|
10555
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10556
|
+
takeProfitPct?: number | undefined;
|
|
10557
|
+
trailing?: boolean | undefined;
|
|
10558
|
+
stopLossPct?: number | undefined;
|
|
10559
|
+
} | undefined;
|
|
10560
|
+
} | undefined;
|
|
8405
10561
|
};
|
|
8406
10562
|
} & {}> | {
|
|
8407
10563
|
interval: string;
|
|
@@ -8470,6 +10626,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8470
10626
|
};
|
|
8471
10627
|
}[];
|
|
8472
10628
|
};
|
|
10629
|
+
dca?: {
|
|
10630
|
+
enabled: boolean;
|
|
10631
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
10632
|
+
trigger: {
|
|
10633
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
10634
|
+
stepPct?: number | undefined;
|
|
10635
|
+
stepScale?: number | undefined;
|
|
10636
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
10637
|
+
count?: number | undefined;
|
|
10638
|
+
};
|
|
10639
|
+
baseOrder?: {
|
|
10640
|
+
type: "fixed" | "percentOfBalance";
|
|
10641
|
+
value: number;
|
|
10642
|
+
} | undefined;
|
|
10643
|
+
safetyOrder?: {
|
|
10644
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
10645
|
+
value?: number | undefined;
|
|
10646
|
+
volumeScale?: number | undefined;
|
|
10647
|
+
} | undefined;
|
|
10648
|
+
maxSafetyOrders?: number | undefined;
|
|
10649
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
10650
|
+
exit?: {
|
|
10651
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
10652
|
+
takeProfitPct?: number | undefined;
|
|
10653
|
+
trailing?: boolean | undefined;
|
|
10654
|
+
stopLossPct?: number | undefined;
|
|
10655
|
+
} | undefined;
|
|
10656
|
+
} | undefined;
|
|
8473
10657
|
} | undefined;
|
|
8474
10658
|
}[];
|
|
8475
10659
|
}> & {
|
|
@@ -8905,6 +11089,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8905
11089
|
};
|
|
8906
11090
|
}[];
|
|
8907
11091
|
};
|
|
11092
|
+
dca?: {
|
|
11093
|
+
enabled: boolean;
|
|
11094
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11095
|
+
trigger: {
|
|
11096
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11097
|
+
stepPct?: number | undefined;
|
|
11098
|
+
stepScale?: number | undefined;
|
|
11099
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11100
|
+
count?: number | undefined;
|
|
11101
|
+
};
|
|
11102
|
+
baseOrder?: {
|
|
11103
|
+
type: "fixed" | "percentOfBalance";
|
|
11104
|
+
value: number;
|
|
11105
|
+
} | undefined;
|
|
11106
|
+
safetyOrder?: {
|
|
11107
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11108
|
+
value?: number | undefined;
|
|
11109
|
+
volumeScale?: number | undefined;
|
|
11110
|
+
} | undefined;
|
|
11111
|
+
maxSafetyOrders?: number | undefined;
|
|
11112
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11113
|
+
exit?: {
|
|
11114
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11115
|
+
takeProfitPct?: number | undefined;
|
|
11116
|
+
trailing?: boolean | undefined;
|
|
11117
|
+
stopLossPct?: number | undefined;
|
|
11118
|
+
} | undefined;
|
|
11119
|
+
} | undefined;
|
|
8908
11120
|
};
|
|
8909
11121
|
$gte: {
|
|
8910
11122
|
interval: string;
|
|
@@ -8973,6 +11185,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
8973
11185
|
};
|
|
8974
11186
|
}[];
|
|
8975
11187
|
};
|
|
11188
|
+
dca?: {
|
|
11189
|
+
enabled: boolean;
|
|
11190
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11191
|
+
trigger: {
|
|
11192
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11193
|
+
stepPct?: number | undefined;
|
|
11194
|
+
stepScale?: number | undefined;
|
|
11195
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11196
|
+
count?: number | undefined;
|
|
11197
|
+
};
|
|
11198
|
+
baseOrder?: {
|
|
11199
|
+
type: "fixed" | "percentOfBalance";
|
|
11200
|
+
value: number;
|
|
11201
|
+
} | undefined;
|
|
11202
|
+
safetyOrder?: {
|
|
11203
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11204
|
+
value?: number | undefined;
|
|
11205
|
+
volumeScale?: number | undefined;
|
|
11206
|
+
} | undefined;
|
|
11207
|
+
maxSafetyOrders?: number | undefined;
|
|
11208
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11209
|
+
exit?: {
|
|
11210
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11211
|
+
takeProfitPct?: number | undefined;
|
|
11212
|
+
trailing?: boolean | undefined;
|
|
11213
|
+
stopLossPct?: number | undefined;
|
|
11214
|
+
} | undefined;
|
|
11215
|
+
} | undefined;
|
|
8976
11216
|
};
|
|
8977
11217
|
$lt: {
|
|
8978
11218
|
interval: string;
|
|
@@ -9041,6 +11281,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9041
11281
|
};
|
|
9042
11282
|
}[];
|
|
9043
11283
|
};
|
|
11284
|
+
dca?: {
|
|
11285
|
+
enabled: boolean;
|
|
11286
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11287
|
+
trigger: {
|
|
11288
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11289
|
+
stepPct?: number | undefined;
|
|
11290
|
+
stepScale?: number | undefined;
|
|
11291
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11292
|
+
count?: number | undefined;
|
|
11293
|
+
};
|
|
11294
|
+
baseOrder?: {
|
|
11295
|
+
type: "fixed" | "percentOfBalance";
|
|
11296
|
+
value: number;
|
|
11297
|
+
} | undefined;
|
|
11298
|
+
safetyOrder?: {
|
|
11299
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11300
|
+
value?: number | undefined;
|
|
11301
|
+
volumeScale?: number | undefined;
|
|
11302
|
+
} | undefined;
|
|
11303
|
+
maxSafetyOrders?: number | undefined;
|
|
11304
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11305
|
+
exit?: {
|
|
11306
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11307
|
+
takeProfitPct?: number | undefined;
|
|
11308
|
+
trailing?: boolean | undefined;
|
|
11309
|
+
stopLossPct?: number | undefined;
|
|
11310
|
+
} | undefined;
|
|
11311
|
+
} | undefined;
|
|
9044
11312
|
};
|
|
9045
11313
|
$lte: {
|
|
9046
11314
|
interval: string;
|
|
@@ -9109,6 +11377,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9109
11377
|
};
|
|
9110
11378
|
}[];
|
|
9111
11379
|
};
|
|
11380
|
+
dca?: {
|
|
11381
|
+
enabled: boolean;
|
|
11382
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11383
|
+
trigger: {
|
|
11384
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11385
|
+
stepPct?: number | undefined;
|
|
11386
|
+
stepScale?: number | undefined;
|
|
11387
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11388
|
+
count?: number | undefined;
|
|
11389
|
+
};
|
|
11390
|
+
baseOrder?: {
|
|
11391
|
+
type: "fixed" | "percentOfBalance";
|
|
11392
|
+
value: number;
|
|
11393
|
+
} | undefined;
|
|
11394
|
+
safetyOrder?: {
|
|
11395
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11396
|
+
value?: number | undefined;
|
|
11397
|
+
volumeScale?: number | undefined;
|
|
11398
|
+
} | undefined;
|
|
11399
|
+
maxSafetyOrders?: number | undefined;
|
|
11400
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11401
|
+
exit?: {
|
|
11402
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11403
|
+
takeProfitPct?: number | undefined;
|
|
11404
|
+
trailing?: boolean | undefined;
|
|
11405
|
+
stopLossPct?: number | undefined;
|
|
11406
|
+
} | undefined;
|
|
11407
|
+
} | undefined;
|
|
9112
11408
|
};
|
|
9113
11409
|
$ne: {
|
|
9114
11410
|
interval: string;
|
|
@@ -9177,6 +11473,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9177
11473
|
};
|
|
9178
11474
|
}[];
|
|
9179
11475
|
};
|
|
11476
|
+
dca?: {
|
|
11477
|
+
enabled: boolean;
|
|
11478
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11479
|
+
trigger: {
|
|
11480
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11481
|
+
stepPct?: number | undefined;
|
|
11482
|
+
stepScale?: number | undefined;
|
|
11483
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11484
|
+
count?: number | undefined;
|
|
11485
|
+
};
|
|
11486
|
+
baseOrder?: {
|
|
11487
|
+
type: "fixed" | "percentOfBalance";
|
|
11488
|
+
value: number;
|
|
11489
|
+
} | undefined;
|
|
11490
|
+
safetyOrder?: {
|
|
11491
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11492
|
+
value?: number | undefined;
|
|
11493
|
+
volumeScale?: number | undefined;
|
|
11494
|
+
} | undefined;
|
|
11495
|
+
maxSafetyOrders?: number | undefined;
|
|
11496
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11497
|
+
exit?: {
|
|
11498
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11499
|
+
takeProfitPct?: number | undefined;
|
|
11500
|
+
trailing?: boolean | undefined;
|
|
11501
|
+
stopLossPct?: number | undefined;
|
|
11502
|
+
} | undefined;
|
|
11503
|
+
} | undefined;
|
|
9180
11504
|
};
|
|
9181
11505
|
$in: {
|
|
9182
11506
|
interval: string;
|
|
@@ -9245,6 +11569,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9245
11569
|
};
|
|
9246
11570
|
}[];
|
|
9247
11571
|
};
|
|
11572
|
+
dca?: {
|
|
11573
|
+
enabled: boolean;
|
|
11574
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11575
|
+
trigger: {
|
|
11576
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11577
|
+
stepPct?: number | undefined;
|
|
11578
|
+
stepScale?: number | undefined;
|
|
11579
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11580
|
+
count?: number | undefined;
|
|
11581
|
+
};
|
|
11582
|
+
baseOrder?: {
|
|
11583
|
+
type: "fixed" | "percentOfBalance";
|
|
11584
|
+
value: number;
|
|
11585
|
+
} | undefined;
|
|
11586
|
+
safetyOrder?: {
|
|
11587
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11588
|
+
value?: number | undefined;
|
|
11589
|
+
volumeScale?: number | undefined;
|
|
11590
|
+
} | undefined;
|
|
11591
|
+
maxSafetyOrders?: number | undefined;
|
|
11592
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11593
|
+
exit?: {
|
|
11594
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11595
|
+
takeProfitPct?: number | undefined;
|
|
11596
|
+
trailing?: boolean | undefined;
|
|
11597
|
+
stopLossPct?: number | undefined;
|
|
11598
|
+
} | undefined;
|
|
11599
|
+
} | undefined;
|
|
9248
11600
|
}[] | {
|
|
9249
11601
|
interval: string;
|
|
9250
11602
|
stoploss: number;
|
|
@@ -9312,6 +11664,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9312
11664
|
};
|
|
9313
11665
|
}[];
|
|
9314
11666
|
};
|
|
11667
|
+
dca?: {
|
|
11668
|
+
enabled: boolean;
|
|
11669
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11670
|
+
trigger: {
|
|
11671
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11672
|
+
stepPct?: number | undefined;
|
|
11673
|
+
stepScale?: number | undefined;
|
|
11674
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11675
|
+
count?: number | undefined;
|
|
11676
|
+
};
|
|
11677
|
+
baseOrder?: {
|
|
11678
|
+
type: "fixed" | "percentOfBalance";
|
|
11679
|
+
value: number;
|
|
11680
|
+
} | undefined;
|
|
11681
|
+
safetyOrder?: {
|
|
11682
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11683
|
+
value?: number | undefined;
|
|
11684
|
+
volumeScale?: number | undefined;
|
|
11685
|
+
} | undefined;
|
|
11686
|
+
maxSafetyOrders?: number | undefined;
|
|
11687
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11688
|
+
exit?: {
|
|
11689
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11690
|
+
takeProfitPct?: number | undefined;
|
|
11691
|
+
trailing?: boolean | undefined;
|
|
11692
|
+
stopLossPct?: number | undefined;
|
|
11693
|
+
} | undefined;
|
|
11694
|
+
} | undefined;
|
|
9315
11695
|
};
|
|
9316
11696
|
$nin: {
|
|
9317
11697
|
interval: string;
|
|
@@ -9380,6 +11760,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9380
11760
|
};
|
|
9381
11761
|
}[];
|
|
9382
11762
|
};
|
|
11763
|
+
dca?: {
|
|
11764
|
+
enabled: boolean;
|
|
11765
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11766
|
+
trigger: {
|
|
11767
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11768
|
+
stepPct?: number | undefined;
|
|
11769
|
+
stepScale?: number | undefined;
|
|
11770
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11771
|
+
count?: number | undefined;
|
|
11772
|
+
};
|
|
11773
|
+
baseOrder?: {
|
|
11774
|
+
type: "fixed" | "percentOfBalance";
|
|
11775
|
+
value: number;
|
|
11776
|
+
} | undefined;
|
|
11777
|
+
safetyOrder?: {
|
|
11778
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11779
|
+
value?: number | undefined;
|
|
11780
|
+
volumeScale?: number | undefined;
|
|
11781
|
+
} | undefined;
|
|
11782
|
+
maxSafetyOrders?: number | undefined;
|
|
11783
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11784
|
+
exit?: {
|
|
11785
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11786
|
+
takeProfitPct?: number | undefined;
|
|
11787
|
+
trailing?: boolean | undefined;
|
|
11788
|
+
stopLossPct?: number | undefined;
|
|
11789
|
+
} | undefined;
|
|
11790
|
+
} | undefined;
|
|
9383
11791
|
}[] | {
|
|
9384
11792
|
interval: string;
|
|
9385
11793
|
stoploss: number;
|
|
@@ -9447,6 +11855,34 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9447
11855
|
};
|
|
9448
11856
|
}[];
|
|
9449
11857
|
};
|
|
11858
|
+
dca?: {
|
|
11859
|
+
enabled: boolean;
|
|
11860
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11861
|
+
trigger: {
|
|
11862
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11863
|
+
stepPct?: number | undefined;
|
|
11864
|
+
stepScale?: number | undefined;
|
|
11865
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11866
|
+
count?: number | undefined;
|
|
11867
|
+
};
|
|
11868
|
+
baseOrder?: {
|
|
11869
|
+
type: "fixed" | "percentOfBalance";
|
|
11870
|
+
value: number;
|
|
11871
|
+
} | undefined;
|
|
11872
|
+
safetyOrder?: {
|
|
11873
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11874
|
+
value?: number | undefined;
|
|
11875
|
+
volumeScale?: number | undefined;
|
|
11876
|
+
} | undefined;
|
|
11877
|
+
maxSafetyOrders?: number | undefined;
|
|
11878
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11879
|
+
exit?: {
|
|
11880
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11881
|
+
takeProfitPct?: number | undefined;
|
|
11882
|
+
trailing?: boolean | undefined;
|
|
11883
|
+
stopLossPct?: number | undefined;
|
|
11884
|
+
} | undefined;
|
|
11885
|
+
} | undefined;
|
|
9450
11886
|
};
|
|
9451
11887
|
} & {}> | {
|
|
9452
11888
|
interval: string;
|
|
@@ -9515,5 +11951,33 @@ export declare const strategiesTemplatesQueryResolver: import("@feathersjs/schem
|
|
|
9515
11951
|
};
|
|
9516
11952
|
}[];
|
|
9517
11953
|
};
|
|
11954
|
+
dca?: {
|
|
11955
|
+
enabled: boolean;
|
|
11956
|
+
reference?: "ath" | "averageEntry" | "baseEntry" | "lastEntry" | undefined;
|
|
11957
|
+
trigger: {
|
|
11958
|
+
type: "interval" | "priceDeviation" | "signal";
|
|
11959
|
+
stepPct?: number | undefined;
|
|
11960
|
+
stepScale?: number | undefined;
|
|
11961
|
+
every?: "day" | "hour" | "month" | "week" | undefined;
|
|
11962
|
+
count?: number | undefined;
|
|
11963
|
+
};
|
|
11964
|
+
baseOrder?: {
|
|
11965
|
+
type: "fixed" | "percentOfBalance";
|
|
11966
|
+
value: number;
|
|
11967
|
+
} | undefined;
|
|
11968
|
+
safetyOrder?: {
|
|
11969
|
+
type?: "fixed" | "multipleOfBase" | undefined;
|
|
11970
|
+
value?: number | undefined;
|
|
11971
|
+
volumeScale?: number | undefined;
|
|
11972
|
+
} | undefined;
|
|
11973
|
+
maxSafetyOrders?: number | undefined;
|
|
11974
|
+
start?: "immediate" | "onSignal" | undefined;
|
|
11975
|
+
exit?: {
|
|
11976
|
+
mode: "newAth" | "none" | "roi" | "takeProfit";
|
|
11977
|
+
takeProfitPct?: number | undefined;
|
|
11978
|
+
trailing?: boolean | undefined;
|
|
11979
|
+
stopLossPct?: number | undefined;
|
|
11980
|
+
} | undefined;
|
|
11981
|
+
} | undefined;
|
|
9518
11982
|
} | undefined;
|
|
9519
11983
|
} & {}, HookContext<StrategiesTemplatesService<import("./templates.class").StrategiesTemplatesParams>>>;
|