@cryptorobot.ai/client 0.0.16 → 0.0.18
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/configuration.d.ts +17 -0
- package/lib/helpers/app.helper.d.ts +4 -0
- package/lib/helpers/logging.helper.d.ts +7 -6
- package/lib/helpers/queue.helper.d.ts +5 -0
- package/lib/helpers/telegram.helper.d.ts +7 -0
- package/lib/helpers/trader.helper.d.ts +2 -0
- package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
- package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
- package/lib/hooks/init-data-folder.d.ts +2 -0
- package/lib/hooks/setup-aws-sdk.d.ts +2 -0
- package/lib/hooks/setup-cronjobs.d.ts +2 -0
- package/lib/hooks/setup-queues.d.ts +3 -0
- package/lib/hooks/setup-telegram-client.d.ts +3 -0
- package/lib/hooks/telegram-create-group.d.ts +2 -0
- package/lib/hooks/telegram-delete-group.d.ts +2 -0
- package/lib/hooks/telegram-update-group.d.ts +2 -0
- package/lib/hooks/tickers-fetch.d.ts +1 -1
- package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
- package/lib/services/exchanges/balance/balance.schema.d.ts +12 -44
- package/lib/services/exchanges/download/download.schema.d.ts +16 -48
- package/lib/services/exchanges/exchanges.schema.d.ts +12 -44
- package/lib/services/exchanges/ticker/ticker.schema.d.ts +12 -44
- package/lib/services/messages/messages.schema.d.ts +24 -8
- package/lib/services/strategies/strategies.schema.d.ts +384 -104
- package/lib/services/traders/pods/api/api.schema.d.ts +1076 -268
- package/lib/services/traders/pods/pods.schema.d.ts +736 -208
- package/lib/services/traders/traders.schema.d.ts +340 -60
- package/lib/services/users/users.schema.d.ts +24 -8
- package/lib/telegram-get-credentials.d.ts +1 -0
- package/package.json +1 -1
|
@@ -52,7 +52,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
52
52
|
traderId: import("@feathersjs/typebox").TAny;
|
|
53
53
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
54
54
|
}>;
|
|
55
|
-
|
|
55
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
56
56
|
event: import("@feathersjs/typebox").TString<string>;
|
|
57
57
|
traderId: import("@feathersjs/typebox").TAny;
|
|
58
58
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -62,7 +62,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
62
62
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
63
63
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
64
64
|
}>;
|
|
65
|
-
|
|
65
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
66
66
|
event: import("@feathersjs/typebox").TString<string>;
|
|
67
67
|
traderId: import("@feathersjs/typebox").TAny;
|
|
68
68
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -72,7 +72,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
72
72
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
73
73
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
74
74
|
}>;
|
|
75
|
-
|
|
75
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
76
76
|
event: import("@feathersjs/typebox").TString<string>;
|
|
77
77
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
78
78
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -84,7 +84,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
84
84
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
85
85
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
86
86
|
}>;
|
|
87
|
-
|
|
87
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
88
88
|
event: import("@feathersjs/typebox").TString<string>;
|
|
89
89
|
traderId: import("@feathersjs/typebox").TAny;
|
|
90
90
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -99,10 +99,10 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
99
99
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
100
100
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
101
101
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
102
|
-
|
|
102
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
103
103
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
104
104
|
}>;
|
|
105
|
-
|
|
105
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
106
106
|
event: import("@feathersjs/typebox").TString<string>;
|
|
107
107
|
traderId: import("@feathersjs/typebox").TAny;
|
|
108
108
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -112,7 +112,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
112
112
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
113
113
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
114
114
|
}>;
|
|
115
|
-
|
|
115
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
116
116
|
event: import("@feathersjs/typebox").TString<string>;
|
|
117
117
|
traderId: import("@feathersjs/typebox").TAny;
|
|
118
118
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -146,6 +146,41 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
146
146
|
username: import("@feathersjs/typebox").TString<string>;
|
|
147
147
|
password: import("@feathersjs/typebox").TString<string>;
|
|
148
148
|
}>;
|
|
149
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
150
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
151
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
152
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
153
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
154
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
155
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
156
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
157
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
158
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
159
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
160
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
161
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
162
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
163
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
164
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
165
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
166
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
167
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
168
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
169
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
170
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
171
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
172
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
173
|
+
}>;
|
|
174
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
175
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
176
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
177
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
178
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
179
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
180
|
+
}>;
|
|
181
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
182
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
183
|
+
}>>;
|
|
149
184
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
150
185
|
host: import("@feathersjs/typebox").TString<string>;
|
|
151
186
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -184,13 +219,9 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
184
219
|
left: import("@feathersjs/typebox").TString<string>;
|
|
185
220
|
right: import("@feathersjs/typebox").TString<string>;
|
|
186
221
|
}>>>;
|
|
187
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
188
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
189
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
190
|
-
}>>>;
|
|
222
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
191
223
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
192
224
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
193
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
194
225
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
195
226
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
196
227
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -313,7 +344,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
313
344
|
traderId: import("@feathersjs/typebox").TAny;
|
|
314
345
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
315
346
|
}>;
|
|
316
|
-
|
|
347
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
317
348
|
event: import("@feathersjs/typebox").TString<string>;
|
|
318
349
|
traderId: import("@feathersjs/typebox").TAny;
|
|
319
350
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -323,7 +354,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
323
354
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
324
355
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
325
356
|
}>;
|
|
326
|
-
|
|
357
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
327
358
|
event: import("@feathersjs/typebox").TString<string>;
|
|
328
359
|
traderId: import("@feathersjs/typebox").TAny;
|
|
329
360
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -333,7 +364,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
333
364
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
334
365
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
335
366
|
}>;
|
|
336
|
-
|
|
367
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
337
368
|
event: import("@feathersjs/typebox").TString<string>;
|
|
338
369
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
339
370
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -345,7 +376,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
345
376
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
346
377
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
347
378
|
}>;
|
|
348
|
-
|
|
379
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
349
380
|
event: import("@feathersjs/typebox").TString<string>;
|
|
350
381
|
traderId: import("@feathersjs/typebox").TAny;
|
|
351
382
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -360,10 +391,10 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
360
391
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
361
392
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
362
393
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
363
|
-
|
|
394
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
364
395
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
365
396
|
}>;
|
|
366
|
-
|
|
397
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
367
398
|
event: import("@feathersjs/typebox").TString<string>;
|
|
368
399
|
traderId: import("@feathersjs/typebox").TAny;
|
|
369
400
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -373,7 +404,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
373
404
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
374
405
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
375
406
|
}>;
|
|
376
|
-
|
|
407
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
377
408
|
event: import("@feathersjs/typebox").TString<string>;
|
|
378
409
|
traderId: import("@feathersjs/typebox").TAny;
|
|
379
410
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -407,6 +438,41 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
|
|
|
407
438
|
username: import("@feathersjs/typebox").TString<string>;
|
|
408
439
|
password: import("@feathersjs/typebox").TString<string>;
|
|
409
440
|
}>;
|
|
441
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
442
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
443
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
444
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
445
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
446
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
447
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
448
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
449
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
450
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
451
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
452
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
453
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
454
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
455
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
456
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
457
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
458
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
459
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
460
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
461
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
462
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
463
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
464
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
465
|
+
}>;
|
|
466
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
467
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
468
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
469
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
470
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
471
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
472
|
+
}>;
|
|
473
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
474
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
475
|
+
}>>;
|
|
410
476
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
411
477
|
host: import("@feathersjs/typebox").TString<string>;
|
|
412
478
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -443,13 +509,13 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
443
509
|
name?: any;
|
|
444
510
|
apiKey?: string | undefined;
|
|
445
511
|
secret?: string | undefined;
|
|
446
|
-
key?: string | undefined;
|
|
447
512
|
avatar?: any;
|
|
448
513
|
createdAt?: any;
|
|
449
514
|
updatedAt?: any;
|
|
450
515
|
userId?: string | {} | undefined;
|
|
451
516
|
which?: string | undefined;
|
|
452
517
|
connected?: boolean | undefined;
|
|
518
|
+
token?: string | undefined;
|
|
453
519
|
downloaded?: {
|
|
454
520
|
updatedAt: any;
|
|
455
521
|
size: string;
|
|
@@ -475,10 +541,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
475
541
|
left: string;
|
|
476
542
|
right: string;
|
|
477
543
|
}[] | undefined;
|
|
478
|
-
whitelist?:
|
|
479
|
-
left: string;
|
|
480
|
-
right: string;
|
|
481
|
-
}[] | undefined;
|
|
544
|
+
whitelist?: any[] | undefined;
|
|
482
545
|
ccxt_async_config?: any;
|
|
483
546
|
requiredCredentials?: any;
|
|
484
547
|
uid?: string | undefined;
|
|
@@ -486,23 +549,47 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
486
549
|
twofa?: string | undefined;
|
|
487
550
|
privateKey?: string | undefined;
|
|
488
551
|
walletAddress?: string | undefined;
|
|
489
|
-
token?: string | undefined;
|
|
490
552
|
__v?: any;
|
|
491
553
|
_id: string | {};
|
|
492
554
|
}>;
|
|
493
555
|
strategy: Partial<{
|
|
494
556
|
_id?: string | {} | undefined;
|
|
495
|
-
createdAt?: any;
|
|
496
|
-
updatedAt?: any;
|
|
497
|
-
'strategies/templates'?: {
|
|
498
|
-
_id?: string | {} | undefined;
|
|
499
|
-
values: any;
|
|
500
|
-
name: string;
|
|
501
|
-
createdAt: any;
|
|
502
|
-
description: string;
|
|
503
|
-
type: string;
|
|
504
|
-
} | undefined;
|
|
505
557
|
traders?: {
|
|
558
|
+
telegram?: {
|
|
559
|
+
access_hash?: string | null | undefined;
|
|
560
|
+
invite_link?: string | undefined;
|
|
561
|
+
enabled: boolean;
|
|
562
|
+
token: string;
|
|
563
|
+
chat_id: any;
|
|
564
|
+
allow_custom_messages: boolean;
|
|
565
|
+
notification_settings: {
|
|
566
|
+
status: "silent" | "on" | "off";
|
|
567
|
+
entry: "silent" | "on" | "off";
|
|
568
|
+
exit: {
|
|
569
|
+
roi: "silent" | "on" | "off";
|
|
570
|
+
emergency_exit: "silent" | "on" | "off";
|
|
571
|
+
force_exit: "silent" | "on" | "off";
|
|
572
|
+
exit_signal: "silent" | "on" | "off";
|
|
573
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
574
|
+
stop_loss: "silent" | "on" | "off";
|
|
575
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
576
|
+
custom_exit: "silent" | "on" | "off";
|
|
577
|
+
partial_exit: "silent" | "on" | "off";
|
|
578
|
+
};
|
|
579
|
+
warning: "silent" | "on" | "off";
|
|
580
|
+
startup: "silent" | "on" | "off";
|
|
581
|
+
entry_fill: "silent" | "on" | "off";
|
|
582
|
+
entry_cancel: "silent" | "on" | "off";
|
|
583
|
+
exit_cancel: "silent" | "on" | "off";
|
|
584
|
+
exit_fill: "silent" | "on" | "off";
|
|
585
|
+
protection_trigger: "silent" | "on" | "off";
|
|
586
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
587
|
+
strategy_msg: "silent" | "on" | "off";
|
|
588
|
+
show_candle: "off" | "ohlc";
|
|
589
|
+
};
|
|
590
|
+
reload: boolean;
|
|
591
|
+
balance_dust_level: number;
|
|
592
|
+
} | undefined;
|
|
506
593
|
dry_run_wallet?: number | undefined;
|
|
507
594
|
max_open_trades?: number | undefined;
|
|
508
595
|
plugins?: {
|
|
@@ -523,15 +610,15 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
523
610
|
tradable_balance_ratio?: number | undefined;
|
|
524
611
|
webhook?: {
|
|
525
612
|
url: string;
|
|
526
|
-
format: string;
|
|
527
613
|
enabled: boolean;
|
|
614
|
+
format: string;
|
|
528
615
|
webhookstatus: {
|
|
529
616
|
traderId: any;
|
|
530
617
|
event: string;
|
|
531
618
|
status: string;
|
|
532
619
|
userId: string;
|
|
533
620
|
};
|
|
534
|
-
|
|
621
|
+
webhookentry: {
|
|
535
622
|
limit: string;
|
|
536
623
|
traderId: any;
|
|
537
624
|
stake_amount: string;
|
|
@@ -541,7 +628,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
541
628
|
pair: string;
|
|
542
629
|
fiat_currency: string;
|
|
543
630
|
};
|
|
544
|
-
|
|
631
|
+
webhookentrycancel: {
|
|
545
632
|
limit: string;
|
|
546
633
|
traderId: any;
|
|
547
634
|
stake_amount: string;
|
|
@@ -551,7 +638,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
551
638
|
pair: string;
|
|
552
639
|
fiat_currency: string;
|
|
553
640
|
};
|
|
554
|
-
|
|
641
|
+
webhookentryfill: {
|
|
555
642
|
traderId: any;
|
|
556
643
|
stake_amount: string;
|
|
557
644
|
stake_currency: string;
|
|
@@ -563,7 +650,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
563
650
|
amount: string;
|
|
564
651
|
open_date: string;
|
|
565
652
|
};
|
|
566
|
-
|
|
653
|
+
webhookexit: {
|
|
567
654
|
limit: string;
|
|
568
655
|
traderId: any;
|
|
569
656
|
stake_currency: string;
|
|
@@ -578,10 +665,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
578
665
|
profit_amount: string;
|
|
579
666
|
profit_ratio: string;
|
|
580
667
|
close_date: string;
|
|
581
|
-
|
|
668
|
+
exit_reason: string;
|
|
582
669
|
order_type: string;
|
|
583
670
|
};
|
|
584
|
-
|
|
671
|
+
webhookexitcancel: {
|
|
585
672
|
limit: string;
|
|
586
673
|
traderId: any;
|
|
587
674
|
stake_currency: string;
|
|
@@ -591,7 +678,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
591
678
|
profit_amount: string;
|
|
592
679
|
profit_ratio: string;
|
|
593
680
|
};
|
|
594
|
-
|
|
681
|
+
webhookexitfill: {
|
|
595
682
|
traderId: any;
|
|
596
683
|
event: string;
|
|
597
684
|
userId: string;
|
|
@@ -650,6 +737,16 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
650
737
|
};
|
|
651
738
|
pod: string;
|
|
652
739
|
}[] | undefined;
|
|
740
|
+
createdAt?: any;
|
|
741
|
+
updatedAt?: any;
|
|
742
|
+
'strategies/templates'?: {
|
|
743
|
+
_id?: string | {} | undefined;
|
|
744
|
+
values: any;
|
|
745
|
+
name: string;
|
|
746
|
+
createdAt: any;
|
|
747
|
+
description: string;
|
|
748
|
+
type: string;
|
|
749
|
+
} | undefined;
|
|
653
750
|
stoploss?: number | undefined;
|
|
654
751
|
minimal_roi?: {
|
|
655
752
|
minutes: number;
|
|
@@ -668,10 +765,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
668
765
|
stoploss?: string | undefined;
|
|
669
766
|
entry?: "Limit" | "Market" | undefined;
|
|
670
767
|
exit?: "Limit" | "Market" | undefined;
|
|
768
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
671
769
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
672
770
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
673
771
|
forcesell?: "Limit" | "Market" | undefined;
|
|
674
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
675
772
|
stoploss_on_exchange_interval?: number | undefined;
|
|
676
773
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
677
774
|
} | undefined;
|
|
@@ -709,6 +806,41 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
709
806
|
}>;
|
|
710
807
|
pod: any;
|
|
711
808
|
trader: Partial<{
|
|
809
|
+
telegram?: {
|
|
810
|
+
access_hash?: string | null | undefined;
|
|
811
|
+
invite_link?: string | undefined;
|
|
812
|
+
enabled: boolean;
|
|
813
|
+
token: string;
|
|
814
|
+
chat_id: any;
|
|
815
|
+
allow_custom_messages: boolean;
|
|
816
|
+
notification_settings: {
|
|
817
|
+
status: "silent" | "on" | "off";
|
|
818
|
+
entry: "silent" | "on" | "off";
|
|
819
|
+
exit: {
|
|
820
|
+
roi: "silent" | "on" | "off";
|
|
821
|
+
emergency_exit: "silent" | "on" | "off";
|
|
822
|
+
force_exit: "silent" | "on" | "off";
|
|
823
|
+
exit_signal: "silent" | "on" | "off";
|
|
824
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
825
|
+
stop_loss: "silent" | "on" | "off";
|
|
826
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
827
|
+
custom_exit: "silent" | "on" | "off";
|
|
828
|
+
partial_exit: "silent" | "on" | "off";
|
|
829
|
+
};
|
|
830
|
+
warning: "silent" | "on" | "off";
|
|
831
|
+
startup: "silent" | "on" | "off";
|
|
832
|
+
entry_fill: "silent" | "on" | "off";
|
|
833
|
+
entry_cancel: "silent" | "on" | "off";
|
|
834
|
+
exit_cancel: "silent" | "on" | "off";
|
|
835
|
+
exit_fill: "silent" | "on" | "off";
|
|
836
|
+
protection_trigger: "silent" | "on" | "off";
|
|
837
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
838
|
+
strategy_msg: "silent" | "on" | "off";
|
|
839
|
+
show_candle: "off" | "ohlc";
|
|
840
|
+
};
|
|
841
|
+
reload: boolean;
|
|
842
|
+
balance_dust_level: number;
|
|
843
|
+
} | undefined;
|
|
712
844
|
dry_run_wallet?: number | undefined;
|
|
713
845
|
max_open_trades?: number | undefined;
|
|
714
846
|
plugins?: {
|
|
@@ -729,15 +861,15 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
729
861
|
tradable_balance_ratio?: number | undefined;
|
|
730
862
|
webhook?: {
|
|
731
863
|
url: string;
|
|
732
|
-
format: string;
|
|
733
864
|
enabled: boolean;
|
|
865
|
+
format: string;
|
|
734
866
|
webhookstatus: {
|
|
735
867
|
traderId: any;
|
|
736
868
|
event: string;
|
|
737
869
|
status: string;
|
|
738
870
|
userId: string;
|
|
739
871
|
};
|
|
740
|
-
|
|
872
|
+
webhookentry: {
|
|
741
873
|
limit: string;
|
|
742
874
|
traderId: any;
|
|
743
875
|
stake_amount: string;
|
|
@@ -747,7 +879,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
747
879
|
pair: string;
|
|
748
880
|
fiat_currency: string;
|
|
749
881
|
};
|
|
750
|
-
|
|
882
|
+
webhookentrycancel: {
|
|
751
883
|
limit: string;
|
|
752
884
|
traderId: any;
|
|
753
885
|
stake_amount: string;
|
|
@@ -757,7 +889,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
757
889
|
pair: string;
|
|
758
890
|
fiat_currency: string;
|
|
759
891
|
};
|
|
760
|
-
|
|
892
|
+
webhookentryfill: {
|
|
761
893
|
traderId: any;
|
|
762
894
|
stake_amount: string;
|
|
763
895
|
stake_currency: string;
|
|
@@ -769,7 +901,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
769
901
|
amount: string;
|
|
770
902
|
open_date: string;
|
|
771
903
|
};
|
|
772
|
-
|
|
904
|
+
webhookexit: {
|
|
773
905
|
limit: string;
|
|
774
906
|
traderId: any;
|
|
775
907
|
stake_currency: string;
|
|
@@ -784,10 +916,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
784
916
|
profit_amount: string;
|
|
785
917
|
profit_ratio: string;
|
|
786
918
|
close_date: string;
|
|
787
|
-
|
|
919
|
+
exit_reason: string;
|
|
788
920
|
order_type: string;
|
|
789
921
|
};
|
|
790
|
-
|
|
922
|
+
webhookexitcancel: {
|
|
791
923
|
limit: string;
|
|
792
924
|
traderId: any;
|
|
793
925
|
stake_currency: string;
|
|
@@ -797,7 +929,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
|
|
|
797
929
|
profit_amount: string;
|
|
798
930
|
profit_ratio: string;
|
|
799
931
|
};
|
|
800
|
-
|
|
932
|
+
webhookexitfill: {
|
|
801
933
|
traderId: any;
|
|
802
934
|
event: string;
|
|
803
935
|
userId: string;
|
|
@@ -870,13 +1002,13 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
870
1002
|
name?: any;
|
|
871
1003
|
apiKey?: string | undefined;
|
|
872
1004
|
secret?: string | undefined;
|
|
873
|
-
key?: string | undefined;
|
|
874
1005
|
avatar?: any;
|
|
875
1006
|
createdAt?: any;
|
|
876
1007
|
updatedAt?: any;
|
|
877
1008
|
userId?: string | {} | undefined;
|
|
878
1009
|
which?: string | undefined;
|
|
879
1010
|
connected?: boolean | undefined;
|
|
1011
|
+
token?: string | undefined;
|
|
880
1012
|
downloaded?: {
|
|
881
1013
|
updatedAt: any;
|
|
882
1014
|
size: string;
|
|
@@ -902,10 +1034,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
902
1034
|
left: string;
|
|
903
1035
|
right: string;
|
|
904
1036
|
}[] | undefined;
|
|
905
|
-
whitelist?:
|
|
906
|
-
left: string;
|
|
907
|
-
right: string;
|
|
908
|
-
}[] | undefined;
|
|
1037
|
+
whitelist?: any[] | undefined;
|
|
909
1038
|
ccxt_async_config?: any;
|
|
910
1039
|
requiredCredentials?: any;
|
|
911
1040
|
uid?: string | undefined;
|
|
@@ -913,23 +1042,47 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
913
1042
|
twofa?: string | undefined;
|
|
914
1043
|
privateKey?: string | undefined;
|
|
915
1044
|
walletAddress?: string | undefined;
|
|
916
|
-
token?: string | undefined;
|
|
917
1045
|
__v?: any;
|
|
918
1046
|
_id: string | {};
|
|
919
1047
|
}>;
|
|
920
1048
|
strategy: Partial<{
|
|
921
1049
|
_id?: string | {} | undefined;
|
|
922
|
-
createdAt?: any;
|
|
923
|
-
updatedAt?: any;
|
|
924
|
-
'strategies/templates'?: {
|
|
925
|
-
_id?: string | {} | undefined;
|
|
926
|
-
values: any;
|
|
927
|
-
name: string;
|
|
928
|
-
createdAt: any;
|
|
929
|
-
description: string;
|
|
930
|
-
type: string;
|
|
931
|
-
} | undefined;
|
|
932
1050
|
traders?: {
|
|
1051
|
+
telegram?: {
|
|
1052
|
+
access_hash?: string | null | undefined;
|
|
1053
|
+
invite_link?: string | undefined;
|
|
1054
|
+
enabled: boolean;
|
|
1055
|
+
token: string;
|
|
1056
|
+
chat_id: any;
|
|
1057
|
+
allow_custom_messages: boolean;
|
|
1058
|
+
notification_settings: {
|
|
1059
|
+
status: "silent" | "on" | "off";
|
|
1060
|
+
entry: "silent" | "on" | "off";
|
|
1061
|
+
exit: {
|
|
1062
|
+
roi: "silent" | "on" | "off";
|
|
1063
|
+
emergency_exit: "silent" | "on" | "off";
|
|
1064
|
+
force_exit: "silent" | "on" | "off";
|
|
1065
|
+
exit_signal: "silent" | "on" | "off";
|
|
1066
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
1067
|
+
stop_loss: "silent" | "on" | "off";
|
|
1068
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1069
|
+
custom_exit: "silent" | "on" | "off";
|
|
1070
|
+
partial_exit: "silent" | "on" | "off";
|
|
1071
|
+
};
|
|
1072
|
+
warning: "silent" | "on" | "off";
|
|
1073
|
+
startup: "silent" | "on" | "off";
|
|
1074
|
+
entry_fill: "silent" | "on" | "off";
|
|
1075
|
+
entry_cancel: "silent" | "on" | "off";
|
|
1076
|
+
exit_cancel: "silent" | "on" | "off";
|
|
1077
|
+
exit_fill: "silent" | "on" | "off";
|
|
1078
|
+
protection_trigger: "silent" | "on" | "off";
|
|
1079
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
1080
|
+
strategy_msg: "silent" | "on" | "off";
|
|
1081
|
+
show_candle: "off" | "ohlc";
|
|
1082
|
+
};
|
|
1083
|
+
reload: boolean;
|
|
1084
|
+
balance_dust_level: number;
|
|
1085
|
+
} | undefined;
|
|
933
1086
|
dry_run_wallet?: number | undefined;
|
|
934
1087
|
max_open_trades?: number | undefined;
|
|
935
1088
|
plugins?: {
|
|
@@ -950,15 +1103,15 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
950
1103
|
tradable_balance_ratio?: number | undefined;
|
|
951
1104
|
webhook?: {
|
|
952
1105
|
url: string;
|
|
953
|
-
format: string;
|
|
954
1106
|
enabled: boolean;
|
|
1107
|
+
format: string;
|
|
955
1108
|
webhookstatus: {
|
|
956
1109
|
traderId: any;
|
|
957
1110
|
event: string;
|
|
958
1111
|
status: string;
|
|
959
1112
|
userId: string;
|
|
960
1113
|
};
|
|
961
|
-
|
|
1114
|
+
webhookentry: {
|
|
962
1115
|
limit: string;
|
|
963
1116
|
traderId: any;
|
|
964
1117
|
stake_amount: string;
|
|
@@ -968,7 +1121,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
968
1121
|
pair: string;
|
|
969
1122
|
fiat_currency: string;
|
|
970
1123
|
};
|
|
971
|
-
|
|
1124
|
+
webhookentrycancel: {
|
|
972
1125
|
limit: string;
|
|
973
1126
|
traderId: any;
|
|
974
1127
|
stake_amount: string;
|
|
@@ -978,7 +1131,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
978
1131
|
pair: string;
|
|
979
1132
|
fiat_currency: string;
|
|
980
1133
|
};
|
|
981
|
-
|
|
1134
|
+
webhookentryfill: {
|
|
982
1135
|
traderId: any;
|
|
983
1136
|
stake_amount: string;
|
|
984
1137
|
stake_currency: string;
|
|
@@ -990,7 +1143,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
990
1143
|
amount: string;
|
|
991
1144
|
open_date: string;
|
|
992
1145
|
};
|
|
993
|
-
|
|
1146
|
+
webhookexit: {
|
|
994
1147
|
limit: string;
|
|
995
1148
|
traderId: any;
|
|
996
1149
|
stake_currency: string;
|
|
@@ -1005,10 +1158,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1005
1158
|
profit_amount: string;
|
|
1006
1159
|
profit_ratio: string;
|
|
1007
1160
|
close_date: string;
|
|
1008
|
-
|
|
1161
|
+
exit_reason: string;
|
|
1009
1162
|
order_type: string;
|
|
1010
1163
|
};
|
|
1011
|
-
|
|
1164
|
+
webhookexitcancel: {
|
|
1012
1165
|
limit: string;
|
|
1013
1166
|
traderId: any;
|
|
1014
1167
|
stake_currency: string;
|
|
@@ -1018,7 +1171,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1018
1171
|
profit_amount: string;
|
|
1019
1172
|
profit_ratio: string;
|
|
1020
1173
|
};
|
|
1021
|
-
|
|
1174
|
+
webhookexitfill: {
|
|
1022
1175
|
traderId: any;
|
|
1023
1176
|
event: string;
|
|
1024
1177
|
userId: string;
|
|
@@ -1077,6 +1230,16 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1077
1230
|
};
|
|
1078
1231
|
pod: string;
|
|
1079
1232
|
}[] | undefined;
|
|
1233
|
+
createdAt?: any;
|
|
1234
|
+
updatedAt?: any;
|
|
1235
|
+
'strategies/templates'?: {
|
|
1236
|
+
_id?: string | {} | undefined;
|
|
1237
|
+
values: any;
|
|
1238
|
+
name: string;
|
|
1239
|
+
createdAt: any;
|
|
1240
|
+
description: string;
|
|
1241
|
+
type: string;
|
|
1242
|
+
} | undefined;
|
|
1080
1243
|
stoploss?: number | undefined;
|
|
1081
1244
|
minimal_roi?: {
|
|
1082
1245
|
minutes: number;
|
|
@@ -1095,10 +1258,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1095
1258
|
stoploss?: string | undefined;
|
|
1096
1259
|
entry?: "Limit" | "Market" | undefined;
|
|
1097
1260
|
exit?: "Limit" | "Market" | undefined;
|
|
1261
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1098
1262
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1099
1263
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1100
1264
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1101
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1102
1265
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1103
1266
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1104
1267
|
} | undefined;
|
|
@@ -1136,6 +1299,41 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1136
1299
|
}>;
|
|
1137
1300
|
pod: any;
|
|
1138
1301
|
trader: Partial<{
|
|
1302
|
+
telegram?: {
|
|
1303
|
+
access_hash?: string | null | undefined;
|
|
1304
|
+
invite_link?: string | undefined;
|
|
1305
|
+
enabled: boolean;
|
|
1306
|
+
token: string;
|
|
1307
|
+
chat_id: any;
|
|
1308
|
+
allow_custom_messages: boolean;
|
|
1309
|
+
notification_settings: {
|
|
1310
|
+
status: "silent" | "on" | "off";
|
|
1311
|
+
entry: "silent" | "on" | "off";
|
|
1312
|
+
exit: {
|
|
1313
|
+
roi: "silent" | "on" | "off";
|
|
1314
|
+
emergency_exit: "silent" | "on" | "off";
|
|
1315
|
+
force_exit: "silent" | "on" | "off";
|
|
1316
|
+
exit_signal: "silent" | "on" | "off";
|
|
1317
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
1318
|
+
stop_loss: "silent" | "on" | "off";
|
|
1319
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
1320
|
+
custom_exit: "silent" | "on" | "off";
|
|
1321
|
+
partial_exit: "silent" | "on" | "off";
|
|
1322
|
+
};
|
|
1323
|
+
warning: "silent" | "on" | "off";
|
|
1324
|
+
startup: "silent" | "on" | "off";
|
|
1325
|
+
entry_fill: "silent" | "on" | "off";
|
|
1326
|
+
entry_cancel: "silent" | "on" | "off";
|
|
1327
|
+
exit_cancel: "silent" | "on" | "off";
|
|
1328
|
+
exit_fill: "silent" | "on" | "off";
|
|
1329
|
+
protection_trigger: "silent" | "on" | "off";
|
|
1330
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
1331
|
+
strategy_msg: "silent" | "on" | "off";
|
|
1332
|
+
show_candle: "off" | "ohlc";
|
|
1333
|
+
};
|
|
1334
|
+
reload: boolean;
|
|
1335
|
+
balance_dust_level: number;
|
|
1336
|
+
} | undefined;
|
|
1139
1337
|
dry_run_wallet?: number | undefined;
|
|
1140
1338
|
max_open_trades?: number | undefined;
|
|
1141
1339
|
plugins?: {
|
|
@@ -1156,15 +1354,15 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1156
1354
|
tradable_balance_ratio?: number | undefined;
|
|
1157
1355
|
webhook?: {
|
|
1158
1356
|
url: string;
|
|
1159
|
-
format: string;
|
|
1160
1357
|
enabled: boolean;
|
|
1358
|
+
format: string;
|
|
1161
1359
|
webhookstatus: {
|
|
1162
1360
|
traderId: any;
|
|
1163
1361
|
event: string;
|
|
1164
1362
|
status: string;
|
|
1165
1363
|
userId: string;
|
|
1166
1364
|
};
|
|
1167
|
-
|
|
1365
|
+
webhookentry: {
|
|
1168
1366
|
limit: string;
|
|
1169
1367
|
traderId: any;
|
|
1170
1368
|
stake_amount: string;
|
|
@@ -1174,7 +1372,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1174
1372
|
pair: string;
|
|
1175
1373
|
fiat_currency: string;
|
|
1176
1374
|
};
|
|
1177
|
-
|
|
1375
|
+
webhookentrycancel: {
|
|
1178
1376
|
limit: string;
|
|
1179
1377
|
traderId: any;
|
|
1180
1378
|
stake_amount: string;
|
|
@@ -1184,7 +1382,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1184
1382
|
pair: string;
|
|
1185
1383
|
fiat_currency: string;
|
|
1186
1384
|
};
|
|
1187
|
-
|
|
1385
|
+
webhookentryfill: {
|
|
1188
1386
|
traderId: any;
|
|
1189
1387
|
stake_amount: string;
|
|
1190
1388
|
stake_currency: string;
|
|
@@ -1196,7 +1394,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1196
1394
|
amount: string;
|
|
1197
1395
|
open_date: string;
|
|
1198
1396
|
};
|
|
1199
|
-
|
|
1397
|
+
webhookexit: {
|
|
1200
1398
|
limit: string;
|
|
1201
1399
|
traderId: any;
|
|
1202
1400
|
stake_currency: string;
|
|
@@ -1211,10 +1409,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1211
1409
|
profit_amount: string;
|
|
1212
1410
|
profit_ratio: string;
|
|
1213
1411
|
close_date: string;
|
|
1214
|
-
|
|
1412
|
+
exit_reason: string;
|
|
1215
1413
|
order_type: string;
|
|
1216
1414
|
};
|
|
1217
|
-
|
|
1415
|
+
webhookexitcancel: {
|
|
1218
1416
|
limit: string;
|
|
1219
1417
|
traderId: any;
|
|
1220
1418
|
stake_currency: string;
|
|
@@ -1224,7 +1422,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
|
|
|
1224
1422
|
profit_amount: string;
|
|
1225
1423
|
profit_ratio: string;
|
|
1226
1424
|
};
|
|
1227
|
-
|
|
1425
|
+
webhookexitfill: {
|
|
1228
1426
|
traderId: any;
|
|
1229
1427
|
event: string;
|
|
1230
1428
|
userId: string;
|
|
@@ -1335,7 +1533,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1335
1533
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1336
1534
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1337
1535
|
}>;
|
|
1338
|
-
|
|
1536
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
1339
1537
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1340
1538
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1341
1539
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1345,7 +1543,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1345
1543
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1346
1544
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
1347
1545
|
}>;
|
|
1348
|
-
|
|
1546
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
1349
1547
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1350
1548
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1351
1549
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1355,7 +1553,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1355
1553
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1356
1554
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
1357
1555
|
}>;
|
|
1358
|
-
|
|
1556
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
1359
1557
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1360
1558
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1361
1559
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -1367,7 +1565,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1367
1565
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1368
1566
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1369
1567
|
}>;
|
|
1370
|
-
|
|
1568
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
1371
1569
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1372
1570
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1373
1571
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1382,10 +1580,10 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1382
1580
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
1383
1581
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
1384
1582
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
1385
|
-
|
|
1583
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
1386
1584
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
1387
1585
|
}>;
|
|
1388
|
-
|
|
1586
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
1389
1587
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1390
1588
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1391
1589
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1395,7 +1593,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1395
1593
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1396
1594
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
1397
1595
|
}>;
|
|
1398
|
-
|
|
1596
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
1399
1597
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1400
1598
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1401
1599
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1429,6 +1627,41 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1429
1627
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1430
1628
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1431
1629
|
}>;
|
|
1630
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1631
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1632
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
1633
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
1634
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
1635
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1636
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
1637
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
1638
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1639
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1640
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1641
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1642
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1643
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1644
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
1645
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1646
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1647
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1648
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1649
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1650
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1651
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1652
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1653
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1654
|
+
}>;
|
|
1655
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1656
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1657
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1658
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1659
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1660
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
1661
|
+
}>;
|
|
1662
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
1663
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1664
|
+
}>>;
|
|
1432
1665
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1433
1666
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1434
1667
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -1467,13 +1700,9 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1467
1700
|
left: import("@feathersjs/typebox").TString<string>;
|
|
1468
1701
|
right: import("@feathersjs/typebox").TString<string>;
|
|
1469
1702
|
}>>>;
|
|
1470
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
1471
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
1472
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
1473
|
-
}>>>;
|
|
1703
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
1474
1704
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
1475
1705
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1476
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1477
1706
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1478
1707
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1479
1708
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -1596,7 +1825,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1596
1825
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1597
1826
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1598
1827
|
}>;
|
|
1599
|
-
|
|
1828
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
1600
1829
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1601
1830
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1602
1831
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1606,7 +1835,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1606
1835
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1607
1836
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
1608
1837
|
}>;
|
|
1609
|
-
|
|
1838
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
1610
1839
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1611
1840
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1612
1841
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1616,7 +1845,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1616
1845
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1617
1846
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
1618
1847
|
}>;
|
|
1619
|
-
|
|
1848
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
1620
1849
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1621
1850
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
1622
1851
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -1628,7 +1857,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1628
1857
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
1629
1858
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1630
1859
|
}>;
|
|
1631
|
-
|
|
1860
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
1632
1861
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1633
1862
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1634
1863
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1643,10 +1872,10 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1643
1872
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
1644
1873
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
1645
1874
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
1646
|
-
|
|
1875
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
1647
1876
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
1648
1877
|
}>;
|
|
1649
|
-
|
|
1878
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
1650
1879
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1651
1880
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1652
1881
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1656,7 +1885,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1656
1885
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
1657
1886
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
1658
1887
|
}>;
|
|
1659
|
-
|
|
1888
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
1660
1889
|
event: import("@feathersjs/typebox").TString<string>;
|
|
1661
1890
|
traderId: import("@feathersjs/typebox").TAny;
|
|
1662
1891
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -1690,6 +1919,41 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
|
|
|
1690
1919
|
username: import("@feathersjs/typebox").TString<string>;
|
|
1691
1920
|
password: import("@feathersjs/typebox").TString<string>;
|
|
1692
1921
|
}>;
|
|
1922
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
1923
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
1924
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
1925
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
1926
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
1927
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
1928
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
1929
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
1930
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1931
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1932
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1933
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1934
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1935
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1936
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
1937
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1938
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1939
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1940
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1941
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1942
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1943
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1944
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1945
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1946
|
+
}>;
|
|
1947
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1948
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1949
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1950
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1951
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
1952
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
1953
|
+
}>;
|
|
1954
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
1955
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
1956
|
+
}>>;
|
|
1693
1957
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
1694
1958
|
host: import("@feathersjs/typebox").TString<string>;
|
|
1695
1959
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -1726,13 +1990,13 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1726
1990
|
name?: any;
|
|
1727
1991
|
apiKey?: string | undefined;
|
|
1728
1992
|
secret?: string | undefined;
|
|
1729
|
-
key?: string | undefined;
|
|
1730
1993
|
avatar?: any;
|
|
1731
1994
|
createdAt?: any;
|
|
1732
1995
|
updatedAt?: any;
|
|
1733
1996
|
userId?: string | {} | undefined;
|
|
1734
1997
|
which?: string | undefined;
|
|
1735
1998
|
connected?: boolean | undefined;
|
|
1999
|
+
token?: string | undefined;
|
|
1736
2000
|
downloaded?: {
|
|
1737
2001
|
updatedAt: any;
|
|
1738
2002
|
size: string;
|
|
@@ -1758,10 +2022,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1758
2022
|
left: string;
|
|
1759
2023
|
right: string;
|
|
1760
2024
|
}[] | undefined;
|
|
1761
|
-
whitelist?:
|
|
1762
|
-
left: string;
|
|
1763
|
-
right: string;
|
|
1764
|
-
}[] | undefined;
|
|
2025
|
+
whitelist?: any[] | undefined;
|
|
1765
2026
|
ccxt_async_config?: any;
|
|
1766
2027
|
requiredCredentials?: any;
|
|
1767
2028
|
uid?: string | undefined;
|
|
@@ -1769,23 +2030,47 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1769
2030
|
twofa?: string | undefined;
|
|
1770
2031
|
privateKey?: string | undefined;
|
|
1771
2032
|
walletAddress?: string | undefined;
|
|
1772
|
-
token?: string | undefined;
|
|
1773
2033
|
__v?: any;
|
|
1774
2034
|
_id: string | {};
|
|
1775
2035
|
}>;
|
|
1776
2036
|
strategy: Partial<{
|
|
1777
2037
|
_id?: string | {} | undefined;
|
|
1778
|
-
createdAt?: any;
|
|
1779
|
-
updatedAt?: any;
|
|
1780
|
-
'strategies/templates'?: {
|
|
1781
|
-
_id?: string | {} | undefined;
|
|
1782
|
-
values: any;
|
|
1783
|
-
name: string;
|
|
1784
|
-
createdAt: any;
|
|
1785
|
-
description: string;
|
|
1786
|
-
type: string;
|
|
1787
|
-
} | undefined;
|
|
1788
2038
|
traders?: {
|
|
2039
|
+
telegram?: {
|
|
2040
|
+
access_hash?: string | null | undefined;
|
|
2041
|
+
invite_link?: string | undefined;
|
|
2042
|
+
enabled: boolean;
|
|
2043
|
+
token: string;
|
|
2044
|
+
chat_id: any;
|
|
2045
|
+
allow_custom_messages: boolean;
|
|
2046
|
+
notification_settings: {
|
|
2047
|
+
status: "silent" | "on" | "off";
|
|
2048
|
+
entry: "silent" | "on" | "off";
|
|
2049
|
+
exit: {
|
|
2050
|
+
roi: "silent" | "on" | "off";
|
|
2051
|
+
emergency_exit: "silent" | "on" | "off";
|
|
2052
|
+
force_exit: "silent" | "on" | "off";
|
|
2053
|
+
exit_signal: "silent" | "on" | "off";
|
|
2054
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
2055
|
+
stop_loss: "silent" | "on" | "off";
|
|
2056
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2057
|
+
custom_exit: "silent" | "on" | "off";
|
|
2058
|
+
partial_exit: "silent" | "on" | "off";
|
|
2059
|
+
};
|
|
2060
|
+
warning: "silent" | "on" | "off";
|
|
2061
|
+
startup: "silent" | "on" | "off";
|
|
2062
|
+
entry_fill: "silent" | "on" | "off";
|
|
2063
|
+
entry_cancel: "silent" | "on" | "off";
|
|
2064
|
+
exit_cancel: "silent" | "on" | "off";
|
|
2065
|
+
exit_fill: "silent" | "on" | "off";
|
|
2066
|
+
protection_trigger: "silent" | "on" | "off";
|
|
2067
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
2068
|
+
strategy_msg: "silent" | "on" | "off";
|
|
2069
|
+
show_candle: "off" | "ohlc";
|
|
2070
|
+
};
|
|
2071
|
+
reload: boolean;
|
|
2072
|
+
balance_dust_level: number;
|
|
2073
|
+
} | undefined;
|
|
1789
2074
|
dry_run_wallet?: number | undefined;
|
|
1790
2075
|
max_open_trades?: number | undefined;
|
|
1791
2076
|
plugins?: {
|
|
@@ -1806,15 +2091,15 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1806
2091
|
tradable_balance_ratio?: number | undefined;
|
|
1807
2092
|
webhook?: {
|
|
1808
2093
|
url: string;
|
|
1809
|
-
format: string;
|
|
1810
2094
|
enabled: boolean;
|
|
2095
|
+
format: string;
|
|
1811
2096
|
webhookstatus: {
|
|
1812
2097
|
traderId: any;
|
|
1813
2098
|
event: string;
|
|
1814
2099
|
status: string;
|
|
1815
2100
|
userId: string;
|
|
1816
2101
|
};
|
|
1817
|
-
|
|
2102
|
+
webhookentry: {
|
|
1818
2103
|
limit: string;
|
|
1819
2104
|
traderId: any;
|
|
1820
2105
|
stake_amount: string;
|
|
@@ -1824,7 +2109,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1824
2109
|
pair: string;
|
|
1825
2110
|
fiat_currency: string;
|
|
1826
2111
|
};
|
|
1827
|
-
|
|
2112
|
+
webhookentrycancel: {
|
|
1828
2113
|
limit: string;
|
|
1829
2114
|
traderId: any;
|
|
1830
2115
|
stake_amount: string;
|
|
@@ -1834,7 +2119,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1834
2119
|
pair: string;
|
|
1835
2120
|
fiat_currency: string;
|
|
1836
2121
|
};
|
|
1837
|
-
|
|
2122
|
+
webhookentryfill: {
|
|
1838
2123
|
traderId: any;
|
|
1839
2124
|
stake_amount: string;
|
|
1840
2125
|
stake_currency: string;
|
|
@@ -1846,7 +2131,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1846
2131
|
amount: string;
|
|
1847
2132
|
open_date: string;
|
|
1848
2133
|
};
|
|
1849
|
-
|
|
2134
|
+
webhookexit: {
|
|
1850
2135
|
limit: string;
|
|
1851
2136
|
traderId: any;
|
|
1852
2137
|
stake_currency: string;
|
|
@@ -1861,10 +2146,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1861
2146
|
profit_amount: string;
|
|
1862
2147
|
profit_ratio: string;
|
|
1863
2148
|
close_date: string;
|
|
1864
|
-
|
|
2149
|
+
exit_reason: string;
|
|
1865
2150
|
order_type: string;
|
|
1866
2151
|
};
|
|
1867
|
-
|
|
2152
|
+
webhookexitcancel: {
|
|
1868
2153
|
limit: string;
|
|
1869
2154
|
traderId: any;
|
|
1870
2155
|
stake_currency: string;
|
|
@@ -1874,7 +2159,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1874
2159
|
profit_amount: string;
|
|
1875
2160
|
profit_ratio: string;
|
|
1876
2161
|
};
|
|
1877
|
-
|
|
2162
|
+
webhookexitfill: {
|
|
1878
2163
|
traderId: any;
|
|
1879
2164
|
event: string;
|
|
1880
2165
|
userId: string;
|
|
@@ -1933,6 +2218,16 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1933
2218
|
};
|
|
1934
2219
|
pod: string;
|
|
1935
2220
|
}[] | undefined;
|
|
2221
|
+
createdAt?: any;
|
|
2222
|
+
updatedAt?: any;
|
|
2223
|
+
'strategies/templates'?: {
|
|
2224
|
+
_id?: string | {} | undefined;
|
|
2225
|
+
values: any;
|
|
2226
|
+
name: string;
|
|
2227
|
+
createdAt: any;
|
|
2228
|
+
description: string;
|
|
2229
|
+
type: string;
|
|
2230
|
+
} | undefined;
|
|
1936
2231
|
stoploss?: number | undefined;
|
|
1937
2232
|
minimal_roi?: {
|
|
1938
2233
|
minutes: number;
|
|
@@ -1951,10 +2246,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1951
2246
|
stoploss?: string | undefined;
|
|
1952
2247
|
entry?: "Limit" | "Market" | undefined;
|
|
1953
2248
|
exit?: "Limit" | "Market" | undefined;
|
|
2249
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
1954
2250
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
1955
2251
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
1956
2252
|
forcesell?: "Limit" | "Market" | undefined;
|
|
1957
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
1958
2253
|
stoploss_on_exchange_interval?: number | undefined;
|
|
1959
2254
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
1960
2255
|
} | undefined;
|
|
@@ -1992,6 +2287,41 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
1992
2287
|
}>;
|
|
1993
2288
|
pod: any;
|
|
1994
2289
|
trader: Partial<{
|
|
2290
|
+
telegram?: {
|
|
2291
|
+
access_hash?: string | null | undefined;
|
|
2292
|
+
invite_link?: string | undefined;
|
|
2293
|
+
enabled: boolean;
|
|
2294
|
+
token: string;
|
|
2295
|
+
chat_id: any;
|
|
2296
|
+
allow_custom_messages: boolean;
|
|
2297
|
+
notification_settings: {
|
|
2298
|
+
status: "silent" | "on" | "off";
|
|
2299
|
+
entry: "silent" | "on" | "off";
|
|
2300
|
+
exit: {
|
|
2301
|
+
roi: "silent" | "on" | "off";
|
|
2302
|
+
emergency_exit: "silent" | "on" | "off";
|
|
2303
|
+
force_exit: "silent" | "on" | "off";
|
|
2304
|
+
exit_signal: "silent" | "on" | "off";
|
|
2305
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
2306
|
+
stop_loss: "silent" | "on" | "off";
|
|
2307
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
2308
|
+
custom_exit: "silent" | "on" | "off";
|
|
2309
|
+
partial_exit: "silent" | "on" | "off";
|
|
2310
|
+
};
|
|
2311
|
+
warning: "silent" | "on" | "off";
|
|
2312
|
+
startup: "silent" | "on" | "off";
|
|
2313
|
+
entry_fill: "silent" | "on" | "off";
|
|
2314
|
+
entry_cancel: "silent" | "on" | "off";
|
|
2315
|
+
exit_cancel: "silent" | "on" | "off";
|
|
2316
|
+
exit_fill: "silent" | "on" | "off";
|
|
2317
|
+
protection_trigger: "silent" | "on" | "off";
|
|
2318
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
2319
|
+
strategy_msg: "silent" | "on" | "off";
|
|
2320
|
+
show_candle: "off" | "ohlc";
|
|
2321
|
+
};
|
|
2322
|
+
reload: boolean;
|
|
2323
|
+
balance_dust_level: number;
|
|
2324
|
+
} | undefined;
|
|
1995
2325
|
dry_run_wallet?: number | undefined;
|
|
1996
2326
|
max_open_trades?: number | undefined;
|
|
1997
2327
|
plugins?: {
|
|
@@ -2012,15 +2342,15 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2012
2342
|
tradable_balance_ratio?: number | undefined;
|
|
2013
2343
|
webhook?: {
|
|
2014
2344
|
url: string;
|
|
2015
|
-
format: string;
|
|
2016
2345
|
enabled: boolean;
|
|
2346
|
+
format: string;
|
|
2017
2347
|
webhookstatus: {
|
|
2018
2348
|
traderId: any;
|
|
2019
2349
|
event: string;
|
|
2020
2350
|
status: string;
|
|
2021
2351
|
userId: string;
|
|
2022
2352
|
};
|
|
2023
|
-
|
|
2353
|
+
webhookentry: {
|
|
2024
2354
|
limit: string;
|
|
2025
2355
|
traderId: any;
|
|
2026
2356
|
stake_amount: string;
|
|
@@ -2030,7 +2360,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2030
2360
|
pair: string;
|
|
2031
2361
|
fiat_currency: string;
|
|
2032
2362
|
};
|
|
2033
|
-
|
|
2363
|
+
webhookentrycancel: {
|
|
2034
2364
|
limit: string;
|
|
2035
2365
|
traderId: any;
|
|
2036
2366
|
stake_amount: string;
|
|
@@ -2040,7 +2370,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2040
2370
|
pair: string;
|
|
2041
2371
|
fiat_currency: string;
|
|
2042
2372
|
};
|
|
2043
|
-
|
|
2373
|
+
webhookentryfill: {
|
|
2044
2374
|
traderId: any;
|
|
2045
2375
|
stake_amount: string;
|
|
2046
2376
|
stake_currency: string;
|
|
@@ -2052,7 +2382,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2052
2382
|
amount: string;
|
|
2053
2383
|
open_date: string;
|
|
2054
2384
|
};
|
|
2055
|
-
|
|
2385
|
+
webhookexit: {
|
|
2056
2386
|
limit: string;
|
|
2057
2387
|
traderId: any;
|
|
2058
2388
|
stake_currency: string;
|
|
@@ -2067,10 +2397,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2067
2397
|
profit_amount: string;
|
|
2068
2398
|
profit_ratio: string;
|
|
2069
2399
|
close_date: string;
|
|
2070
|
-
|
|
2400
|
+
exit_reason: string;
|
|
2071
2401
|
order_type: string;
|
|
2072
2402
|
};
|
|
2073
|
-
|
|
2403
|
+
webhookexitcancel: {
|
|
2074
2404
|
limit: string;
|
|
2075
2405
|
traderId: any;
|
|
2076
2406
|
stake_currency: string;
|
|
@@ -2080,7 +2410,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
|
|
|
2080
2410
|
profit_amount: string;
|
|
2081
2411
|
profit_ratio: string;
|
|
2082
2412
|
};
|
|
2083
|
-
|
|
2413
|
+
webhookexitfill: {
|
|
2084
2414
|
traderId: any;
|
|
2085
2415
|
event: string;
|
|
2086
2416
|
userId: string;
|
|
@@ -2191,7 +2521,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2191
2521
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2192
2522
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2193
2523
|
}>;
|
|
2194
|
-
|
|
2524
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
2195
2525
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2196
2526
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2197
2527
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2201,7 +2531,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2201
2531
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2202
2532
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
2203
2533
|
}>;
|
|
2204
|
-
|
|
2534
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
2205
2535
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2206
2536
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2207
2537
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2211,7 +2541,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2211
2541
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2212
2542
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
2213
2543
|
}>;
|
|
2214
|
-
|
|
2544
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
2215
2545
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2216
2546
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2217
2547
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -2223,7 +2553,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2223
2553
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2224
2554
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2225
2555
|
}>;
|
|
2226
|
-
|
|
2556
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
2227
2557
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2228
2558
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2229
2559
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2238,10 +2568,10 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2238
2568
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
2239
2569
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
2240
2570
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
2241
|
-
|
|
2571
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
2242
2572
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
2243
2573
|
}>;
|
|
2244
|
-
|
|
2574
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
2245
2575
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2246
2576
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2247
2577
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2251,7 +2581,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2251
2581
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2252
2582
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
2253
2583
|
}>;
|
|
2254
|
-
|
|
2584
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
2255
2585
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2256
2586
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2257
2587
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2285,6 +2615,41 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2285
2615
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2286
2616
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2287
2617
|
}>;
|
|
2618
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2619
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2620
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
2621
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
2622
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
2623
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2624
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
2625
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
2626
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2627
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2628
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2629
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2630
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2631
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2632
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
2633
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2634
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2635
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2636
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2637
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2638
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2639
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2640
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2641
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2642
|
+
}>;
|
|
2643
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2644
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2645
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2646
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2647
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2648
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
2649
|
+
}>;
|
|
2650
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
2651
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2652
|
+
}>>;
|
|
2288
2653
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2289
2654
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2290
2655
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -2323,13 +2688,9 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2323
2688
|
left: import("@feathersjs/typebox").TString<string>;
|
|
2324
2689
|
right: import("@feathersjs/typebox").TString<string>;
|
|
2325
2690
|
}>>>;
|
|
2326
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
2327
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
2328
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
2329
|
-
}>>>;
|
|
2691
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
2330
2692
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
2331
2693
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2332
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2333
2694
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2334
2695
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2335
2696
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -2452,7 +2813,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2452
2813
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2453
2814
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2454
2815
|
}>;
|
|
2455
|
-
|
|
2816
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
2456
2817
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2457
2818
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2458
2819
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2462,7 +2823,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2462
2823
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2463
2824
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
2464
2825
|
}>;
|
|
2465
|
-
|
|
2826
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
2466
2827
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2467
2828
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2468
2829
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2472,7 +2833,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2472
2833
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2473
2834
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
2474
2835
|
}>;
|
|
2475
|
-
|
|
2836
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
2476
2837
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2477
2838
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
2478
2839
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -2484,7 +2845,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2484
2845
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
2485
2846
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2486
2847
|
}>;
|
|
2487
|
-
|
|
2848
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
2488
2849
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2489
2850
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2490
2851
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2499,10 +2860,10 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2499
2860
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
2500
2861
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
2501
2862
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
2502
|
-
|
|
2863
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
2503
2864
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
2504
2865
|
}>;
|
|
2505
|
-
|
|
2866
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
2506
2867
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2507
2868
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2508
2869
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2512,7 +2873,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2512
2873
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
2513
2874
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
2514
2875
|
}>;
|
|
2515
|
-
|
|
2876
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
2516
2877
|
event: import("@feathersjs/typebox").TString<string>;
|
|
2517
2878
|
traderId: import("@feathersjs/typebox").TAny;
|
|
2518
2879
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -2546,6 +2907,41 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
|
|
|
2546
2907
|
username: import("@feathersjs/typebox").TString<string>;
|
|
2547
2908
|
password: import("@feathersjs/typebox").TString<string>;
|
|
2548
2909
|
}>;
|
|
2910
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
2911
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
2912
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
2913
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
2914
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
2915
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
2916
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
2917
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
2918
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2919
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2920
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2921
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2922
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2923
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2924
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
2925
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2926
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2927
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2928
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2929
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2930
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2931
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2932
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2933
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2934
|
+
}>;
|
|
2935
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2936
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2937
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2938
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2939
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
2940
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
2941
|
+
}>;
|
|
2942
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
2943
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
2944
|
+
}>>;
|
|
2549
2945
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
2550
2946
|
host: import("@feathersjs/typebox").TString<string>;
|
|
2551
2947
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -2582,13 +2978,13 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2582
2978
|
name?: any;
|
|
2583
2979
|
apiKey?: string | undefined;
|
|
2584
2980
|
secret?: string | undefined;
|
|
2585
|
-
key?: string | undefined;
|
|
2586
2981
|
avatar?: any;
|
|
2587
2982
|
createdAt?: any;
|
|
2588
2983
|
updatedAt?: any;
|
|
2589
2984
|
userId?: string | {} | undefined;
|
|
2590
2985
|
which?: string | undefined;
|
|
2591
2986
|
connected?: boolean | undefined;
|
|
2987
|
+
token?: string | undefined;
|
|
2592
2988
|
downloaded?: {
|
|
2593
2989
|
updatedAt: any;
|
|
2594
2990
|
size: string;
|
|
@@ -2614,10 +3010,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2614
3010
|
left: string;
|
|
2615
3011
|
right: string;
|
|
2616
3012
|
}[] | undefined;
|
|
2617
|
-
whitelist?:
|
|
2618
|
-
left: string;
|
|
2619
|
-
right: string;
|
|
2620
|
-
}[] | undefined;
|
|
3013
|
+
whitelist?: any[] | undefined;
|
|
2621
3014
|
ccxt_async_config?: any;
|
|
2622
3015
|
requiredCredentials?: any;
|
|
2623
3016
|
uid?: string | undefined;
|
|
@@ -2625,23 +3018,47 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2625
3018
|
twofa?: string | undefined;
|
|
2626
3019
|
privateKey?: string | undefined;
|
|
2627
3020
|
walletAddress?: string | undefined;
|
|
2628
|
-
token?: string | undefined;
|
|
2629
3021
|
__v?: any;
|
|
2630
3022
|
_id: string | {};
|
|
2631
3023
|
}>;
|
|
2632
3024
|
strategy: Partial<{
|
|
2633
3025
|
_id?: string | {} | undefined;
|
|
2634
|
-
createdAt?: any;
|
|
2635
|
-
updatedAt?: any;
|
|
2636
|
-
'strategies/templates'?: {
|
|
2637
|
-
_id?: string | {} | undefined;
|
|
2638
|
-
values: any;
|
|
2639
|
-
name: string;
|
|
2640
|
-
createdAt: any;
|
|
2641
|
-
description: string;
|
|
2642
|
-
type: string;
|
|
2643
|
-
} | undefined;
|
|
2644
3026
|
traders?: {
|
|
3027
|
+
telegram?: {
|
|
3028
|
+
access_hash?: string | null | undefined;
|
|
3029
|
+
invite_link?: string | undefined;
|
|
3030
|
+
enabled: boolean;
|
|
3031
|
+
token: string;
|
|
3032
|
+
chat_id: any;
|
|
3033
|
+
allow_custom_messages: boolean;
|
|
3034
|
+
notification_settings: {
|
|
3035
|
+
status: "silent" | "on" | "off";
|
|
3036
|
+
entry: "silent" | "on" | "off";
|
|
3037
|
+
exit: {
|
|
3038
|
+
roi: "silent" | "on" | "off";
|
|
3039
|
+
emergency_exit: "silent" | "on" | "off";
|
|
3040
|
+
force_exit: "silent" | "on" | "off";
|
|
3041
|
+
exit_signal: "silent" | "on" | "off";
|
|
3042
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
3043
|
+
stop_loss: "silent" | "on" | "off";
|
|
3044
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3045
|
+
custom_exit: "silent" | "on" | "off";
|
|
3046
|
+
partial_exit: "silent" | "on" | "off";
|
|
3047
|
+
};
|
|
3048
|
+
warning: "silent" | "on" | "off";
|
|
3049
|
+
startup: "silent" | "on" | "off";
|
|
3050
|
+
entry_fill: "silent" | "on" | "off";
|
|
3051
|
+
entry_cancel: "silent" | "on" | "off";
|
|
3052
|
+
exit_cancel: "silent" | "on" | "off";
|
|
3053
|
+
exit_fill: "silent" | "on" | "off";
|
|
3054
|
+
protection_trigger: "silent" | "on" | "off";
|
|
3055
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
3056
|
+
strategy_msg: "silent" | "on" | "off";
|
|
3057
|
+
show_candle: "off" | "ohlc";
|
|
3058
|
+
};
|
|
3059
|
+
reload: boolean;
|
|
3060
|
+
balance_dust_level: number;
|
|
3061
|
+
} | undefined;
|
|
2645
3062
|
dry_run_wallet?: number | undefined;
|
|
2646
3063
|
max_open_trades?: number | undefined;
|
|
2647
3064
|
plugins?: {
|
|
@@ -2662,15 +3079,15 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2662
3079
|
tradable_balance_ratio?: number | undefined;
|
|
2663
3080
|
webhook?: {
|
|
2664
3081
|
url: string;
|
|
2665
|
-
format: string;
|
|
2666
3082
|
enabled: boolean;
|
|
3083
|
+
format: string;
|
|
2667
3084
|
webhookstatus: {
|
|
2668
3085
|
traderId: any;
|
|
2669
3086
|
event: string;
|
|
2670
3087
|
status: string;
|
|
2671
3088
|
userId: string;
|
|
2672
3089
|
};
|
|
2673
|
-
|
|
3090
|
+
webhookentry: {
|
|
2674
3091
|
limit: string;
|
|
2675
3092
|
traderId: any;
|
|
2676
3093
|
stake_amount: string;
|
|
@@ -2680,7 +3097,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2680
3097
|
pair: string;
|
|
2681
3098
|
fiat_currency: string;
|
|
2682
3099
|
};
|
|
2683
|
-
|
|
3100
|
+
webhookentrycancel: {
|
|
2684
3101
|
limit: string;
|
|
2685
3102
|
traderId: any;
|
|
2686
3103
|
stake_amount: string;
|
|
@@ -2690,7 +3107,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2690
3107
|
pair: string;
|
|
2691
3108
|
fiat_currency: string;
|
|
2692
3109
|
};
|
|
2693
|
-
|
|
3110
|
+
webhookentryfill: {
|
|
2694
3111
|
traderId: any;
|
|
2695
3112
|
stake_amount: string;
|
|
2696
3113
|
stake_currency: string;
|
|
@@ -2702,7 +3119,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2702
3119
|
amount: string;
|
|
2703
3120
|
open_date: string;
|
|
2704
3121
|
};
|
|
2705
|
-
|
|
3122
|
+
webhookexit: {
|
|
2706
3123
|
limit: string;
|
|
2707
3124
|
traderId: any;
|
|
2708
3125
|
stake_currency: string;
|
|
@@ -2717,10 +3134,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2717
3134
|
profit_amount: string;
|
|
2718
3135
|
profit_ratio: string;
|
|
2719
3136
|
close_date: string;
|
|
2720
|
-
|
|
3137
|
+
exit_reason: string;
|
|
2721
3138
|
order_type: string;
|
|
2722
3139
|
};
|
|
2723
|
-
|
|
3140
|
+
webhookexitcancel: {
|
|
2724
3141
|
limit: string;
|
|
2725
3142
|
traderId: any;
|
|
2726
3143
|
stake_currency: string;
|
|
@@ -2730,7 +3147,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2730
3147
|
profit_amount: string;
|
|
2731
3148
|
profit_ratio: string;
|
|
2732
3149
|
};
|
|
2733
|
-
|
|
3150
|
+
webhookexitfill: {
|
|
2734
3151
|
traderId: any;
|
|
2735
3152
|
event: string;
|
|
2736
3153
|
userId: string;
|
|
@@ -2789,6 +3206,16 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2789
3206
|
};
|
|
2790
3207
|
pod: string;
|
|
2791
3208
|
}[] | undefined;
|
|
3209
|
+
createdAt?: any;
|
|
3210
|
+
updatedAt?: any;
|
|
3211
|
+
'strategies/templates'?: {
|
|
3212
|
+
_id?: string | {} | undefined;
|
|
3213
|
+
values: any;
|
|
3214
|
+
name: string;
|
|
3215
|
+
createdAt: any;
|
|
3216
|
+
description: string;
|
|
3217
|
+
type: string;
|
|
3218
|
+
} | undefined;
|
|
2792
3219
|
stoploss?: number | undefined;
|
|
2793
3220
|
minimal_roi?: {
|
|
2794
3221
|
minutes: number;
|
|
@@ -2807,10 +3234,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2807
3234
|
stoploss?: string | undefined;
|
|
2808
3235
|
entry?: "Limit" | "Market" | undefined;
|
|
2809
3236
|
exit?: "Limit" | "Market" | undefined;
|
|
3237
|
+
stoploss_on_exchange?: boolean | undefined;
|
|
2810
3238
|
emergencysell?: "Limit" | "Market" | undefined;
|
|
2811
3239
|
forcebuy?: "Limit" | "Market" | undefined;
|
|
2812
3240
|
forcesell?: "Limit" | "Market" | undefined;
|
|
2813
|
-
stoploss_on_exchange?: boolean | undefined;
|
|
2814
3241
|
stoploss_on_exchange_interval?: number | undefined;
|
|
2815
3242
|
stoploss_on_exchange_limit_ratio?: number | undefined;
|
|
2816
3243
|
} | undefined;
|
|
@@ -2848,6 +3275,41 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2848
3275
|
}>;
|
|
2849
3276
|
pod: any;
|
|
2850
3277
|
trader: Partial<{
|
|
3278
|
+
telegram?: {
|
|
3279
|
+
access_hash?: string | null | undefined;
|
|
3280
|
+
invite_link?: string | undefined;
|
|
3281
|
+
enabled: boolean;
|
|
3282
|
+
token: string;
|
|
3283
|
+
chat_id: any;
|
|
3284
|
+
allow_custom_messages: boolean;
|
|
3285
|
+
notification_settings: {
|
|
3286
|
+
status: "silent" | "on" | "off";
|
|
3287
|
+
entry: "silent" | "on" | "off";
|
|
3288
|
+
exit: {
|
|
3289
|
+
roi: "silent" | "on" | "off";
|
|
3290
|
+
emergency_exit: "silent" | "on" | "off";
|
|
3291
|
+
force_exit: "silent" | "on" | "off";
|
|
3292
|
+
exit_signal: "silent" | "on" | "off";
|
|
3293
|
+
trailing_stop_loss: "silent" | "on" | "off";
|
|
3294
|
+
stop_loss: "silent" | "on" | "off";
|
|
3295
|
+
stoploss_on_exchange: "silent" | "on" | "off";
|
|
3296
|
+
custom_exit: "silent" | "on" | "off";
|
|
3297
|
+
partial_exit: "silent" | "on" | "off";
|
|
3298
|
+
};
|
|
3299
|
+
warning: "silent" | "on" | "off";
|
|
3300
|
+
startup: "silent" | "on" | "off";
|
|
3301
|
+
entry_fill: "silent" | "on" | "off";
|
|
3302
|
+
entry_cancel: "silent" | "on" | "off";
|
|
3303
|
+
exit_cancel: "silent" | "on" | "off";
|
|
3304
|
+
exit_fill: "silent" | "on" | "off";
|
|
3305
|
+
protection_trigger: "silent" | "on" | "off";
|
|
3306
|
+
protection_trigger_global: "silent" | "on" | "off";
|
|
3307
|
+
strategy_msg: "silent" | "on" | "off";
|
|
3308
|
+
show_candle: "off" | "ohlc";
|
|
3309
|
+
};
|
|
3310
|
+
reload: boolean;
|
|
3311
|
+
balance_dust_level: number;
|
|
3312
|
+
} | undefined;
|
|
2851
3313
|
dry_run_wallet?: number | undefined;
|
|
2852
3314
|
max_open_trades?: number | undefined;
|
|
2853
3315
|
plugins?: {
|
|
@@ -2868,15 +3330,15 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2868
3330
|
tradable_balance_ratio?: number | undefined;
|
|
2869
3331
|
webhook?: {
|
|
2870
3332
|
url: string;
|
|
2871
|
-
format: string;
|
|
2872
3333
|
enabled: boolean;
|
|
3334
|
+
format: string;
|
|
2873
3335
|
webhookstatus: {
|
|
2874
3336
|
traderId: any;
|
|
2875
3337
|
event: string;
|
|
2876
3338
|
status: string;
|
|
2877
3339
|
userId: string;
|
|
2878
3340
|
};
|
|
2879
|
-
|
|
3341
|
+
webhookentry: {
|
|
2880
3342
|
limit: string;
|
|
2881
3343
|
traderId: any;
|
|
2882
3344
|
stake_amount: string;
|
|
@@ -2886,7 +3348,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2886
3348
|
pair: string;
|
|
2887
3349
|
fiat_currency: string;
|
|
2888
3350
|
};
|
|
2889
|
-
|
|
3351
|
+
webhookentrycancel: {
|
|
2890
3352
|
limit: string;
|
|
2891
3353
|
traderId: any;
|
|
2892
3354
|
stake_amount: string;
|
|
@@ -2896,7 +3358,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2896
3358
|
pair: string;
|
|
2897
3359
|
fiat_currency: string;
|
|
2898
3360
|
};
|
|
2899
|
-
|
|
3361
|
+
webhookentryfill: {
|
|
2900
3362
|
traderId: any;
|
|
2901
3363
|
stake_amount: string;
|
|
2902
3364
|
stake_currency: string;
|
|
@@ -2908,7 +3370,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2908
3370
|
amount: string;
|
|
2909
3371
|
open_date: string;
|
|
2910
3372
|
};
|
|
2911
|
-
|
|
3373
|
+
webhookexit: {
|
|
2912
3374
|
limit: string;
|
|
2913
3375
|
traderId: any;
|
|
2914
3376
|
stake_currency: string;
|
|
@@ -2923,10 +3385,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2923
3385
|
profit_amount: string;
|
|
2924
3386
|
profit_ratio: string;
|
|
2925
3387
|
close_date: string;
|
|
2926
|
-
|
|
3388
|
+
exit_reason: string;
|
|
2927
3389
|
order_type: string;
|
|
2928
3390
|
};
|
|
2929
|
-
|
|
3391
|
+
webhookexitcancel: {
|
|
2930
3392
|
limit: string;
|
|
2931
3393
|
traderId: any;
|
|
2932
3394
|
stake_currency: string;
|
|
@@ -2936,7 +3398,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
|
|
|
2936
3398
|
profit_amount: string;
|
|
2937
3399
|
profit_ratio: string;
|
|
2938
3400
|
};
|
|
2939
|
-
|
|
3401
|
+
webhookexitfill: {
|
|
2940
3402
|
traderId: any;
|
|
2941
3403
|
event: string;
|
|
2942
3404
|
userId: string;
|
|
@@ -3047,7 +3509,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3047
3509
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3048
3510
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3049
3511
|
}>;
|
|
3050
|
-
|
|
3512
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
3051
3513
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3052
3514
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3053
3515
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3057,7 +3519,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3057
3519
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3058
3520
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
3059
3521
|
}>;
|
|
3060
|
-
|
|
3522
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
3061
3523
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3062
3524
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3063
3525
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3067,7 +3529,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3067
3529
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3068
3530
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
3069
3531
|
}>;
|
|
3070
|
-
|
|
3532
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
3071
3533
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3072
3534
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3073
3535
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -3079,7 +3541,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3079
3541
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3080
3542
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3081
3543
|
}>;
|
|
3082
|
-
|
|
3544
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
3083
3545
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3084
3546
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3085
3547
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3094,10 +3556,10 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3094
3556
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
3095
3557
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
3096
3558
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
3097
|
-
|
|
3559
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
3098
3560
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
3099
3561
|
}>;
|
|
3100
|
-
|
|
3562
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
3101
3563
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3102
3564
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3103
3565
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3107,7 +3569,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3107
3569
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3108
3570
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
3109
3571
|
}>;
|
|
3110
|
-
|
|
3572
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
3111
3573
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3112
3574
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3113
3575
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3141,6 +3603,41 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3141
3603
|
username: import("@feathersjs/typebox").TString<string>;
|
|
3142
3604
|
password: import("@feathersjs/typebox").TString<string>;
|
|
3143
3605
|
}>;
|
|
3606
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3607
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3608
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
3609
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
3610
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
3611
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3612
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
3613
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
3614
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3615
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3616
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3617
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3618
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3619
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3620
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
3621
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3622
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3623
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3624
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3625
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3626
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3627
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3628
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3629
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3630
|
+
}>;
|
|
3631
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3632
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3633
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3634
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3635
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3636
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
3637
|
+
}>;
|
|
3638
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
3639
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3640
|
+
}>>;
|
|
3144
3641
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3145
3642
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3146
3643
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|
|
@@ -3179,13 +3676,9 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3179
3676
|
left: import("@feathersjs/typebox").TString<string>;
|
|
3180
3677
|
right: import("@feathersjs/typebox").TString<string>;
|
|
3181
3678
|
}>>>;
|
|
3182
|
-
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").
|
|
3183
|
-
left: import("@feathersjs/typebox").TString<string>;
|
|
3184
|
-
right: import("@feathersjs/typebox").TString<string>;
|
|
3185
|
-
}>>>;
|
|
3679
|
+
whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
|
|
3186
3680
|
ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
3187
3681
|
which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3188
|
-
key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3189
3682
|
apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3190
3683
|
secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3191
3684
|
requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
|
|
@@ -3308,7 +3801,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3308
3801
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3309
3802
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3310
3803
|
}>;
|
|
3311
|
-
|
|
3804
|
+
webhookentry: import("@feathersjs/typebox").TObject<{
|
|
3312
3805
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3313
3806
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3314
3807
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3318,7 +3811,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3318
3811
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3319
3812
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
3320
3813
|
}>;
|
|
3321
|
-
|
|
3814
|
+
webhookentrycancel: import("@feathersjs/typebox").TObject<{
|
|
3322
3815
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3323
3816
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3324
3817
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3328,7 +3821,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3328
3821
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3329
3822
|
fiat_currency: import("@feathersjs/typebox").TString<string>;
|
|
3330
3823
|
}>;
|
|
3331
|
-
|
|
3824
|
+
webhookentryfill: import("@feathersjs/typebox").TObject<{
|
|
3332
3825
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3333
3826
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
3334
3827
|
traderId: import("@feathersjs/typebox").TAny;
|
|
@@ -3340,7 +3833,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3340
3833
|
stake_amount: import("@feathersjs/typebox").TString<string>;
|
|
3341
3834
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3342
3835
|
}>;
|
|
3343
|
-
|
|
3836
|
+
webhookexit: import("@feathersjs/typebox").TObject<{
|
|
3344
3837
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3345
3838
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3346
3839
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3355,10 +3848,10 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3355
3848
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
3356
3849
|
open_date: import("@feathersjs/typebox").TString<string>;
|
|
3357
3850
|
close_date: import("@feathersjs/typebox").TString<string>;
|
|
3358
|
-
|
|
3851
|
+
exit_reason: import("@feathersjs/typebox").TString<string>;
|
|
3359
3852
|
order_type: import("@feathersjs/typebox").TString<string>;
|
|
3360
3853
|
}>;
|
|
3361
|
-
|
|
3854
|
+
webhookexitcancel: import("@feathersjs/typebox").TObject<{
|
|
3362
3855
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3363
3856
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3364
3857
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3368,7 +3861,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3368
3861
|
stake_currency: import("@feathersjs/typebox").TString<string>;
|
|
3369
3862
|
profit_ratio: import("@feathersjs/typebox").TString<string>;
|
|
3370
3863
|
}>;
|
|
3371
|
-
|
|
3864
|
+
webhookexitfill: import("@feathersjs/typebox").TObject<{
|
|
3372
3865
|
event: import("@feathersjs/typebox").TString<string>;
|
|
3373
3866
|
traderId: import("@feathersjs/typebox").TAny;
|
|
3374
3867
|
userId: import("@feathersjs/typebox").TString<string>;
|
|
@@ -3402,6 +3895,41 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
|
|
|
3402
3895
|
username: import("@feathersjs/typebox").TString<string>;
|
|
3403
3896
|
password: import("@feathersjs/typebox").TString<string>;
|
|
3404
3897
|
}>;
|
|
3898
|
+
telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
|
|
3899
|
+
enabled: import("@feathersjs/typebox").TBoolean;
|
|
3900
|
+
token: import("@feathersjs/typebox").TString<string>;
|
|
3901
|
+
chat_id: import("@feathersjs/typebox").TAny;
|
|
3902
|
+
access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
|
|
3903
|
+
invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
|
|
3904
|
+
allow_custom_messages: import("@feathersjs/typebox").TBoolean;
|
|
3905
|
+
notification_settings: import("@feathersjs/typebox").TObject<{
|
|
3906
|
+
status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3907
|
+
warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3908
|
+
startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3909
|
+
entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3910
|
+
entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3911
|
+
entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3912
|
+
exit: import("@feathersjs/typebox").TObject<{
|
|
3913
|
+
roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3914
|
+
emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3915
|
+
force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3916
|
+
exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3917
|
+
trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3918
|
+
stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3919
|
+
stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3920
|
+
custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3921
|
+
partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3922
|
+
}>;
|
|
3923
|
+
exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3924
|
+
exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3925
|
+
protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3926
|
+
protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3927
|
+
strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
|
|
3928
|
+
show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
|
|
3929
|
+
}>;
|
|
3930
|
+
reload: import("@feathersjs/typebox").TBoolean;
|
|
3931
|
+
balance_dust_level: import("@feathersjs/typebox").TNumber;
|
|
3932
|
+
}>>;
|
|
3405
3933
|
pod: import("@feathersjs/typebox").TString<string>;
|
|
3406
3934
|
host: import("@feathersjs/typebox").TString<string>;
|
|
3407
3935
|
provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
|