@cryptorobot.ai/client 1.26.0-dev.1017 → 1.26.0-dev.1018
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.
|
@@ -85,6 +85,14 @@ export declare const snapshotSchema: import("@feathersjs/typebox").TObject<{
|
|
|
85
85
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
86
86
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
87
87
|
}>>;
|
|
88
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
89
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
90
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
91
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
92
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
93
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
94
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
95
|
+
}>>>;
|
|
88
96
|
}>>;
|
|
89
97
|
market: import("@feathersjs/typebox").TObject<{
|
|
90
98
|
regime: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bull">, import("@feathersjs/typebox").TLiteral<"bear">, import("@feathersjs/typebox").TLiteral<"sideways">, import("@feathersjs/typebox").TLiteral<"unknown">]>;
|
|
@@ -224,6 +232,14 @@ export declare const snapshotResolver: import("@feathersjs/schema").Resolver<{
|
|
|
224
232
|
relProfit: number;
|
|
225
233
|
tradeCount: number;
|
|
226
234
|
}[];
|
|
235
|
+
recentClosedTrades?: {
|
|
236
|
+
pair: string;
|
|
237
|
+
profitPct: number;
|
|
238
|
+
profitAbs: number;
|
|
239
|
+
openDate: string;
|
|
240
|
+
closeDate: string;
|
|
241
|
+
exitReason?: string | undefined;
|
|
242
|
+
}[] | undefined;
|
|
227
243
|
}[];
|
|
228
244
|
market: {
|
|
229
245
|
regime: "bear" | "bull" | "sideways" | "unknown";
|
|
@@ -361,6 +377,14 @@ export declare const snapshotExternalResolver: import("@feathersjs/schema").Reso
|
|
|
361
377
|
relProfit: number;
|
|
362
378
|
tradeCount: number;
|
|
363
379
|
}[];
|
|
380
|
+
recentClosedTrades?: {
|
|
381
|
+
pair: string;
|
|
382
|
+
profitPct: number;
|
|
383
|
+
profitAbs: number;
|
|
384
|
+
openDate: string;
|
|
385
|
+
closeDate: string;
|
|
386
|
+
exitReason?: string | undefined;
|
|
387
|
+
}[] | undefined;
|
|
364
388
|
}[];
|
|
365
389
|
market: {
|
|
366
390
|
regime: "bear" | "bull" | "sideways" | "unknown";
|
|
@@ -498,6 +522,14 @@ export declare const snapshotDataSchema: import("@feathersjs/typebox").TOmit<imp
|
|
|
498
522
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
499
523
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
500
524
|
}>>;
|
|
525
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
526
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
527
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
528
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
529
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
530
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
531
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
532
|
+
}>>>;
|
|
501
533
|
}>>;
|
|
502
534
|
market: import("@feathersjs/typebox").TObject<{
|
|
503
535
|
regime: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bull">, import("@feathersjs/typebox").TLiteral<"bear">, import("@feathersjs/typebox").TLiteral<"sideways">, import("@feathersjs/typebox").TLiteral<"unknown">]>;
|
|
@@ -637,6 +669,14 @@ export declare const snapshotDataResolver: import("@feathersjs/schema").Resolver
|
|
|
637
669
|
relProfit: number;
|
|
638
670
|
tradeCount: number;
|
|
639
671
|
}[];
|
|
672
|
+
recentClosedTrades?: {
|
|
673
|
+
pair: string;
|
|
674
|
+
profitPct: number;
|
|
675
|
+
profitAbs: number;
|
|
676
|
+
openDate: string;
|
|
677
|
+
closeDate: string;
|
|
678
|
+
exitReason?: string | undefined;
|
|
679
|
+
}[] | undefined;
|
|
640
680
|
}[];
|
|
641
681
|
market: {
|
|
642
682
|
regime: "bear" | "bull" | "sideways" | "unknown";
|
|
@@ -774,6 +814,14 @@ export declare const snapshotPatchSchema: import("@feathersjs/typebox").TPartial
|
|
|
774
814
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
775
815
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
776
816
|
}>>;
|
|
817
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
818
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
819
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
820
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
821
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
822
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
823
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
824
|
+
}>>>;
|
|
777
825
|
}>>;
|
|
778
826
|
market: import("@feathersjs/typebox").TObject<{
|
|
779
827
|
regime: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bull">, import("@feathersjs/typebox").TLiteral<"bear">, import("@feathersjs/typebox").TLiteral<"sideways">, import("@feathersjs/typebox").TLiteral<"unknown">]>;
|
|
@@ -913,6 +961,14 @@ export declare const snapshotPatchResolver: import("@feathersjs/schema").Resolve
|
|
|
913
961
|
relProfit: number;
|
|
914
962
|
tradeCount: number;
|
|
915
963
|
}[];
|
|
964
|
+
recentClosedTrades?: {
|
|
965
|
+
pair: string;
|
|
966
|
+
profitPct: number;
|
|
967
|
+
profitAbs: number;
|
|
968
|
+
openDate: string;
|
|
969
|
+
closeDate: string;
|
|
970
|
+
exitReason?: string | undefined;
|
|
971
|
+
}[] | undefined;
|
|
916
972
|
}[];
|
|
917
973
|
market: {
|
|
918
974
|
regime: "bear" | "bull" | "sideways" | "unknown";
|
|
@@ -1050,6 +1106,14 @@ export declare const snapshotQueryProperties: import("@feathersjs/typebox").TPic
|
|
|
1050
1106
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
1051
1107
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
1052
1108
|
}>>;
|
|
1109
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1110
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
1111
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
1112
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
1113
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
1114
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
1115
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1116
|
+
}>>>;
|
|
1053
1117
|
}>>;
|
|
1054
1118
|
market: import("@feathersjs/typebox").TObject<{
|
|
1055
1119
|
regime: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"bull">, import("@feathersjs/typebox").TLiteral<"bear">, import("@feathersjs/typebox").TLiteral<"sideways">, import("@feathersjs/typebox").TLiteral<"unknown">]>;
|
|
@@ -1702,6 +1766,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
1702
1766
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
1703
1767
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
1704
1768
|
}>>;
|
|
1769
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1770
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
1771
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
1772
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
1773
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
1774
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
1775
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1776
|
+
}>>>;
|
|
1705
1777
|
}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
1706
1778
|
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1707
1779
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1773,6 +1845,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
1773
1845
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
1774
1846
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
1775
1847
|
}>>;
|
|
1848
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1849
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
1850
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
1851
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
1852
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
1853
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
1854
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1855
|
+
}>>>;
|
|
1776
1856
|
}>>;
|
|
1777
1857
|
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1778
1858
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1844,6 +1924,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
1844
1924
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
1845
1925
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
1846
1926
|
}>>;
|
|
1927
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1928
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
1929
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
1930
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
1931
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
1932
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
1933
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1934
|
+
}>>>;
|
|
1847
1935
|
}>>;
|
|
1848
1936
|
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1849
1937
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1915,6 +2003,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
1915
2003
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
1916
2004
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
1917
2005
|
}>>;
|
|
2006
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2007
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2008
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2009
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2010
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2011
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2012
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2013
|
+
}>>>;
|
|
1918
2014
|
}>>;
|
|
1919
2015
|
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1920
2016
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1986,6 +2082,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
1986
2082
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
1987
2083
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
1988
2084
|
}>>;
|
|
2085
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2086
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2087
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2088
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2089
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2090
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2091
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2092
|
+
}>>>;
|
|
1989
2093
|
}>>;
|
|
1990
2094
|
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
1991
2095
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2057,6 +2161,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
2057
2161
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
2058
2162
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
2059
2163
|
}>>;
|
|
2164
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2165
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2166
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2167
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2168
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2169
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2170
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2171
|
+
}>>>;
|
|
2060
2172
|
}>>;
|
|
2061
2173
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2062
2174
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2128,6 +2240,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
2128
2240
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
2129
2241
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
2130
2242
|
}>>;
|
|
2243
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2244
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2245
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2246
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2247
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2248
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2249
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2250
|
+
}>>>;
|
|
2131
2251
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2132
2252
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
2133
2253
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2198,6 +2318,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
2198
2318
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
2199
2319
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
2200
2320
|
}>>;
|
|
2321
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2322
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2323
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2324
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2325
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2326
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2327
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2328
|
+
}>>>;
|
|
2201
2329
|
}>>;
|
|
2202
2330
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2203
2331
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2269,6 +2397,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
2269
2397
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
2270
2398
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
2271
2399
|
}>>;
|
|
2400
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2401
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2402
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2403
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2404
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2405
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2406
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2407
|
+
}>>>;
|
|
2272
2408
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2273
2409
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
2274
2410
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2339,6 +2475,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
2339
2475
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
2340
2476
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
2341
2477
|
}>>;
|
|
2478
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
2479
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
2480
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
2481
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
2482
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
2483
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
2484
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2485
|
+
}>>>;
|
|
2342
2486
|
}>>;
|
|
2343
2487
|
}>, import("@feathersjs/typebox").TObject<{
|
|
2344
2488
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -3067,6 +3211,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3067
3211
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3068
3212
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3069
3213
|
}>>;
|
|
3214
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3215
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3216
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3217
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3218
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3219
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3220
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3221
|
+
}>>>;
|
|
3070
3222
|
}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
3071
3223
|
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3072
3224
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3138,6 +3290,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3138
3290
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3139
3291
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3140
3292
|
}>>;
|
|
3293
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3294
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3295
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3296
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3297
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3298
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3299
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3300
|
+
}>>>;
|
|
3141
3301
|
}>>;
|
|
3142
3302
|
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3143
3303
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3209,6 +3369,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3209
3369
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3210
3370
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3211
3371
|
}>>;
|
|
3372
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3373
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3374
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3375
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3376
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3377
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3378
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3379
|
+
}>>>;
|
|
3212
3380
|
}>>;
|
|
3213
3381
|
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3214
3382
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3280,6 +3448,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3280
3448
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3281
3449
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3282
3450
|
}>>;
|
|
3451
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3452
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3453
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3454
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3455
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3456
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3457
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3458
|
+
}>>>;
|
|
3283
3459
|
}>>;
|
|
3284
3460
|
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3285
3461
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3351,6 +3527,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3351
3527
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3352
3528
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3353
3529
|
}>>;
|
|
3530
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3531
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3532
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3533
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3534
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3535
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3536
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3537
|
+
}>>>;
|
|
3354
3538
|
}>>;
|
|
3355
3539
|
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3356
3540
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3422,6 +3606,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3422
3606
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3423
3607
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3424
3608
|
}>>;
|
|
3609
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3610
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3611
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3612
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3613
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3614
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3615
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3616
|
+
}>>>;
|
|
3425
3617
|
}>>;
|
|
3426
3618
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3427
3619
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3493,6 +3685,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3493
3685
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3494
3686
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3495
3687
|
}>>;
|
|
3688
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3689
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3690
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3691
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3692
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3693
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3694
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3695
|
+
}>>>;
|
|
3496
3696
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3497
3697
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
3498
3698
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3563,6 +3763,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3563
3763
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3564
3764
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3565
3765
|
}>>;
|
|
3766
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3767
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3768
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3769
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3770
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3771
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3772
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3773
|
+
}>>>;
|
|
3566
3774
|
}>>;
|
|
3567
3775
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3568
3776
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3634,6 +3842,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3634
3842
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3635
3843
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3636
3844
|
}>>;
|
|
3845
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3846
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3847
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3848
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3849
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3850
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3851
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3852
|
+
}>>>;
|
|
3637
3853
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3638
3854
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
3639
3855
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3704,6 +3920,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
3704
3920
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
3705
3921
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
3706
3922
|
}>>;
|
|
3923
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
3924
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
3925
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
3926
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
3927
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
3928
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
3929
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3930
|
+
}>>>;
|
|
3707
3931
|
}>>;
|
|
3708
3932
|
}>, import("@feathersjs/typebox").TObject<{
|
|
3709
3933
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -4433,6 +4657,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4433
4657
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4434
4658
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4435
4659
|
}>>;
|
|
4660
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4661
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
4662
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
4663
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
4664
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
4665
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
4666
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4667
|
+
}>>>;
|
|
4436
4668
|
}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
4437
4669
|
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4438
4670
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4504,6 +4736,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4504
4736
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4505
4737
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4506
4738
|
}>>;
|
|
4739
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4740
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
4741
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
4742
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
4743
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
4744
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
4745
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4746
|
+
}>>>;
|
|
4507
4747
|
}>>;
|
|
4508
4748
|
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4509
4749
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4575,6 +4815,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4575
4815
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4576
4816
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4577
4817
|
}>>;
|
|
4818
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4819
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
4820
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
4821
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
4822
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
4823
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
4824
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4825
|
+
}>>>;
|
|
4578
4826
|
}>>;
|
|
4579
4827
|
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4580
4828
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4646,6 +4894,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4646
4894
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4647
4895
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4648
4896
|
}>>;
|
|
4897
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4898
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
4899
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
4900
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
4901
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
4902
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
4903
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4904
|
+
}>>>;
|
|
4649
4905
|
}>>;
|
|
4650
4906
|
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4651
4907
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4717,6 +4973,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4717
4973
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4718
4974
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4719
4975
|
}>>;
|
|
4976
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4977
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
4978
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
4979
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
4980
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
4981
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
4982
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
4983
|
+
}>>>;
|
|
4720
4984
|
}>>;
|
|
4721
4985
|
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4722
4986
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4788,6 +5052,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4788
5052
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4789
5053
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4790
5054
|
}>>;
|
|
5055
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5056
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
5057
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
5058
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
5059
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
5060
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
5061
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5062
|
+
}>>>;
|
|
4791
5063
|
}>>;
|
|
4792
5064
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4793
5065
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4859,6 +5131,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4859
5131
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4860
5132
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4861
5133
|
}>>;
|
|
5134
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5135
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
5136
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
5137
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
5138
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
5139
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
5140
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5141
|
+
}>>>;
|
|
4862
5142
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4863
5143
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
4864
5144
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -4929,6 +5209,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
4929
5209
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
4930
5210
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
4931
5211
|
}>>;
|
|
5212
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5213
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
5214
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
5215
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
5216
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
5217
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
5218
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5219
|
+
}>>>;
|
|
4932
5220
|
}>>;
|
|
4933
5221
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
4934
5222
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5000,6 +5288,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
5000
5288
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
5001
5289
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
5002
5290
|
}>>;
|
|
5291
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5292
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
5293
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
5294
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
5295
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
5296
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
5297
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5298
|
+
}>>>;
|
|
5003
5299
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5004
5300
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
5005
5301
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5070,6 +5366,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
5070
5366
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
5071
5367
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
5072
5368
|
}>>;
|
|
5369
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5370
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
5371
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
5372
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
5373
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
5374
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
5375
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
5376
|
+
}>>>;
|
|
5073
5377
|
}>>;
|
|
5074
5378
|
}>, import("@feathersjs/typebox").TObject<{
|
|
5075
5379
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -5798,6 +6102,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
5798
6102
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
5799
6103
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
5800
6104
|
}>>;
|
|
6105
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6106
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6107
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6108
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6109
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6110
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6111
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6112
|
+
}>>>;
|
|
5801
6113
|
}>>, import("@feathersjs/typebox").TPartial<import("@feathersjs/typebox").TIntersect<[import("@feathersjs/typebox").TObject<{
|
|
5802
6114
|
$gt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5803
6115
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5869,6 +6181,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
5869
6181
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
5870
6182
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
5871
6183
|
}>>;
|
|
6184
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6185
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6186
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6187
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6188
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6189
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6190
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6191
|
+
}>>>;
|
|
5872
6192
|
}>>;
|
|
5873
6193
|
$gte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5874
6194
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -5940,6 +6260,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
5940
6260
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
5941
6261
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
5942
6262
|
}>>;
|
|
6263
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6264
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6265
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6266
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6267
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6268
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6269
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6270
|
+
}>>>;
|
|
5943
6271
|
}>>;
|
|
5944
6272
|
$lt: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
5945
6273
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6011,6 +6339,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6011
6339
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6012
6340
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6013
6341
|
}>>;
|
|
6342
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6343
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6344
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6345
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6346
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6347
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6348
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6349
|
+
}>>>;
|
|
6014
6350
|
}>>;
|
|
6015
6351
|
$lte: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6016
6352
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6082,6 +6418,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6082
6418
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6083
6419
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6084
6420
|
}>>;
|
|
6421
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6422
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6423
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6424
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6425
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6426
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6427
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6428
|
+
}>>>;
|
|
6085
6429
|
}>>;
|
|
6086
6430
|
$ne: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6087
6431
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6153,6 +6497,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6153
6497
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6154
6498
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6155
6499
|
}>>;
|
|
6500
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6501
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6502
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6503
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6504
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6505
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6506
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6507
|
+
}>>>;
|
|
6156
6508
|
}>>;
|
|
6157
6509
|
$in: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6158
6510
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6224,6 +6576,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6224
6576
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6225
6577
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6226
6578
|
}>>;
|
|
6579
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6580
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6581
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6582
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6583
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6584
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6585
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6586
|
+
}>>>;
|
|
6227
6587
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6228
6588
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
6229
6589
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6294,6 +6654,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6294
6654
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6295
6655
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6296
6656
|
}>>;
|
|
6657
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6658
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6659
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6660
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6661
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6662
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6663
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6664
|
+
}>>>;
|
|
6297
6665
|
}>>;
|
|
6298
6666
|
$nin: import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6299
6667
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6365,6 +6733,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6365
6733
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6366
6734
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6367
6735
|
}>>;
|
|
6736
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6737
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6738
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6739
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6740
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6741
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6742
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6743
|
+
}>>>;
|
|
6368
6744
|
}>>> | import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6369
6745
|
traderId: import("@feathersjs/typebox").TString<string>;
|
|
6370
6746
|
traderName: import("@feathersjs/typebox").TString<string>;
|
|
@@ -6435,6 +6811,14 @@ export declare const snapshotQuerySchema: import("@feathersjs/typebox").TInterse
|
|
|
6435
6811
|
relProfit: import("@feathersjs/typebox").TNumber;
|
|
6436
6812
|
tradeCount: import("@feathersjs/typebox").TInteger;
|
|
6437
6813
|
}>>;
|
|
6814
|
+
recentClosedTrades: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
|
|
6815
|
+
pair: import("@feathersjs/typebox").TString<string>;
|
|
6816
|
+
profitPct: import("@feathersjs/typebox").TNumber;
|
|
6817
|
+
profitAbs: import("@feathersjs/typebox").TNumber;
|
|
6818
|
+
openDate: import("@feathersjs/typebox").TString<string>;
|
|
6819
|
+
closeDate: import("@feathersjs/typebox").TString<string>;
|
|
6820
|
+
exitReason: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
6821
|
+
}>>>;
|
|
6438
6822
|
}>>;
|
|
6439
6823
|
}>, import("@feathersjs/typebox").TObject<{
|
|
6440
6824
|
[key: string]: import("@feathersjs/typebox").TSchema;
|
|
@@ -7166,6 +7550,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7166
7550
|
relProfit: number;
|
|
7167
7551
|
tradeCount: number;
|
|
7168
7552
|
}[];
|
|
7553
|
+
recentClosedTrades?: {
|
|
7554
|
+
pair: string;
|
|
7555
|
+
profitPct: number;
|
|
7556
|
+
profitAbs: number;
|
|
7557
|
+
openDate: string;
|
|
7558
|
+
closeDate: string;
|
|
7559
|
+
exitReason?: string | undefined;
|
|
7560
|
+
}[] | undefined;
|
|
7169
7561
|
}[] | Partial<{
|
|
7170
7562
|
$gt: {
|
|
7171
7563
|
traderId: string;
|
|
@@ -7237,6 +7629,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7237
7629
|
relProfit: number;
|
|
7238
7630
|
tradeCount: number;
|
|
7239
7631
|
}[];
|
|
7632
|
+
recentClosedTrades?: {
|
|
7633
|
+
pair: string;
|
|
7634
|
+
profitPct: number;
|
|
7635
|
+
profitAbs: number;
|
|
7636
|
+
openDate: string;
|
|
7637
|
+
closeDate: string;
|
|
7638
|
+
exitReason?: string | undefined;
|
|
7639
|
+
}[] | undefined;
|
|
7240
7640
|
}[];
|
|
7241
7641
|
$gte: {
|
|
7242
7642
|
traderId: string;
|
|
@@ -7308,6 +7708,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7308
7708
|
relProfit: number;
|
|
7309
7709
|
tradeCount: number;
|
|
7310
7710
|
}[];
|
|
7711
|
+
recentClosedTrades?: {
|
|
7712
|
+
pair: string;
|
|
7713
|
+
profitPct: number;
|
|
7714
|
+
profitAbs: number;
|
|
7715
|
+
openDate: string;
|
|
7716
|
+
closeDate: string;
|
|
7717
|
+
exitReason?: string | undefined;
|
|
7718
|
+
}[] | undefined;
|
|
7311
7719
|
}[];
|
|
7312
7720
|
$lt: {
|
|
7313
7721
|
traderId: string;
|
|
@@ -7379,6 +7787,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7379
7787
|
relProfit: number;
|
|
7380
7788
|
tradeCount: number;
|
|
7381
7789
|
}[];
|
|
7790
|
+
recentClosedTrades?: {
|
|
7791
|
+
pair: string;
|
|
7792
|
+
profitPct: number;
|
|
7793
|
+
profitAbs: number;
|
|
7794
|
+
openDate: string;
|
|
7795
|
+
closeDate: string;
|
|
7796
|
+
exitReason?: string | undefined;
|
|
7797
|
+
}[] | undefined;
|
|
7382
7798
|
}[];
|
|
7383
7799
|
$lte: {
|
|
7384
7800
|
traderId: string;
|
|
@@ -7450,6 +7866,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7450
7866
|
relProfit: number;
|
|
7451
7867
|
tradeCount: number;
|
|
7452
7868
|
}[];
|
|
7869
|
+
recentClosedTrades?: {
|
|
7870
|
+
pair: string;
|
|
7871
|
+
profitPct: number;
|
|
7872
|
+
profitAbs: number;
|
|
7873
|
+
openDate: string;
|
|
7874
|
+
closeDate: string;
|
|
7875
|
+
exitReason?: string | undefined;
|
|
7876
|
+
}[] | undefined;
|
|
7453
7877
|
}[];
|
|
7454
7878
|
$ne: {
|
|
7455
7879
|
traderId: string;
|
|
@@ -7521,6 +7945,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7521
7945
|
relProfit: number;
|
|
7522
7946
|
tradeCount: number;
|
|
7523
7947
|
}[];
|
|
7948
|
+
recentClosedTrades?: {
|
|
7949
|
+
pair: string;
|
|
7950
|
+
profitPct: number;
|
|
7951
|
+
profitAbs: number;
|
|
7952
|
+
openDate: string;
|
|
7953
|
+
closeDate: string;
|
|
7954
|
+
exitReason?: string | undefined;
|
|
7955
|
+
}[] | undefined;
|
|
7524
7956
|
}[];
|
|
7525
7957
|
$in: {
|
|
7526
7958
|
traderId: string;
|
|
@@ -7592,6 +8024,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7592
8024
|
relProfit: number;
|
|
7593
8025
|
tradeCount: number;
|
|
7594
8026
|
}[];
|
|
8027
|
+
recentClosedTrades?: {
|
|
8028
|
+
pair: string;
|
|
8029
|
+
profitPct: number;
|
|
8030
|
+
profitAbs: number;
|
|
8031
|
+
openDate: string;
|
|
8032
|
+
closeDate: string;
|
|
8033
|
+
exitReason?: string | undefined;
|
|
8034
|
+
}[] | undefined;
|
|
7595
8035
|
}[][] | {
|
|
7596
8036
|
traderId: string;
|
|
7597
8037
|
traderName: string;
|
|
@@ -7662,6 +8102,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7662
8102
|
relProfit: number;
|
|
7663
8103
|
tradeCount: number;
|
|
7664
8104
|
}[];
|
|
8105
|
+
recentClosedTrades?: {
|
|
8106
|
+
pair: string;
|
|
8107
|
+
profitPct: number;
|
|
8108
|
+
profitAbs: number;
|
|
8109
|
+
openDate: string;
|
|
8110
|
+
closeDate: string;
|
|
8111
|
+
exitReason?: string | undefined;
|
|
8112
|
+
}[] | undefined;
|
|
7665
8113
|
}[];
|
|
7666
8114
|
$nin: {
|
|
7667
8115
|
traderId: string;
|
|
@@ -7733,6 +8181,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7733
8181
|
relProfit: number;
|
|
7734
8182
|
tradeCount: number;
|
|
7735
8183
|
}[];
|
|
8184
|
+
recentClosedTrades?: {
|
|
8185
|
+
pair: string;
|
|
8186
|
+
profitPct: number;
|
|
8187
|
+
profitAbs: number;
|
|
8188
|
+
openDate: string;
|
|
8189
|
+
closeDate: string;
|
|
8190
|
+
exitReason?: string | undefined;
|
|
8191
|
+
}[] | undefined;
|
|
7736
8192
|
}[][] | {
|
|
7737
8193
|
traderId: string;
|
|
7738
8194
|
traderName: string;
|
|
@@ -7803,6 +8259,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
7803
8259
|
relProfit: number;
|
|
7804
8260
|
tradeCount: number;
|
|
7805
8261
|
}[];
|
|
8262
|
+
recentClosedTrades?: {
|
|
8263
|
+
pair: string;
|
|
8264
|
+
profitPct: number;
|
|
8265
|
+
profitAbs: number;
|
|
8266
|
+
openDate: string;
|
|
8267
|
+
closeDate: string;
|
|
8268
|
+
exitReason?: string | undefined;
|
|
8269
|
+
}[] | undefined;
|
|
7806
8270
|
}[];
|
|
7807
8271
|
} & {}> | undefined;
|
|
7808
8272
|
triage?: Partial<{
|
|
@@ -8505,6 +8969,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8505
8969
|
relProfit: number;
|
|
8506
8970
|
tradeCount: number;
|
|
8507
8971
|
}[];
|
|
8972
|
+
recentClosedTrades?: {
|
|
8973
|
+
pair: string;
|
|
8974
|
+
profitPct: number;
|
|
8975
|
+
profitAbs: number;
|
|
8976
|
+
openDate: string;
|
|
8977
|
+
closeDate: string;
|
|
8978
|
+
exitReason?: string | undefined;
|
|
8979
|
+
}[] | undefined;
|
|
8508
8980
|
}[] | Partial<{
|
|
8509
8981
|
$gt: {
|
|
8510
8982
|
traderId: string;
|
|
@@ -8576,6 +9048,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8576
9048
|
relProfit: number;
|
|
8577
9049
|
tradeCount: number;
|
|
8578
9050
|
}[];
|
|
9051
|
+
recentClosedTrades?: {
|
|
9052
|
+
pair: string;
|
|
9053
|
+
profitPct: number;
|
|
9054
|
+
profitAbs: number;
|
|
9055
|
+
openDate: string;
|
|
9056
|
+
closeDate: string;
|
|
9057
|
+
exitReason?: string | undefined;
|
|
9058
|
+
}[] | undefined;
|
|
8579
9059
|
}[];
|
|
8580
9060
|
$gte: {
|
|
8581
9061
|
traderId: string;
|
|
@@ -8647,6 +9127,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8647
9127
|
relProfit: number;
|
|
8648
9128
|
tradeCount: number;
|
|
8649
9129
|
}[];
|
|
9130
|
+
recentClosedTrades?: {
|
|
9131
|
+
pair: string;
|
|
9132
|
+
profitPct: number;
|
|
9133
|
+
profitAbs: number;
|
|
9134
|
+
openDate: string;
|
|
9135
|
+
closeDate: string;
|
|
9136
|
+
exitReason?: string | undefined;
|
|
9137
|
+
}[] | undefined;
|
|
8650
9138
|
}[];
|
|
8651
9139
|
$lt: {
|
|
8652
9140
|
traderId: string;
|
|
@@ -8718,6 +9206,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8718
9206
|
relProfit: number;
|
|
8719
9207
|
tradeCount: number;
|
|
8720
9208
|
}[];
|
|
9209
|
+
recentClosedTrades?: {
|
|
9210
|
+
pair: string;
|
|
9211
|
+
profitPct: number;
|
|
9212
|
+
profitAbs: number;
|
|
9213
|
+
openDate: string;
|
|
9214
|
+
closeDate: string;
|
|
9215
|
+
exitReason?: string | undefined;
|
|
9216
|
+
}[] | undefined;
|
|
8721
9217
|
}[];
|
|
8722
9218
|
$lte: {
|
|
8723
9219
|
traderId: string;
|
|
@@ -8789,6 +9285,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8789
9285
|
relProfit: number;
|
|
8790
9286
|
tradeCount: number;
|
|
8791
9287
|
}[];
|
|
9288
|
+
recentClosedTrades?: {
|
|
9289
|
+
pair: string;
|
|
9290
|
+
profitPct: number;
|
|
9291
|
+
profitAbs: number;
|
|
9292
|
+
openDate: string;
|
|
9293
|
+
closeDate: string;
|
|
9294
|
+
exitReason?: string | undefined;
|
|
9295
|
+
}[] | undefined;
|
|
8792
9296
|
}[];
|
|
8793
9297
|
$ne: {
|
|
8794
9298
|
traderId: string;
|
|
@@ -8860,6 +9364,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8860
9364
|
relProfit: number;
|
|
8861
9365
|
tradeCount: number;
|
|
8862
9366
|
}[];
|
|
9367
|
+
recentClosedTrades?: {
|
|
9368
|
+
pair: string;
|
|
9369
|
+
profitPct: number;
|
|
9370
|
+
profitAbs: number;
|
|
9371
|
+
openDate: string;
|
|
9372
|
+
closeDate: string;
|
|
9373
|
+
exitReason?: string | undefined;
|
|
9374
|
+
}[] | undefined;
|
|
8863
9375
|
}[];
|
|
8864
9376
|
$in: {
|
|
8865
9377
|
traderId: string;
|
|
@@ -8931,6 +9443,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
8931
9443
|
relProfit: number;
|
|
8932
9444
|
tradeCount: number;
|
|
8933
9445
|
}[];
|
|
9446
|
+
recentClosedTrades?: {
|
|
9447
|
+
pair: string;
|
|
9448
|
+
profitPct: number;
|
|
9449
|
+
profitAbs: number;
|
|
9450
|
+
openDate: string;
|
|
9451
|
+
closeDate: string;
|
|
9452
|
+
exitReason?: string | undefined;
|
|
9453
|
+
}[] | undefined;
|
|
8934
9454
|
}[][] | {
|
|
8935
9455
|
traderId: string;
|
|
8936
9456
|
traderName: string;
|
|
@@ -9001,6 +9521,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
9001
9521
|
relProfit: number;
|
|
9002
9522
|
tradeCount: number;
|
|
9003
9523
|
}[];
|
|
9524
|
+
recentClosedTrades?: {
|
|
9525
|
+
pair: string;
|
|
9526
|
+
profitPct: number;
|
|
9527
|
+
profitAbs: number;
|
|
9528
|
+
openDate: string;
|
|
9529
|
+
closeDate: string;
|
|
9530
|
+
exitReason?: string | undefined;
|
|
9531
|
+
}[] | undefined;
|
|
9004
9532
|
}[];
|
|
9005
9533
|
$nin: {
|
|
9006
9534
|
traderId: string;
|
|
@@ -9072,6 +9600,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
9072
9600
|
relProfit: number;
|
|
9073
9601
|
tradeCount: number;
|
|
9074
9602
|
}[];
|
|
9603
|
+
recentClosedTrades?: {
|
|
9604
|
+
pair: string;
|
|
9605
|
+
profitPct: number;
|
|
9606
|
+
profitAbs: number;
|
|
9607
|
+
openDate: string;
|
|
9608
|
+
closeDate: string;
|
|
9609
|
+
exitReason?: string | undefined;
|
|
9610
|
+
}[] | undefined;
|
|
9075
9611
|
}[][] | {
|
|
9076
9612
|
traderId: string;
|
|
9077
9613
|
traderName: string;
|
|
@@ -9142,6 +9678,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
9142
9678
|
relProfit: number;
|
|
9143
9679
|
tradeCount: number;
|
|
9144
9680
|
}[];
|
|
9681
|
+
recentClosedTrades?: {
|
|
9682
|
+
pair: string;
|
|
9683
|
+
profitPct: number;
|
|
9684
|
+
profitAbs: number;
|
|
9685
|
+
openDate: string;
|
|
9686
|
+
closeDate: string;
|
|
9687
|
+
exitReason?: string | undefined;
|
|
9688
|
+
}[] | undefined;
|
|
9145
9689
|
}[];
|
|
9146
9690
|
} & {}> | undefined;
|
|
9147
9691
|
triage?: Partial<{
|
|
@@ -9845,6 +10389,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
9845
10389
|
relProfit: number;
|
|
9846
10390
|
tradeCount: number;
|
|
9847
10391
|
}[];
|
|
10392
|
+
recentClosedTrades?: {
|
|
10393
|
+
pair: string;
|
|
10394
|
+
profitPct: number;
|
|
10395
|
+
profitAbs: number;
|
|
10396
|
+
openDate: string;
|
|
10397
|
+
closeDate: string;
|
|
10398
|
+
exitReason?: string | undefined;
|
|
10399
|
+
}[] | undefined;
|
|
9848
10400
|
}[] | Partial<{
|
|
9849
10401
|
$gt: {
|
|
9850
10402
|
traderId: string;
|
|
@@ -9916,6 +10468,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
9916
10468
|
relProfit: number;
|
|
9917
10469
|
tradeCount: number;
|
|
9918
10470
|
}[];
|
|
10471
|
+
recentClosedTrades?: {
|
|
10472
|
+
pair: string;
|
|
10473
|
+
profitPct: number;
|
|
10474
|
+
profitAbs: number;
|
|
10475
|
+
openDate: string;
|
|
10476
|
+
closeDate: string;
|
|
10477
|
+
exitReason?: string | undefined;
|
|
10478
|
+
}[] | undefined;
|
|
9919
10479
|
}[];
|
|
9920
10480
|
$gte: {
|
|
9921
10481
|
traderId: string;
|
|
@@ -9987,6 +10547,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
9987
10547
|
relProfit: number;
|
|
9988
10548
|
tradeCount: number;
|
|
9989
10549
|
}[];
|
|
10550
|
+
recentClosedTrades?: {
|
|
10551
|
+
pair: string;
|
|
10552
|
+
profitPct: number;
|
|
10553
|
+
profitAbs: number;
|
|
10554
|
+
openDate: string;
|
|
10555
|
+
closeDate: string;
|
|
10556
|
+
exitReason?: string | undefined;
|
|
10557
|
+
}[] | undefined;
|
|
9990
10558
|
}[];
|
|
9991
10559
|
$lt: {
|
|
9992
10560
|
traderId: string;
|
|
@@ -10058,6 +10626,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10058
10626
|
relProfit: number;
|
|
10059
10627
|
tradeCount: number;
|
|
10060
10628
|
}[];
|
|
10629
|
+
recentClosedTrades?: {
|
|
10630
|
+
pair: string;
|
|
10631
|
+
profitPct: number;
|
|
10632
|
+
profitAbs: number;
|
|
10633
|
+
openDate: string;
|
|
10634
|
+
closeDate: string;
|
|
10635
|
+
exitReason?: string | undefined;
|
|
10636
|
+
}[] | undefined;
|
|
10061
10637
|
}[];
|
|
10062
10638
|
$lte: {
|
|
10063
10639
|
traderId: string;
|
|
@@ -10129,6 +10705,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10129
10705
|
relProfit: number;
|
|
10130
10706
|
tradeCount: number;
|
|
10131
10707
|
}[];
|
|
10708
|
+
recentClosedTrades?: {
|
|
10709
|
+
pair: string;
|
|
10710
|
+
profitPct: number;
|
|
10711
|
+
profitAbs: number;
|
|
10712
|
+
openDate: string;
|
|
10713
|
+
closeDate: string;
|
|
10714
|
+
exitReason?: string | undefined;
|
|
10715
|
+
}[] | undefined;
|
|
10132
10716
|
}[];
|
|
10133
10717
|
$ne: {
|
|
10134
10718
|
traderId: string;
|
|
@@ -10200,6 +10784,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10200
10784
|
relProfit: number;
|
|
10201
10785
|
tradeCount: number;
|
|
10202
10786
|
}[];
|
|
10787
|
+
recentClosedTrades?: {
|
|
10788
|
+
pair: string;
|
|
10789
|
+
profitPct: number;
|
|
10790
|
+
profitAbs: number;
|
|
10791
|
+
openDate: string;
|
|
10792
|
+
closeDate: string;
|
|
10793
|
+
exitReason?: string | undefined;
|
|
10794
|
+
}[] | undefined;
|
|
10203
10795
|
}[];
|
|
10204
10796
|
$in: {
|
|
10205
10797
|
traderId: string;
|
|
@@ -10271,6 +10863,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10271
10863
|
relProfit: number;
|
|
10272
10864
|
tradeCount: number;
|
|
10273
10865
|
}[];
|
|
10866
|
+
recentClosedTrades?: {
|
|
10867
|
+
pair: string;
|
|
10868
|
+
profitPct: number;
|
|
10869
|
+
profitAbs: number;
|
|
10870
|
+
openDate: string;
|
|
10871
|
+
closeDate: string;
|
|
10872
|
+
exitReason?: string | undefined;
|
|
10873
|
+
}[] | undefined;
|
|
10274
10874
|
}[][] | {
|
|
10275
10875
|
traderId: string;
|
|
10276
10876
|
traderName: string;
|
|
@@ -10341,6 +10941,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10341
10941
|
relProfit: number;
|
|
10342
10942
|
tradeCount: number;
|
|
10343
10943
|
}[];
|
|
10944
|
+
recentClosedTrades?: {
|
|
10945
|
+
pair: string;
|
|
10946
|
+
profitPct: number;
|
|
10947
|
+
profitAbs: number;
|
|
10948
|
+
openDate: string;
|
|
10949
|
+
closeDate: string;
|
|
10950
|
+
exitReason?: string | undefined;
|
|
10951
|
+
}[] | undefined;
|
|
10344
10952
|
}[];
|
|
10345
10953
|
$nin: {
|
|
10346
10954
|
traderId: string;
|
|
@@ -10412,6 +11020,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10412
11020
|
relProfit: number;
|
|
10413
11021
|
tradeCount: number;
|
|
10414
11022
|
}[];
|
|
11023
|
+
recentClosedTrades?: {
|
|
11024
|
+
pair: string;
|
|
11025
|
+
profitPct: number;
|
|
11026
|
+
profitAbs: number;
|
|
11027
|
+
openDate: string;
|
|
11028
|
+
closeDate: string;
|
|
11029
|
+
exitReason?: string | undefined;
|
|
11030
|
+
}[] | undefined;
|
|
10415
11031
|
}[][] | {
|
|
10416
11032
|
traderId: string;
|
|
10417
11033
|
traderName: string;
|
|
@@ -10482,6 +11098,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
10482
11098
|
relProfit: number;
|
|
10483
11099
|
tradeCount: number;
|
|
10484
11100
|
}[];
|
|
11101
|
+
recentClosedTrades?: {
|
|
11102
|
+
pair: string;
|
|
11103
|
+
profitPct: number;
|
|
11104
|
+
profitAbs: number;
|
|
11105
|
+
openDate: string;
|
|
11106
|
+
closeDate: string;
|
|
11107
|
+
exitReason?: string | undefined;
|
|
11108
|
+
}[] | undefined;
|
|
10485
11109
|
}[];
|
|
10486
11110
|
} & {}> | undefined;
|
|
10487
11111
|
triage?: Partial<{
|
|
@@ -11184,6 +11808,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11184
11808
|
relProfit: number;
|
|
11185
11809
|
tradeCount: number;
|
|
11186
11810
|
}[];
|
|
11811
|
+
recentClosedTrades?: {
|
|
11812
|
+
pair: string;
|
|
11813
|
+
profitPct: number;
|
|
11814
|
+
profitAbs: number;
|
|
11815
|
+
openDate: string;
|
|
11816
|
+
closeDate: string;
|
|
11817
|
+
exitReason?: string | undefined;
|
|
11818
|
+
}[] | undefined;
|
|
11187
11819
|
}[] | Partial<{
|
|
11188
11820
|
$gt: {
|
|
11189
11821
|
traderId: string;
|
|
@@ -11255,6 +11887,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11255
11887
|
relProfit: number;
|
|
11256
11888
|
tradeCount: number;
|
|
11257
11889
|
}[];
|
|
11890
|
+
recentClosedTrades?: {
|
|
11891
|
+
pair: string;
|
|
11892
|
+
profitPct: number;
|
|
11893
|
+
profitAbs: number;
|
|
11894
|
+
openDate: string;
|
|
11895
|
+
closeDate: string;
|
|
11896
|
+
exitReason?: string | undefined;
|
|
11897
|
+
}[] | undefined;
|
|
11258
11898
|
}[];
|
|
11259
11899
|
$gte: {
|
|
11260
11900
|
traderId: string;
|
|
@@ -11326,6 +11966,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11326
11966
|
relProfit: number;
|
|
11327
11967
|
tradeCount: number;
|
|
11328
11968
|
}[];
|
|
11969
|
+
recentClosedTrades?: {
|
|
11970
|
+
pair: string;
|
|
11971
|
+
profitPct: number;
|
|
11972
|
+
profitAbs: number;
|
|
11973
|
+
openDate: string;
|
|
11974
|
+
closeDate: string;
|
|
11975
|
+
exitReason?: string | undefined;
|
|
11976
|
+
}[] | undefined;
|
|
11329
11977
|
}[];
|
|
11330
11978
|
$lt: {
|
|
11331
11979
|
traderId: string;
|
|
@@ -11397,6 +12045,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11397
12045
|
relProfit: number;
|
|
11398
12046
|
tradeCount: number;
|
|
11399
12047
|
}[];
|
|
12048
|
+
recentClosedTrades?: {
|
|
12049
|
+
pair: string;
|
|
12050
|
+
profitPct: number;
|
|
12051
|
+
profitAbs: number;
|
|
12052
|
+
openDate: string;
|
|
12053
|
+
closeDate: string;
|
|
12054
|
+
exitReason?: string | undefined;
|
|
12055
|
+
}[] | undefined;
|
|
11400
12056
|
}[];
|
|
11401
12057
|
$lte: {
|
|
11402
12058
|
traderId: string;
|
|
@@ -11468,6 +12124,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11468
12124
|
relProfit: number;
|
|
11469
12125
|
tradeCount: number;
|
|
11470
12126
|
}[];
|
|
12127
|
+
recentClosedTrades?: {
|
|
12128
|
+
pair: string;
|
|
12129
|
+
profitPct: number;
|
|
12130
|
+
profitAbs: number;
|
|
12131
|
+
openDate: string;
|
|
12132
|
+
closeDate: string;
|
|
12133
|
+
exitReason?: string | undefined;
|
|
12134
|
+
}[] | undefined;
|
|
11471
12135
|
}[];
|
|
11472
12136
|
$ne: {
|
|
11473
12137
|
traderId: string;
|
|
@@ -11539,6 +12203,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11539
12203
|
relProfit: number;
|
|
11540
12204
|
tradeCount: number;
|
|
11541
12205
|
}[];
|
|
12206
|
+
recentClosedTrades?: {
|
|
12207
|
+
pair: string;
|
|
12208
|
+
profitPct: number;
|
|
12209
|
+
profitAbs: number;
|
|
12210
|
+
openDate: string;
|
|
12211
|
+
closeDate: string;
|
|
12212
|
+
exitReason?: string | undefined;
|
|
12213
|
+
}[] | undefined;
|
|
11542
12214
|
}[];
|
|
11543
12215
|
$in: {
|
|
11544
12216
|
traderId: string;
|
|
@@ -11610,6 +12282,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11610
12282
|
relProfit: number;
|
|
11611
12283
|
tradeCount: number;
|
|
11612
12284
|
}[];
|
|
12285
|
+
recentClosedTrades?: {
|
|
12286
|
+
pair: string;
|
|
12287
|
+
profitPct: number;
|
|
12288
|
+
profitAbs: number;
|
|
12289
|
+
openDate: string;
|
|
12290
|
+
closeDate: string;
|
|
12291
|
+
exitReason?: string | undefined;
|
|
12292
|
+
}[] | undefined;
|
|
11613
12293
|
}[][] | {
|
|
11614
12294
|
traderId: string;
|
|
11615
12295
|
traderName: string;
|
|
@@ -11680,6 +12360,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11680
12360
|
relProfit: number;
|
|
11681
12361
|
tradeCount: number;
|
|
11682
12362
|
}[];
|
|
12363
|
+
recentClosedTrades?: {
|
|
12364
|
+
pair: string;
|
|
12365
|
+
profitPct: number;
|
|
12366
|
+
profitAbs: number;
|
|
12367
|
+
openDate: string;
|
|
12368
|
+
closeDate: string;
|
|
12369
|
+
exitReason?: string | undefined;
|
|
12370
|
+
}[] | undefined;
|
|
11683
12371
|
}[];
|
|
11684
12372
|
$nin: {
|
|
11685
12373
|
traderId: string;
|
|
@@ -11751,6 +12439,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11751
12439
|
relProfit: number;
|
|
11752
12440
|
tradeCount: number;
|
|
11753
12441
|
}[];
|
|
12442
|
+
recentClosedTrades?: {
|
|
12443
|
+
pair: string;
|
|
12444
|
+
profitPct: number;
|
|
12445
|
+
profitAbs: number;
|
|
12446
|
+
openDate: string;
|
|
12447
|
+
closeDate: string;
|
|
12448
|
+
exitReason?: string | undefined;
|
|
12449
|
+
}[] | undefined;
|
|
11754
12450
|
}[][] | {
|
|
11755
12451
|
traderId: string;
|
|
11756
12452
|
traderName: string;
|
|
@@ -11821,6 +12517,14 @@ export declare const snapshotQueryResolver: import("@feathersjs/schema").Resolve
|
|
|
11821
12517
|
relProfit: number;
|
|
11822
12518
|
tradeCount: number;
|
|
11823
12519
|
}[];
|
|
12520
|
+
recentClosedTrades?: {
|
|
12521
|
+
pair: string;
|
|
12522
|
+
profitPct: number;
|
|
12523
|
+
profitAbs: number;
|
|
12524
|
+
openDate: string;
|
|
12525
|
+
closeDate: string;
|
|
12526
|
+
exitReason?: string | undefined;
|
|
12527
|
+
}[] | undefined;
|
|
11824
12528
|
}[];
|
|
11825
12529
|
} & {}> | undefined;
|
|
11826
12530
|
triage?: Partial<{
|