@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.
Files changed (30) hide show
  1. package/lib/configuration.d.ts +17 -0
  2. package/lib/helpers/app.helper.d.ts +4 -0
  3. package/lib/helpers/logging.helper.d.ts +7 -6
  4. package/lib/helpers/queue.helper.d.ts +5 -0
  5. package/lib/helpers/telegram.helper.d.ts +7 -0
  6. package/lib/helpers/trader.helper.d.ts +2 -0
  7. package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
  8. package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
  9. package/lib/hooks/init-data-folder.d.ts +2 -0
  10. package/lib/hooks/setup-aws-sdk.d.ts +2 -0
  11. package/lib/hooks/setup-cronjobs.d.ts +2 -0
  12. package/lib/hooks/setup-queues.d.ts +3 -0
  13. package/lib/hooks/setup-telegram-client.d.ts +3 -0
  14. package/lib/hooks/telegram-create-group.d.ts +2 -0
  15. package/lib/hooks/telegram-delete-group.d.ts +2 -0
  16. package/lib/hooks/telegram-update-group.d.ts +2 -0
  17. package/lib/hooks/tickers-fetch.d.ts +1 -1
  18. package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
  19. package/lib/services/exchanges/balance/balance.schema.d.ts +12 -44
  20. package/lib/services/exchanges/download/download.schema.d.ts +16 -48
  21. package/lib/services/exchanges/exchanges.schema.d.ts +12 -44
  22. package/lib/services/exchanges/ticker/ticker.schema.d.ts +12 -44
  23. package/lib/services/messages/messages.schema.d.ts +24 -8
  24. package/lib/services/strategies/strategies.schema.d.ts +384 -104
  25. package/lib/services/traders/pods/api/api.schema.d.ts +1076 -268
  26. package/lib/services/traders/pods/pods.schema.d.ts +736 -208
  27. package/lib/services/traders/traders.schema.d.ts +340 -60
  28. package/lib/services/users/users.schema.d.ts +24 -8
  29. package/lib/telegram-get-credentials.d.ts +1 -0
  30. package/package.json +1 -1
@@ -53,7 +53,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
53
53
  traderId: import("@feathersjs/typebox").TAny;
54
54
  userId: import("@feathersjs/typebox").TString<string>;
55
55
  }>;
56
- webhookbuy: import("@feathersjs/typebox").TObject<{
56
+ webhookentry: import("@feathersjs/typebox").TObject<{
57
57
  event: import("@feathersjs/typebox").TString<string>;
58
58
  traderId: import("@feathersjs/typebox").TAny;
59
59
  userId: import("@feathersjs/typebox").TString<string>;
@@ -63,7 +63,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
63
63
  stake_currency: import("@feathersjs/typebox").TString<string>;
64
64
  fiat_currency: import("@feathersjs/typebox").TString<string>;
65
65
  }>;
66
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
66
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
67
67
  event: import("@feathersjs/typebox").TString<string>;
68
68
  traderId: import("@feathersjs/typebox").TAny;
69
69
  userId: import("@feathersjs/typebox").TString<string>;
@@ -73,7 +73,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
73
73
  stake_currency: import("@feathersjs/typebox").TString<string>;
74
74
  fiat_currency: import("@feathersjs/typebox").TString<string>;
75
75
  }>;
76
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
76
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
77
77
  event: import("@feathersjs/typebox").TString<string>;
78
78
  userId: import("@feathersjs/typebox").TString<string>;
79
79
  traderId: import("@feathersjs/typebox").TAny;
@@ -85,7 +85,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
85
85
  stake_amount: import("@feathersjs/typebox").TString<string>;
86
86
  stake_currency: import("@feathersjs/typebox").TString<string>;
87
87
  }>;
88
- webhooksell: import("@feathersjs/typebox").TObject<{
88
+ webhookexit: import("@feathersjs/typebox").TObject<{
89
89
  event: import("@feathersjs/typebox").TString<string>;
90
90
  traderId: import("@feathersjs/typebox").TAny;
91
91
  userId: import("@feathersjs/typebox").TString<string>;
@@ -100,10 +100,10 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
100
100
  profit_ratio: import("@feathersjs/typebox").TString<string>;
101
101
  open_date: import("@feathersjs/typebox").TString<string>;
102
102
  close_date: import("@feathersjs/typebox").TString<string>;
103
- sell_reason: import("@feathersjs/typebox").TString<string>;
103
+ exit_reason: import("@feathersjs/typebox").TString<string>;
104
104
  order_type: import("@feathersjs/typebox").TString<string>;
105
105
  }>;
106
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
106
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
107
107
  event: import("@feathersjs/typebox").TString<string>;
108
108
  traderId: import("@feathersjs/typebox").TAny;
109
109
  userId: import("@feathersjs/typebox").TString<string>;
@@ -113,7 +113,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
113
113
  stake_currency: import("@feathersjs/typebox").TString<string>;
114
114
  profit_ratio: import("@feathersjs/typebox").TString<string>;
115
115
  }>;
116
- webhooksellfill: import("@feathersjs/typebox").TObject<{
116
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
117
117
  event: import("@feathersjs/typebox").TString<string>;
118
118
  traderId: import("@feathersjs/typebox").TAny;
119
119
  userId: import("@feathersjs/typebox").TString<string>;
@@ -147,6 +147,41 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
147
147
  username: import("@feathersjs/typebox").TString<string>;
148
148
  password: import("@feathersjs/typebox").TString<string>;
149
149
  }>;
150
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
151
+ enabled: import("@feathersjs/typebox").TBoolean;
152
+ token: import("@feathersjs/typebox").TString<string>;
153
+ chat_id: import("@feathersjs/typebox").TAny;
154
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
155
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
156
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
157
+ notification_settings: import("@feathersjs/typebox").TObject<{
158
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
159
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
160
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
161
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
162
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
163
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
164
+ exit: import("@feathersjs/typebox").TObject<{
165
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
166
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
167
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
168
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
169
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
170
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
171
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
172
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
173
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
174
+ }>;
175
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
176
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
177
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
178
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
179
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
180
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
181
+ }>;
182
+ reload: import("@feathersjs/typebox").TBoolean;
183
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
184
+ }>>;
150
185
  pod: import("@feathersjs/typebox").TString<string>;
151
186
  host: import("@feathersjs/typebox").TString<string>;
152
187
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -204,7 +239,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
204
239
  traderId: import("@feathersjs/typebox").TAny;
205
240
  userId: import("@feathersjs/typebox").TString<string>;
206
241
  }>;
207
- webhookbuy: import("@feathersjs/typebox").TObject<{
242
+ webhookentry: import("@feathersjs/typebox").TObject<{
208
243
  event: import("@feathersjs/typebox").TString<string>;
209
244
  traderId: import("@feathersjs/typebox").TAny;
210
245
  userId: import("@feathersjs/typebox").TString<string>;
@@ -214,7 +249,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
214
249
  stake_currency: import("@feathersjs/typebox").TString<string>;
215
250
  fiat_currency: import("@feathersjs/typebox").TString<string>;
216
251
  }>;
217
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
252
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
218
253
  event: import("@feathersjs/typebox").TString<string>;
219
254
  traderId: import("@feathersjs/typebox").TAny;
220
255
  userId: import("@feathersjs/typebox").TString<string>;
@@ -224,7 +259,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
224
259
  stake_currency: import("@feathersjs/typebox").TString<string>;
225
260
  fiat_currency: import("@feathersjs/typebox").TString<string>;
226
261
  }>;
227
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
262
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
228
263
  event: import("@feathersjs/typebox").TString<string>;
229
264
  userId: import("@feathersjs/typebox").TString<string>;
230
265
  traderId: import("@feathersjs/typebox").TAny;
@@ -236,7 +271,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
236
271
  stake_amount: import("@feathersjs/typebox").TString<string>;
237
272
  stake_currency: import("@feathersjs/typebox").TString<string>;
238
273
  }>;
239
- webhooksell: import("@feathersjs/typebox").TObject<{
274
+ webhookexit: import("@feathersjs/typebox").TObject<{
240
275
  event: import("@feathersjs/typebox").TString<string>;
241
276
  traderId: import("@feathersjs/typebox").TAny;
242
277
  userId: import("@feathersjs/typebox").TString<string>;
@@ -251,10 +286,10 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
251
286
  profit_ratio: import("@feathersjs/typebox").TString<string>;
252
287
  open_date: import("@feathersjs/typebox").TString<string>;
253
288
  close_date: import("@feathersjs/typebox").TString<string>;
254
- sell_reason: import("@feathersjs/typebox").TString<string>;
289
+ exit_reason: import("@feathersjs/typebox").TString<string>;
255
290
  order_type: import("@feathersjs/typebox").TString<string>;
256
291
  }>;
257
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
292
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
258
293
  event: import("@feathersjs/typebox").TString<string>;
259
294
  traderId: import("@feathersjs/typebox").TAny;
260
295
  userId: import("@feathersjs/typebox").TString<string>;
@@ -264,7 +299,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
264
299
  stake_currency: import("@feathersjs/typebox").TString<string>;
265
300
  profit_ratio: import("@feathersjs/typebox").TString<string>;
266
301
  }>;
267
- webhooksellfill: import("@feathersjs/typebox").TObject<{
302
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
268
303
  event: import("@feathersjs/typebox").TString<string>;
269
304
  traderId: import("@feathersjs/typebox").TAny;
270
305
  userId: import("@feathersjs/typebox").TString<string>;
@@ -298,6 +333,41 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
298
333
  username: import("@feathersjs/typebox").TString<string>;
299
334
  password: import("@feathersjs/typebox").TString<string>;
300
335
  }>;
336
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
337
+ enabled: import("@feathersjs/typebox").TBoolean;
338
+ token: import("@feathersjs/typebox").TString<string>;
339
+ chat_id: import("@feathersjs/typebox").TAny;
340
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
341
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
342
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
343
+ notification_settings: import("@feathersjs/typebox").TObject<{
344
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
345
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
346
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
347
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
348
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
349
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
350
+ exit: import("@feathersjs/typebox").TObject<{
351
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
352
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
353
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
354
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
355
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
356
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
357
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
358
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
359
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
360
+ }>;
361
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
362
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
363
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
364
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
365
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
366
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
367
+ }>;
368
+ reload: import("@feathersjs/typebox").TBoolean;
369
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
370
+ }>>;
301
371
  pod: import("@feathersjs/typebox").TString<string>;
302
372
  host: import("@feathersjs/typebox").TString<string>;
303
373
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -336,13 +406,9 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
336
406
  left: import("@feathersjs/typebox").TString<string>;
337
407
  right: import("@feathersjs/typebox").TString<string>;
338
408
  }>>>;
339
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
340
- left: import("@feathersjs/typebox").TString<string>;
341
- right: import("@feathersjs/typebox").TString<string>;
342
- }>>>;
409
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
343
410
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
344
411
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
345
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
346
412
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
347
413
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
348
414
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -465,7 +531,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
465
531
  traderId: import("@feathersjs/typebox").TAny;
466
532
  userId: import("@feathersjs/typebox").TString<string>;
467
533
  }>;
468
- webhookbuy: import("@feathersjs/typebox").TObject<{
534
+ webhookentry: import("@feathersjs/typebox").TObject<{
469
535
  event: import("@feathersjs/typebox").TString<string>;
470
536
  traderId: import("@feathersjs/typebox").TAny;
471
537
  userId: import("@feathersjs/typebox").TString<string>;
@@ -475,7 +541,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
475
541
  stake_currency: import("@feathersjs/typebox").TString<string>;
476
542
  fiat_currency: import("@feathersjs/typebox").TString<string>;
477
543
  }>;
478
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
544
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
479
545
  event: import("@feathersjs/typebox").TString<string>;
480
546
  traderId: import("@feathersjs/typebox").TAny;
481
547
  userId: import("@feathersjs/typebox").TString<string>;
@@ -485,7 +551,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
485
551
  stake_currency: import("@feathersjs/typebox").TString<string>;
486
552
  fiat_currency: import("@feathersjs/typebox").TString<string>;
487
553
  }>;
488
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
554
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
489
555
  event: import("@feathersjs/typebox").TString<string>;
490
556
  userId: import("@feathersjs/typebox").TString<string>;
491
557
  traderId: import("@feathersjs/typebox").TAny;
@@ -497,7 +563,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
497
563
  stake_amount: import("@feathersjs/typebox").TString<string>;
498
564
  stake_currency: import("@feathersjs/typebox").TString<string>;
499
565
  }>;
500
- webhooksell: import("@feathersjs/typebox").TObject<{
566
+ webhookexit: import("@feathersjs/typebox").TObject<{
501
567
  event: import("@feathersjs/typebox").TString<string>;
502
568
  traderId: import("@feathersjs/typebox").TAny;
503
569
  userId: import("@feathersjs/typebox").TString<string>;
@@ -512,10 +578,10 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
512
578
  profit_ratio: import("@feathersjs/typebox").TString<string>;
513
579
  open_date: import("@feathersjs/typebox").TString<string>;
514
580
  close_date: import("@feathersjs/typebox").TString<string>;
515
- sell_reason: import("@feathersjs/typebox").TString<string>;
581
+ exit_reason: import("@feathersjs/typebox").TString<string>;
516
582
  order_type: import("@feathersjs/typebox").TString<string>;
517
583
  }>;
518
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
584
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
519
585
  event: import("@feathersjs/typebox").TString<string>;
520
586
  traderId: import("@feathersjs/typebox").TAny;
521
587
  userId: import("@feathersjs/typebox").TString<string>;
@@ -525,7 +591,7 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
525
591
  stake_currency: import("@feathersjs/typebox").TString<string>;
526
592
  profit_ratio: import("@feathersjs/typebox").TString<string>;
527
593
  }>;
528
- webhooksellfill: import("@feathersjs/typebox").TObject<{
594
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
529
595
  event: import("@feathersjs/typebox").TString<string>;
530
596
  traderId: import("@feathersjs/typebox").TAny;
531
597
  userId: import("@feathersjs/typebox").TString<string>;
@@ -559,6 +625,41 @@ export declare const tradersPodsApiSchema: import("@feathersjs/typebox").TObject
559
625
  username: import("@feathersjs/typebox").TString<string>;
560
626
  password: import("@feathersjs/typebox").TString<string>;
561
627
  }>;
628
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
629
+ enabled: import("@feathersjs/typebox").TBoolean;
630
+ token: import("@feathersjs/typebox").TString<string>;
631
+ chat_id: import("@feathersjs/typebox").TAny;
632
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
633
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
634
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
635
+ notification_settings: import("@feathersjs/typebox").TObject<{
636
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
637
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
638
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
639
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
640
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
641
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
642
+ exit: import("@feathersjs/typebox").TObject<{
643
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
644
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
645
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
646
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
647
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
648
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
649
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
650
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
651
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
652
+ }>;
653
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
654
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
655
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
656
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
657
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
658
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
659
+ }>;
660
+ reload: import("@feathersjs/typebox").TBoolean;
661
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
662
+ }>>;
562
663
  pod: import("@feathersjs/typebox").TString<string>;
563
664
  host: import("@feathersjs/typebox").TString<string>;
564
665
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -602,13 +703,13 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
602
703
  name?: any;
603
704
  apiKey?: string | undefined;
604
705
  secret?: string | undefined;
605
- key?: string | undefined;
606
706
  avatar?: any;
607
707
  createdAt?: any;
608
708
  updatedAt?: any;
609
709
  userId?: string | {} | undefined;
610
710
  which?: string | undefined;
611
711
  connected?: boolean | undefined;
712
+ token?: string | undefined;
612
713
  downloaded?: {
613
714
  updatedAt: any;
614
715
  size: string;
@@ -634,10 +735,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
634
735
  left: string;
635
736
  right: string;
636
737
  }[] | undefined;
637
- whitelist?: {
638
- left: string;
639
- right: string;
640
- }[] | undefined;
738
+ whitelist?: any[] | undefined;
641
739
  ccxt_async_config?: any;
642
740
  requiredCredentials?: any;
643
741
  uid?: string | undefined;
@@ -645,23 +743,47 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
645
743
  twofa?: string | undefined;
646
744
  privateKey?: string | undefined;
647
745
  walletAddress?: string | undefined;
648
- token?: string | undefined;
649
746
  __v?: any;
650
747
  _id: string | {};
651
748
  }>;
652
749
  strategy: Partial<{
653
750
  _id?: string | {} | undefined;
654
- createdAt?: any;
655
- updatedAt?: any;
656
- 'strategies/templates'?: {
657
- _id?: string | {} | undefined;
658
- values: any;
659
- name: string;
660
- createdAt: any;
661
- description: string;
662
- type: string;
663
- } | undefined;
664
751
  traders?: {
752
+ telegram?: {
753
+ access_hash?: string | null | undefined;
754
+ invite_link?: string | undefined;
755
+ enabled: boolean;
756
+ token: string;
757
+ chat_id: any;
758
+ allow_custom_messages: boolean;
759
+ notification_settings: {
760
+ status: "silent" | "on" | "off";
761
+ entry: "silent" | "on" | "off";
762
+ exit: {
763
+ roi: "silent" | "on" | "off";
764
+ emergency_exit: "silent" | "on" | "off";
765
+ force_exit: "silent" | "on" | "off";
766
+ exit_signal: "silent" | "on" | "off";
767
+ trailing_stop_loss: "silent" | "on" | "off";
768
+ stop_loss: "silent" | "on" | "off";
769
+ stoploss_on_exchange: "silent" | "on" | "off";
770
+ custom_exit: "silent" | "on" | "off";
771
+ partial_exit: "silent" | "on" | "off";
772
+ };
773
+ warning: "silent" | "on" | "off";
774
+ startup: "silent" | "on" | "off";
775
+ entry_fill: "silent" | "on" | "off";
776
+ entry_cancel: "silent" | "on" | "off";
777
+ exit_cancel: "silent" | "on" | "off";
778
+ exit_fill: "silent" | "on" | "off";
779
+ protection_trigger: "silent" | "on" | "off";
780
+ protection_trigger_global: "silent" | "on" | "off";
781
+ strategy_msg: "silent" | "on" | "off";
782
+ show_candle: "off" | "ohlc";
783
+ };
784
+ reload: boolean;
785
+ balance_dust_level: number;
786
+ } | undefined;
665
787
  dry_run_wallet?: number | undefined;
666
788
  max_open_trades?: number | undefined;
667
789
  plugins?: {
@@ -682,15 +804,15 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
682
804
  tradable_balance_ratio?: number | undefined;
683
805
  webhook?: {
684
806
  url: string;
685
- format: string;
686
807
  enabled: boolean;
808
+ format: string;
687
809
  webhookstatus: {
688
810
  traderId: any;
689
811
  event: string;
690
812
  status: string;
691
813
  userId: string;
692
814
  };
693
- webhookbuy: {
815
+ webhookentry: {
694
816
  limit: string;
695
817
  traderId: any;
696
818
  stake_amount: string;
@@ -700,7 +822,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
700
822
  pair: string;
701
823
  fiat_currency: string;
702
824
  };
703
- webhookbuycancel: {
825
+ webhookentrycancel: {
704
826
  limit: string;
705
827
  traderId: any;
706
828
  stake_amount: string;
@@ -710,7 +832,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
710
832
  pair: string;
711
833
  fiat_currency: string;
712
834
  };
713
- webhookbuyfill: {
835
+ webhookentryfill: {
714
836
  traderId: any;
715
837
  stake_amount: string;
716
838
  stake_currency: string;
@@ -722,7 +844,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
722
844
  amount: string;
723
845
  open_date: string;
724
846
  };
725
- webhooksell: {
847
+ webhookexit: {
726
848
  limit: string;
727
849
  traderId: any;
728
850
  stake_currency: string;
@@ -737,10 +859,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
737
859
  profit_amount: string;
738
860
  profit_ratio: string;
739
861
  close_date: string;
740
- sell_reason: string;
862
+ exit_reason: string;
741
863
  order_type: string;
742
864
  };
743
- webhooksellcancel: {
865
+ webhookexitcancel: {
744
866
  limit: string;
745
867
  traderId: any;
746
868
  stake_currency: string;
@@ -750,7 +872,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
750
872
  profit_amount: string;
751
873
  profit_ratio: string;
752
874
  };
753
- webhooksellfill: {
875
+ webhookexitfill: {
754
876
  traderId: any;
755
877
  event: string;
756
878
  userId: string;
@@ -809,6 +931,16 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
809
931
  };
810
932
  pod: string;
811
933
  }[] | undefined;
934
+ createdAt?: any;
935
+ updatedAt?: any;
936
+ 'strategies/templates'?: {
937
+ _id?: string | {} | undefined;
938
+ values: any;
939
+ name: string;
940
+ createdAt: any;
941
+ description: string;
942
+ type: string;
943
+ } | undefined;
812
944
  stoploss?: number | undefined;
813
945
  minimal_roi?: {
814
946
  minutes: number;
@@ -827,10 +959,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
827
959
  stoploss?: string | undefined;
828
960
  entry?: "Limit" | "Market" | undefined;
829
961
  exit?: "Limit" | "Market" | undefined;
962
+ stoploss_on_exchange?: boolean | undefined;
830
963
  emergencysell?: "Limit" | "Market" | undefined;
831
964
  forcebuy?: "Limit" | "Market" | undefined;
832
965
  forcesell?: "Limit" | "Market" | undefined;
833
- stoploss_on_exchange?: boolean | undefined;
834
966
  stoploss_on_exchange_interval?: number | undefined;
835
967
  stoploss_on_exchange_limit_ratio?: number | undefined;
836
968
  } | undefined;
@@ -868,6 +1000,41 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
868
1000
  }>;
869
1001
  pod: any;
870
1002
  trader: Partial<{
1003
+ telegram?: {
1004
+ access_hash?: string | null | undefined;
1005
+ invite_link?: string | undefined;
1006
+ enabled: boolean;
1007
+ token: string;
1008
+ chat_id: any;
1009
+ allow_custom_messages: boolean;
1010
+ notification_settings: {
1011
+ status: "silent" | "on" | "off";
1012
+ entry: "silent" | "on" | "off";
1013
+ exit: {
1014
+ roi: "silent" | "on" | "off";
1015
+ emergency_exit: "silent" | "on" | "off";
1016
+ force_exit: "silent" | "on" | "off";
1017
+ exit_signal: "silent" | "on" | "off";
1018
+ trailing_stop_loss: "silent" | "on" | "off";
1019
+ stop_loss: "silent" | "on" | "off";
1020
+ stoploss_on_exchange: "silent" | "on" | "off";
1021
+ custom_exit: "silent" | "on" | "off";
1022
+ partial_exit: "silent" | "on" | "off";
1023
+ };
1024
+ warning: "silent" | "on" | "off";
1025
+ startup: "silent" | "on" | "off";
1026
+ entry_fill: "silent" | "on" | "off";
1027
+ entry_cancel: "silent" | "on" | "off";
1028
+ exit_cancel: "silent" | "on" | "off";
1029
+ exit_fill: "silent" | "on" | "off";
1030
+ protection_trigger: "silent" | "on" | "off";
1031
+ protection_trigger_global: "silent" | "on" | "off";
1032
+ strategy_msg: "silent" | "on" | "off";
1033
+ show_candle: "off" | "ohlc";
1034
+ };
1035
+ reload: boolean;
1036
+ balance_dust_level: number;
1037
+ } | undefined;
871
1038
  dry_run_wallet?: number | undefined;
872
1039
  max_open_trades?: number | undefined;
873
1040
  plugins?: {
@@ -888,15 +1055,15 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
888
1055
  tradable_balance_ratio?: number | undefined;
889
1056
  webhook?: {
890
1057
  url: string;
891
- format: string;
892
1058
  enabled: boolean;
1059
+ format: string;
893
1060
  webhookstatus: {
894
1061
  traderId: any;
895
1062
  event: string;
896
1063
  status: string;
897
1064
  userId: string;
898
1065
  };
899
- webhookbuy: {
1066
+ webhookentry: {
900
1067
  limit: string;
901
1068
  traderId: any;
902
1069
  stake_amount: string;
@@ -906,7 +1073,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
906
1073
  pair: string;
907
1074
  fiat_currency: string;
908
1075
  };
909
- webhookbuycancel: {
1076
+ webhookentrycancel: {
910
1077
  limit: string;
911
1078
  traderId: any;
912
1079
  stake_amount: string;
@@ -916,7 +1083,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
916
1083
  pair: string;
917
1084
  fiat_currency: string;
918
1085
  };
919
- webhookbuyfill: {
1086
+ webhookentryfill: {
920
1087
  traderId: any;
921
1088
  stake_amount: string;
922
1089
  stake_currency: string;
@@ -928,7 +1095,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
928
1095
  amount: string;
929
1096
  open_date: string;
930
1097
  };
931
- webhooksell: {
1098
+ webhookexit: {
932
1099
  limit: string;
933
1100
  traderId: any;
934
1101
  stake_currency: string;
@@ -943,10 +1110,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
943
1110
  profit_amount: string;
944
1111
  profit_ratio: string;
945
1112
  close_date: string;
946
- sell_reason: string;
1113
+ exit_reason: string;
947
1114
  order_type: string;
948
1115
  };
949
- webhooksellcancel: {
1116
+ webhookexitcancel: {
950
1117
  limit: string;
951
1118
  traderId: any;
952
1119
  stake_currency: string;
@@ -956,7 +1123,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
956
1123
  profit_amount: string;
957
1124
  profit_ratio: string;
958
1125
  };
959
- webhooksellfill: {
1126
+ webhookexitfill: {
960
1127
  traderId: any;
961
1128
  event: string;
962
1129
  userId: string;
@@ -1017,6 +1184,41 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1017
1184
  }>;
1018
1185
  }> | undefined;
1019
1186
  trader?: Partial<{
1187
+ telegram?: {
1188
+ access_hash?: string | null | undefined;
1189
+ invite_link?: string | undefined;
1190
+ enabled: boolean;
1191
+ token: string;
1192
+ chat_id: any;
1193
+ allow_custom_messages: boolean;
1194
+ notification_settings: {
1195
+ status: "silent" | "on" | "off";
1196
+ entry: "silent" | "on" | "off";
1197
+ exit: {
1198
+ roi: "silent" | "on" | "off";
1199
+ emergency_exit: "silent" | "on" | "off";
1200
+ force_exit: "silent" | "on" | "off";
1201
+ exit_signal: "silent" | "on" | "off";
1202
+ trailing_stop_loss: "silent" | "on" | "off";
1203
+ stop_loss: "silent" | "on" | "off";
1204
+ stoploss_on_exchange: "silent" | "on" | "off";
1205
+ custom_exit: "silent" | "on" | "off";
1206
+ partial_exit: "silent" | "on" | "off";
1207
+ };
1208
+ warning: "silent" | "on" | "off";
1209
+ startup: "silent" | "on" | "off";
1210
+ entry_fill: "silent" | "on" | "off";
1211
+ entry_cancel: "silent" | "on" | "off";
1212
+ exit_cancel: "silent" | "on" | "off";
1213
+ exit_fill: "silent" | "on" | "off";
1214
+ protection_trigger: "silent" | "on" | "off";
1215
+ protection_trigger_global: "silent" | "on" | "off";
1216
+ strategy_msg: "silent" | "on" | "off";
1217
+ show_candle: "off" | "ohlc";
1218
+ };
1219
+ reload: boolean;
1220
+ balance_dust_level: number;
1221
+ } | undefined;
1020
1222
  dry_run_wallet?: number | undefined;
1021
1223
  max_open_trades?: number | undefined;
1022
1224
  plugins?: {
@@ -1037,15 +1239,15 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1037
1239
  tradable_balance_ratio?: number | undefined;
1038
1240
  webhook?: {
1039
1241
  url: string;
1040
- format: string;
1041
1242
  enabled: boolean;
1243
+ format: string;
1042
1244
  webhookstatus: {
1043
1245
  traderId: any;
1044
1246
  event: string;
1045
1247
  status: string;
1046
1248
  userId: string;
1047
1249
  };
1048
- webhookbuy: {
1250
+ webhookentry: {
1049
1251
  limit: string;
1050
1252
  traderId: any;
1051
1253
  stake_amount: string;
@@ -1055,7 +1257,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1055
1257
  pair: string;
1056
1258
  fiat_currency: string;
1057
1259
  };
1058
- webhookbuycancel: {
1260
+ webhookentrycancel: {
1059
1261
  limit: string;
1060
1262
  traderId: any;
1061
1263
  stake_amount: string;
@@ -1065,7 +1267,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1065
1267
  pair: string;
1066
1268
  fiat_currency: string;
1067
1269
  };
1068
- webhookbuyfill: {
1270
+ webhookentryfill: {
1069
1271
  traderId: any;
1070
1272
  stake_amount: string;
1071
1273
  stake_currency: string;
@@ -1077,7 +1279,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1077
1279
  amount: string;
1078
1280
  open_date: string;
1079
1281
  };
1080
- webhooksell: {
1282
+ webhookexit: {
1081
1283
  limit: string;
1082
1284
  traderId: any;
1083
1285
  stake_currency: string;
@@ -1092,10 +1294,10 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1092
1294
  profit_amount: string;
1093
1295
  profit_ratio: string;
1094
1296
  close_date: string;
1095
- sell_reason: string;
1297
+ exit_reason: string;
1096
1298
  order_type: string;
1097
1299
  };
1098
- webhooksellcancel: {
1300
+ webhookexitcancel: {
1099
1301
  limit: string;
1100
1302
  traderId: any;
1101
1303
  stake_currency: string;
@@ -1105,7 +1307,7 @@ export declare const tradersPodsApiResolver: import("@feathersjs/schema").Resolv
1105
1307
  profit_amount: string;
1106
1308
  profit_ratio: string;
1107
1309
  };
1108
- webhooksellfill: {
1310
+ webhookexitfill: {
1109
1311
  traderId: any;
1110
1312
  event: string;
1111
1313
  userId: string;
@@ -1186,13 +1388,13 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1186
1388
  name?: any;
1187
1389
  apiKey?: string | undefined;
1188
1390
  secret?: string | undefined;
1189
- key?: string | undefined;
1190
1391
  avatar?: any;
1191
1392
  createdAt?: any;
1192
1393
  updatedAt?: any;
1193
1394
  userId?: string | {} | undefined;
1194
1395
  which?: string | undefined;
1195
1396
  connected?: boolean | undefined;
1397
+ token?: string | undefined;
1196
1398
  downloaded?: {
1197
1399
  updatedAt: any;
1198
1400
  size: string;
@@ -1218,10 +1420,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1218
1420
  left: string;
1219
1421
  right: string;
1220
1422
  }[] | undefined;
1221
- whitelist?: {
1222
- left: string;
1223
- right: string;
1224
- }[] | undefined;
1423
+ whitelist?: any[] | undefined;
1225
1424
  ccxt_async_config?: any;
1226
1425
  requiredCredentials?: any;
1227
1426
  uid?: string | undefined;
@@ -1229,23 +1428,47 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1229
1428
  twofa?: string | undefined;
1230
1429
  privateKey?: string | undefined;
1231
1430
  walletAddress?: string | undefined;
1232
- token?: string | undefined;
1233
1431
  __v?: any;
1234
1432
  _id: string | {};
1235
1433
  }>;
1236
1434
  strategy: Partial<{
1237
1435
  _id?: string | {} | undefined;
1238
- createdAt?: any;
1239
- updatedAt?: any;
1240
- 'strategies/templates'?: {
1241
- _id?: string | {} | undefined;
1242
- values: any;
1243
- name: string;
1244
- createdAt: any;
1245
- description: string;
1246
- type: string;
1247
- } | undefined;
1248
1436
  traders?: {
1437
+ telegram?: {
1438
+ access_hash?: string | null | undefined;
1439
+ invite_link?: string | undefined;
1440
+ enabled: boolean;
1441
+ token: string;
1442
+ chat_id: any;
1443
+ allow_custom_messages: boolean;
1444
+ notification_settings: {
1445
+ status: "silent" | "on" | "off";
1446
+ entry: "silent" | "on" | "off";
1447
+ exit: {
1448
+ roi: "silent" | "on" | "off";
1449
+ emergency_exit: "silent" | "on" | "off";
1450
+ force_exit: "silent" | "on" | "off";
1451
+ exit_signal: "silent" | "on" | "off";
1452
+ trailing_stop_loss: "silent" | "on" | "off";
1453
+ stop_loss: "silent" | "on" | "off";
1454
+ stoploss_on_exchange: "silent" | "on" | "off";
1455
+ custom_exit: "silent" | "on" | "off";
1456
+ partial_exit: "silent" | "on" | "off";
1457
+ };
1458
+ warning: "silent" | "on" | "off";
1459
+ startup: "silent" | "on" | "off";
1460
+ entry_fill: "silent" | "on" | "off";
1461
+ entry_cancel: "silent" | "on" | "off";
1462
+ exit_cancel: "silent" | "on" | "off";
1463
+ exit_fill: "silent" | "on" | "off";
1464
+ protection_trigger: "silent" | "on" | "off";
1465
+ protection_trigger_global: "silent" | "on" | "off";
1466
+ strategy_msg: "silent" | "on" | "off";
1467
+ show_candle: "off" | "ohlc";
1468
+ };
1469
+ reload: boolean;
1470
+ balance_dust_level: number;
1471
+ } | undefined;
1249
1472
  dry_run_wallet?: number | undefined;
1250
1473
  max_open_trades?: number | undefined;
1251
1474
  plugins?: {
@@ -1266,15 +1489,15 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1266
1489
  tradable_balance_ratio?: number | undefined;
1267
1490
  webhook?: {
1268
1491
  url: string;
1269
- format: string;
1270
1492
  enabled: boolean;
1493
+ format: string;
1271
1494
  webhookstatus: {
1272
1495
  traderId: any;
1273
1496
  event: string;
1274
1497
  status: string;
1275
1498
  userId: string;
1276
1499
  };
1277
- webhookbuy: {
1500
+ webhookentry: {
1278
1501
  limit: string;
1279
1502
  traderId: any;
1280
1503
  stake_amount: string;
@@ -1284,7 +1507,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1284
1507
  pair: string;
1285
1508
  fiat_currency: string;
1286
1509
  };
1287
- webhookbuycancel: {
1510
+ webhookentrycancel: {
1288
1511
  limit: string;
1289
1512
  traderId: any;
1290
1513
  stake_amount: string;
@@ -1294,7 +1517,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1294
1517
  pair: string;
1295
1518
  fiat_currency: string;
1296
1519
  };
1297
- webhookbuyfill: {
1520
+ webhookentryfill: {
1298
1521
  traderId: any;
1299
1522
  stake_amount: string;
1300
1523
  stake_currency: string;
@@ -1306,7 +1529,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1306
1529
  amount: string;
1307
1530
  open_date: string;
1308
1531
  };
1309
- webhooksell: {
1532
+ webhookexit: {
1310
1533
  limit: string;
1311
1534
  traderId: any;
1312
1535
  stake_currency: string;
@@ -1321,10 +1544,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1321
1544
  profit_amount: string;
1322
1545
  profit_ratio: string;
1323
1546
  close_date: string;
1324
- sell_reason: string;
1547
+ exit_reason: string;
1325
1548
  order_type: string;
1326
1549
  };
1327
- webhooksellcancel: {
1550
+ webhookexitcancel: {
1328
1551
  limit: string;
1329
1552
  traderId: any;
1330
1553
  stake_currency: string;
@@ -1334,7 +1557,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1334
1557
  profit_amount: string;
1335
1558
  profit_ratio: string;
1336
1559
  };
1337
- webhooksellfill: {
1560
+ webhookexitfill: {
1338
1561
  traderId: any;
1339
1562
  event: string;
1340
1563
  userId: string;
@@ -1393,6 +1616,16 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1393
1616
  };
1394
1617
  pod: string;
1395
1618
  }[] | undefined;
1619
+ createdAt?: any;
1620
+ updatedAt?: any;
1621
+ 'strategies/templates'?: {
1622
+ _id?: string | {} | undefined;
1623
+ values: any;
1624
+ name: string;
1625
+ createdAt: any;
1626
+ description: string;
1627
+ type: string;
1628
+ } | undefined;
1396
1629
  stoploss?: number | undefined;
1397
1630
  minimal_roi?: {
1398
1631
  minutes: number;
@@ -1411,10 +1644,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1411
1644
  stoploss?: string | undefined;
1412
1645
  entry?: "Limit" | "Market" | undefined;
1413
1646
  exit?: "Limit" | "Market" | undefined;
1647
+ stoploss_on_exchange?: boolean | undefined;
1414
1648
  emergencysell?: "Limit" | "Market" | undefined;
1415
1649
  forcebuy?: "Limit" | "Market" | undefined;
1416
1650
  forcesell?: "Limit" | "Market" | undefined;
1417
- stoploss_on_exchange?: boolean | undefined;
1418
1651
  stoploss_on_exchange_interval?: number | undefined;
1419
1652
  stoploss_on_exchange_limit_ratio?: number | undefined;
1420
1653
  } | undefined;
@@ -1452,6 +1685,41 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1452
1685
  }>;
1453
1686
  pod: any;
1454
1687
  trader: Partial<{
1688
+ telegram?: {
1689
+ access_hash?: string | null | undefined;
1690
+ invite_link?: string | undefined;
1691
+ enabled: boolean;
1692
+ token: string;
1693
+ chat_id: any;
1694
+ allow_custom_messages: boolean;
1695
+ notification_settings: {
1696
+ status: "silent" | "on" | "off";
1697
+ entry: "silent" | "on" | "off";
1698
+ exit: {
1699
+ roi: "silent" | "on" | "off";
1700
+ emergency_exit: "silent" | "on" | "off";
1701
+ force_exit: "silent" | "on" | "off";
1702
+ exit_signal: "silent" | "on" | "off";
1703
+ trailing_stop_loss: "silent" | "on" | "off";
1704
+ stop_loss: "silent" | "on" | "off";
1705
+ stoploss_on_exchange: "silent" | "on" | "off";
1706
+ custom_exit: "silent" | "on" | "off";
1707
+ partial_exit: "silent" | "on" | "off";
1708
+ };
1709
+ warning: "silent" | "on" | "off";
1710
+ startup: "silent" | "on" | "off";
1711
+ entry_fill: "silent" | "on" | "off";
1712
+ entry_cancel: "silent" | "on" | "off";
1713
+ exit_cancel: "silent" | "on" | "off";
1714
+ exit_fill: "silent" | "on" | "off";
1715
+ protection_trigger: "silent" | "on" | "off";
1716
+ protection_trigger_global: "silent" | "on" | "off";
1717
+ strategy_msg: "silent" | "on" | "off";
1718
+ show_candle: "off" | "ohlc";
1719
+ };
1720
+ reload: boolean;
1721
+ balance_dust_level: number;
1722
+ } | undefined;
1455
1723
  dry_run_wallet?: number | undefined;
1456
1724
  max_open_trades?: number | undefined;
1457
1725
  plugins?: {
@@ -1472,15 +1740,15 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1472
1740
  tradable_balance_ratio?: number | undefined;
1473
1741
  webhook?: {
1474
1742
  url: string;
1475
- format: string;
1476
1743
  enabled: boolean;
1744
+ format: string;
1477
1745
  webhookstatus: {
1478
1746
  traderId: any;
1479
1747
  event: string;
1480
1748
  status: string;
1481
1749
  userId: string;
1482
1750
  };
1483
- webhookbuy: {
1751
+ webhookentry: {
1484
1752
  limit: string;
1485
1753
  traderId: any;
1486
1754
  stake_amount: string;
@@ -1490,7 +1758,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1490
1758
  pair: string;
1491
1759
  fiat_currency: string;
1492
1760
  };
1493
- webhookbuycancel: {
1761
+ webhookentrycancel: {
1494
1762
  limit: string;
1495
1763
  traderId: any;
1496
1764
  stake_amount: string;
@@ -1500,7 +1768,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1500
1768
  pair: string;
1501
1769
  fiat_currency: string;
1502
1770
  };
1503
- webhookbuyfill: {
1771
+ webhookentryfill: {
1504
1772
  traderId: any;
1505
1773
  stake_amount: string;
1506
1774
  stake_currency: string;
@@ -1512,7 +1780,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1512
1780
  amount: string;
1513
1781
  open_date: string;
1514
1782
  };
1515
- webhooksell: {
1783
+ webhookexit: {
1516
1784
  limit: string;
1517
1785
  traderId: any;
1518
1786
  stake_currency: string;
@@ -1527,10 +1795,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1527
1795
  profit_amount: string;
1528
1796
  profit_ratio: string;
1529
1797
  close_date: string;
1530
- sell_reason: string;
1798
+ exit_reason: string;
1531
1799
  order_type: string;
1532
1800
  };
1533
- webhooksellcancel: {
1801
+ webhookexitcancel: {
1534
1802
  limit: string;
1535
1803
  traderId: any;
1536
1804
  stake_currency: string;
@@ -1540,7 +1808,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1540
1808
  profit_amount: string;
1541
1809
  profit_ratio: string;
1542
1810
  };
1543
- webhooksellfill: {
1811
+ webhookexitfill: {
1544
1812
  traderId: any;
1545
1813
  event: string;
1546
1814
  userId: string;
@@ -1601,6 +1869,41 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1601
1869
  }>;
1602
1870
  }> | undefined;
1603
1871
  trader?: Partial<{
1872
+ telegram?: {
1873
+ access_hash?: string | null | undefined;
1874
+ invite_link?: string | undefined;
1875
+ enabled: boolean;
1876
+ token: string;
1877
+ chat_id: any;
1878
+ allow_custom_messages: boolean;
1879
+ notification_settings: {
1880
+ status: "silent" | "on" | "off";
1881
+ entry: "silent" | "on" | "off";
1882
+ exit: {
1883
+ roi: "silent" | "on" | "off";
1884
+ emergency_exit: "silent" | "on" | "off";
1885
+ force_exit: "silent" | "on" | "off";
1886
+ exit_signal: "silent" | "on" | "off";
1887
+ trailing_stop_loss: "silent" | "on" | "off";
1888
+ stop_loss: "silent" | "on" | "off";
1889
+ stoploss_on_exchange: "silent" | "on" | "off";
1890
+ custom_exit: "silent" | "on" | "off";
1891
+ partial_exit: "silent" | "on" | "off";
1892
+ };
1893
+ warning: "silent" | "on" | "off";
1894
+ startup: "silent" | "on" | "off";
1895
+ entry_fill: "silent" | "on" | "off";
1896
+ entry_cancel: "silent" | "on" | "off";
1897
+ exit_cancel: "silent" | "on" | "off";
1898
+ exit_fill: "silent" | "on" | "off";
1899
+ protection_trigger: "silent" | "on" | "off";
1900
+ protection_trigger_global: "silent" | "on" | "off";
1901
+ strategy_msg: "silent" | "on" | "off";
1902
+ show_candle: "off" | "ohlc";
1903
+ };
1904
+ reload: boolean;
1905
+ balance_dust_level: number;
1906
+ } | undefined;
1604
1907
  dry_run_wallet?: number | undefined;
1605
1908
  max_open_trades?: number | undefined;
1606
1909
  plugins?: {
@@ -1621,15 +1924,15 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1621
1924
  tradable_balance_ratio?: number | undefined;
1622
1925
  webhook?: {
1623
1926
  url: string;
1624
- format: string;
1625
1927
  enabled: boolean;
1928
+ format: string;
1626
1929
  webhookstatus: {
1627
1930
  traderId: any;
1628
1931
  event: string;
1629
1932
  status: string;
1630
1933
  userId: string;
1631
1934
  };
1632
- webhookbuy: {
1935
+ webhookentry: {
1633
1936
  limit: string;
1634
1937
  traderId: any;
1635
1938
  stake_amount: string;
@@ -1639,7 +1942,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1639
1942
  pair: string;
1640
1943
  fiat_currency: string;
1641
1944
  };
1642
- webhookbuycancel: {
1945
+ webhookentrycancel: {
1643
1946
  limit: string;
1644
1947
  traderId: any;
1645
1948
  stake_amount: string;
@@ -1649,7 +1952,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1649
1952
  pair: string;
1650
1953
  fiat_currency: string;
1651
1954
  };
1652
- webhookbuyfill: {
1955
+ webhookentryfill: {
1653
1956
  traderId: any;
1654
1957
  stake_amount: string;
1655
1958
  stake_currency: string;
@@ -1661,7 +1964,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1661
1964
  amount: string;
1662
1965
  open_date: string;
1663
1966
  };
1664
- webhooksell: {
1967
+ webhookexit: {
1665
1968
  limit: string;
1666
1969
  traderId: any;
1667
1970
  stake_currency: string;
@@ -1676,10 +1979,10 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1676
1979
  profit_amount: string;
1677
1980
  profit_ratio: string;
1678
1981
  close_date: string;
1679
- sell_reason: string;
1982
+ exit_reason: string;
1680
1983
  order_type: string;
1681
1984
  };
1682
- webhooksellcancel: {
1985
+ webhookexitcancel: {
1683
1986
  limit: string;
1684
1987
  traderId: any;
1685
1988
  stake_currency: string;
@@ -1689,7 +1992,7 @@ export declare const tradersPodsApiExternalResolver: import("@feathersjs/schema"
1689
1992
  profit_amount: string;
1690
1993
  profit_ratio: string;
1691
1994
  };
1692
- webhooksellfill: {
1995
+ webhookexitfill: {
1693
1996
  traderId: any;
1694
1997
  event: string;
1695
1998
  userId: string;
@@ -1807,7 +2110,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1807
2110
  traderId: import("@feathersjs/typebox").TAny;
1808
2111
  userId: import("@feathersjs/typebox").TString<string>;
1809
2112
  }>;
1810
- webhookbuy: import("@feathersjs/typebox").TObject<{
2113
+ webhookentry: import("@feathersjs/typebox").TObject<{
1811
2114
  event: import("@feathersjs/typebox").TString<string>;
1812
2115
  traderId: import("@feathersjs/typebox").TAny;
1813
2116
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1817,7 +2120,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1817
2120
  stake_currency: import("@feathersjs/typebox").TString<string>;
1818
2121
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1819
2122
  }>;
1820
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
2123
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
1821
2124
  event: import("@feathersjs/typebox").TString<string>;
1822
2125
  traderId: import("@feathersjs/typebox").TAny;
1823
2126
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1827,7 +2130,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1827
2130
  stake_currency: import("@feathersjs/typebox").TString<string>;
1828
2131
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1829
2132
  }>;
1830
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
2133
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
1831
2134
  event: import("@feathersjs/typebox").TString<string>;
1832
2135
  userId: import("@feathersjs/typebox").TString<string>;
1833
2136
  traderId: import("@feathersjs/typebox").TAny;
@@ -1839,7 +2142,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1839
2142
  stake_amount: import("@feathersjs/typebox").TString<string>;
1840
2143
  stake_currency: import("@feathersjs/typebox").TString<string>;
1841
2144
  }>;
1842
- webhooksell: import("@feathersjs/typebox").TObject<{
2145
+ webhookexit: import("@feathersjs/typebox").TObject<{
1843
2146
  event: import("@feathersjs/typebox").TString<string>;
1844
2147
  traderId: import("@feathersjs/typebox").TAny;
1845
2148
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1854,10 +2157,10 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1854
2157
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1855
2158
  open_date: import("@feathersjs/typebox").TString<string>;
1856
2159
  close_date: import("@feathersjs/typebox").TString<string>;
1857
- sell_reason: import("@feathersjs/typebox").TString<string>;
2160
+ exit_reason: import("@feathersjs/typebox").TString<string>;
1858
2161
  order_type: import("@feathersjs/typebox").TString<string>;
1859
2162
  }>;
1860
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
2163
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
1861
2164
  event: import("@feathersjs/typebox").TString<string>;
1862
2165
  traderId: import("@feathersjs/typebox").TAny;
1863
2166
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1867,7 +2170,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1867
2170
  stake_currency: import("@feathersjs/typebox").TString<string>;
1868
2171
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1869
2172
  }>;
1870
- webhooksellfill: import("@feathersjs/typebox").TObject<{
2173
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
1871
2174
  event: import("@feathersjs/typebox").TString<string>;
1872
2175
  traderId: import("@feathersjs/typebox").TAny;
1873
2176
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1901,6 +2204,41 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1901
2204
  username: import("@feathersjs/typebox").TString<string>;
1902
2205
  password: import("@feathersjs/typebox").TString<string>;
1903
2206
  }>;
2207
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2208
+ enabled: import("@feathersjs/typebox").TBoolean;
2209
+ token: import("@feathersjs/typebox").TString<string>;
2210
+ chat_id: import("@feathersjs/typebox").TAny;
2211
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
2212
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2213
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
2214
+ notification_settings: import("@feathersjs/typebox").TObject<{
2215
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2216
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2217
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2218
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2219
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2220
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2221
+ exit: import("@feathersjs/typebox").TObject<{
2222
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2223
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2224
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2225
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2226
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2227
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2228
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2229
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2230
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2231
+ }>;
2232
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2233
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2234
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2235
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2236
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2237
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
2238
+ }>;
2239
+ reload: import("@feathersjs/typebox").TBoolean;
2240
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
2241
+ }>>;
1904
2242
  pod: import("@feathersjs/typebox").TString<string>;
1905
2243
  host: import("@feathersjs/typebox").TString<string>;
1906
2244
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1958,7 +2296,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1958
2296
  traderId: import("@feathersjs/typebox").TAny;
1959
2297
  userId: import("@feathersjs/typebox").TString<string>;
1960
2298
  }>;
1961
- webhookbuy: import("@feathersjs/typebox").TObject<{
2299
+ webhookentry: import("@feathersjs/typebox").TObject<{
1962
2300
  event: import("@feathersjs/typebox").TString<string>;
1963
2301
  traderId: import("@feathersjs/typebox").TAny;
1964
2302
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1968,7 +2306,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1968
2306
  stake_currency: import("@feathersjs/typebox").TString<string>;
1969
2307
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1970
2308
  }>;
1971
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
2309
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
1972
2310
  event: import("@feathersjs/typebox").TString<string>;
1973
2311
  traderId: import("@feathersjs/typebox").TAny;
1974
2312
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1978,7 +2316,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1978
2316
  stake_currency: import("@feathersjs/typebox").TString<string>;
1979
2317
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1980
2318
  }>;
1981
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
2319
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
1982
2320
  event: import("@feathersjs/typebox").TString<string>;
1983
2321
  userId: import("@feathersjs/typebox").TString<string>;
1984
2322
  traderId: import("@feathersjs/typebox").TAny;
@@ -1990,7 +2328,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
1990
2328
  stake_amount: import("@feathersjs/typebox").TString<string>;
1991
2329
  stake_currency: import("@feathersjs/typebox").TString<string>;
1992
2330
  }>;
1993
- webhooksell: import("@feathersjs/typebox").TObject<{
2331
+ webhookexit: import("@feathersjs/typebox").TObject<{
1994
2332
  event: import("@feathersjs/typebox").TString<string>;
1995
2333
  traderId: import("@feathersjs/typebox").TAny;
1996
2334
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2005,10 +2343,10 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2005
2343
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2006
2344
  open_date: import("@feathersjs/typebox").TString<string>;
2007
2345
  close_date: import("@feathersjs/typebox").TString<string>;
2008
- sell_reason: import("@feathersjs/typebox").TString<string>;
2346
+ exit_reason: import("@feathersjs/typebox").TString<string>;
2009
2347
  order_type: import("@feathersjs/typebox").TString<string>;
2010
2348
  }>;
2011
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
2349
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
2012
2350
  event: import("@feathersjs/typebox").TString<string>;
2013
2351
  traderId: import("@feathersjs/typebox").TAny;
2014
2352
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2018,7 +2356,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2018
2356
  stake_currency: import("@feathersjs/typebox").TString<string>;
2019
2357
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2020
2358
  }>;
2021
- webhooksellfill: import("@feathersjs/typebox").TObject<{
2359
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
2022
2360
  event: import("@feathersjs/typebox").TString<string>;
2023
2361
  traderId: import("@feathersjs/typebox").TAny;
2024
2362
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2052,6 +2390,41 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2052
2390
  username: import("@feathersjs/typebox").TString<string>;
2053
2391
  password: import("@feathersjs/typebox").TString<string>;
2054
2392
  }>;
2393
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2394
+ enabled: import("@feathersjs/typebox").TBoolean;
2395
+ token: import("@feathersjs/typebox").TString<string>;
2396
+ chat_id: import("@feathersjs/typebox").TAny;
2397
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
2398
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2399
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
2400
+ notification_settings: import("@feathersjs/typebox").TObject<{
2401
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2402
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2403
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2404
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2405
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2406
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2407
+ exit: import("@feathersjs/typebox").TObject<{
2408
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2409
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2410
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2411
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2412
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2413
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2414
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2415
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2416
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2417
+ }>;
2418
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2419
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2420
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2421
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2422
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2423
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
2424
+ }>;
2425
+ reload: import("@feathersjs/typebox").TBoolean;
2426
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
2427
+ }>>;
2055
2428
  pod: import("@feathersjs/typebox").TString<string>;
2056
2429
  host: import("@feathersjs/typebox").TString<string>;
2057
2430
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2090,13 +2463,9 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2090
2463
  left: import("@feathersjs/typebox").TString<string>;
2091
2464
  right: import("@feathersjs/typebox").TString<string>;
2092
2465
  }>>>;
2093
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
2094
- left: import("@feathersjs/typebox").TString<string>;
2095
- right: import("@feathersjs/typebox").TString<string>;
2096
- }>>>;
2466
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
2097
2467
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2098
2468
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2099
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2100
2469
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2101
2470
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2102
2471
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -2219,7 +2588,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2219
2588
  traderId: import("@feathersjs/typebox").TAny;
2220
2589
  userId: import("@feathersjs/typebox").TString<string>;
2221
2590
  }>;
2222
- webhookbuy: import("@feathersjs/typebox").TObject<{
2591
+ webhookentry: import("@feathersjs/typebox").TObject<{
2223
2592
  event: import("@feathersjs/typebox").TString<string>;
2224
2593
  traderId: import("@feathersjs/typebox").TAny;
2225
2594
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2229,7 +2598,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2229
2598
  stake_currency: import("@feathersjs/typebox").TString<string>;
2230
2599
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2231
2600
  }>;
2232
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
2601
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
2233
2602
  event: import("@feathersjs/typebox").TString<string>;
2234
2603
  traderId: import("@feathersjs/typebox").TAny;
2235
2604
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2239,7 +2608,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2239
2608
  stake_currency: import("@feathersjs/typebox").TString<string>;
2240
2609
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2241
2610
  }>;
2242
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
2611
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
2243
2612
  event: import("@feathersjs/typebox").TString<string>;
2244
2613
  userId: import("@feathersjs/typebox").TString<string>;
2245
2614
  traderId: import("@feathersjs/typebox").TAny;
@@ -2251,7 +2620,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2251
2620
  stake_amount: import("@feathersjs/typebox").TString<string>;
2252
2621
  stake_currency: import("@feathersjs/typebox").TString<string>;
2253
2622
  }>;
2254
- webhooksell: import("@feathersjs/typebox").TObject<{
2623
+ webhookexit: import("@feathersjs/typebox").TObject<{
2255
2624
  event: import("@feathersjs/typebox").TString<string>;
2256
2625
  traderId: import("@feathersjs/typebox").TAny;
2257
2626
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2266,10 +2635,10 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2266
2635
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2267
2636
  open_date: import("@feathersjs/typebox").TString<string>;
2268
2637
  close_date: import("@feathersjs/typebox").TString<string>;
2269
- sell_reason: import("@feathersjs/typebox").TString<string>;
2638
+ exit_reason: import("@feathersjs/typebox").TString<string>;
2270
2639
  order_type: import("@feathersjs/typebox").TString<string>;
2271
2640
  }>;
2272
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
2641
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
2273
2642
  event: import("@feathersjs/typebox").TString<string>;
2274
2643
  traderId: import("@feathersjs/typebox").TAny;
2275
2644
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2279,7 +2648,7 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2279
2648
  stake_currency: import("@feathersjs/typebox").TString<string>;
2280
2649
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2281
2650
  }>;
2282
- webhooksellfill: import("@feathersjs/typebox").TObject<{
2651
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
2283
2652
  event: import("@feathersjs/typebox").TString<string>;
2284
2653
  traderId: import("@feathersjs/typebox").TAny;
2285
2654
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2313,6 +2682,41 @@ export declare const tradersPodsApiDataSchema: import("@feathersjs/typebox").TPi
2313
2682
  username: import("@feathersjs/typebox").TString<string>;
2314
2683
  password: import("@feathersjs/typebox").TString<string>;
2315
2684
  }>;
2685
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2686
+ enabled: import("@feathersjs/typebox").TBoolean;
2687
+ token: import("@feathersjs/typebox").TString<string>;
2688
+ chat_id: import("@feathersjs/typebox").TAny;
2689
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
2690
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2691
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
2692
+ notification_settings: import("@feathersjs/typebox").TObject<{
2693
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2694
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2695
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2696
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2697
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2698
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2699
+ exit: import("@feathersjs/typebox").TObject<{
2700
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2701
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2702
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2703
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2704
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2705
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2706
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2707
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2708
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2709
+ }>;
2710
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2711
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2712
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2713
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2714
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2715
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
2716
+ }>;
2717
+ reload: import("@feathersjs/typebox").TBoolean;
2718
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
2719
+ }>>;
2316
2720
  pod: import("@feathersjs/typebox").TString<string>;
2317
2721
  host: import("@feathersjs/typebox").TString<string>;
2318
2722
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2356,13 +2760,13 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2356
2760
  name?: any;
2357
2761
  apiKey?: string | undefined;
2358
2762
  secret?: string | undefined;
2359
- key?: string | undefined;
2360
2763
  avatar?: any;
2361
2764
  createdAt?: any;
2362
2765
  updatedAt?: any;
2363
2766
  userId?: string | {} | undefined;
2364
2767
  which?: string | undefined;
2365
2768
  connected?: boolean | undefined;
2769
+ token?: string | undefined;
2366
2770
  downloaded?: {
2367
2771
  updatedAt: any;
2368
2772
  size: string;
@@ -2388,10 +2792,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2388
2792
  left: string;
2389
2793
  right: string;
2390
2794
  }[] | undefined;
2391
- whitelist?: {
2392
- left: string;
2393
- right: string;
2394
- }[] | undefined;
2795
+ whitelist?: any[] | undefined;
2395
2796
  ccxt_async_config?: any;
2396
2797
  requiredCredentials?: any;
2397
2798
  uid?: string | undefined;
@@ -2399,23 +2800,47 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2399
2800
  twofa?: string | undefined;
2400
2801
  privateKey?: string | undefined;
2401
2802
  walletAddress?: string | undefined;
2402
- token?: string | undefined;
2403
2803
  __v?: any;
2404
2804
  _id: string | {};
2405
2805
  }>;
2406
2806
  strategy: Partial<{
2407
2807
  _id?: string | {} | undefined;
2408
- createdAt?: any;
2409
- updatedAt?: any;
2410
- 'strategies/templates'?: {
2411
- _id?: string | {} | undefined;
2412
- values: any;
2413
- name: string;
2414
- createdAt: any;
2415
- description: string;
2416
- type: string;
2417
- } | undefined;
2418
2808
  traders?: {
2809
+ telegram?: {
2810
+ access_hash?: string | null | undefined;
2811
+ invite_link?: string | undefined;
2812
+ enabled: boolean;
2813
+ token: string;
2814
+ chat_id: any;
2815
+ allow_custom_messages: boolean;
2816
+ notification_settings: {
2817
+ status: "silent" | "on" | "off";
2818
+ entry: "silent" | "on" | "off";
2819
+ exit: {
2820
+ roi: "silent" | "on" | "off";
2821
+ emergency_exit: "silent" | "on" | "off";
2822
+ force_exit: "silent" | "on" | "off";
2823
+ exit_signal: "silent" | "on" | "off";
2824
+ trailing_stop_loss: "silent" | "on" | "off";
2825
+ stop_loss: "silent" | "on" | "off";
2826
+ stoploss_on_exchange: "silent" | "on" | "off";
2827
+ custom_exit: "silent" | "on" | "off";
2828
+ partial_exit: "silent" | "on" | "off";
2829
+ };
2830
+ warning: "silent" | "on" | "off";
2831
+ startup: "silent" | "on" | "off";
2832
+ entry_fill: "silent" | "on" | "off";
2833
+ entry_cancel: "silent" | "on" | "off";
2834
+ exit_cancel: "silent" | "on" | "off";
2835
+ exit_fill: "silent" | "on" | "off";
2836
+ protection_trigger: "silent" | "on" | "off";
2837
+ protection_trigger_global: "silent" | "on" | "off";
2838
+ strategy_msg: "silent" | "on" | "off";
2839
+ show_candle: "off" | "ohlc";
2840
+ };
2841
+ reload: boolean;
2842
+ balance_dust_level: number;
2843
+ } | undefined;
2419
2844
  dry_run_wallet?: number | undefined;
2420
2845
  max_open_trades?: number | undefined;
2421
2846
  plugins?: {
@@ -2436,15 +2861,15 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2436
2861
  tradable_balance_ratio?: number | undefined;
2437
2862
  webhook?: {
2438
2863
  url: string;
2439
- format: string;
2440
2864
  enabled: boolean;
2865
+ format: string;
2441
2866
  webhookstatus: {
2442
2867
  traderId: any;
2443
2868
  event: string;
2444
2869
  status: string;
2445
2870
  userId: string;
2446
2871
  };
2447
- webhookbuy: {
2872
+ webhookentry: {
2448
2873
  limit: string;
2449
2874
  traderId: any;
2450
2875
  stake_amount: string;
@@ -2454,7 +2879,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2454
2879
  pair: string;
2455
2880
  fiat_currency: string;
2456
2881
  };
2457
- webhookbuycancel: {
2882
+ webhookentrycancel: {
2458
2883
  limit: string;
2459
2884
  traderId: any;
2460
2885
  stake_amount: string;
@@ -2464,7 +2889,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2464
2889
  pair: string;
2465
2890
  fiat_currency: string;
2466
2891
  };
2467
- webhookbuyfill: {
2892
+ webhookentryfill: {
2468
2893
  traderId: any;
2469
2894
  stake_amount: string;
2470
2895
  stake_currency: string;
@@ -2476,7 +2901,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2476
2901
  amount: string;
2477
2902
  open_date: string;
2478
2903
  };
2479
- webhooksell: {
2904
+ webhookexit: {
2480
2905
  limit: string;
2481
2906
  traderId: any;
2482
2907
  stake_currency: string;
@@ -2491,10 +2916,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2491
2916
  profit_amount: string;
2492
2917
  profit_ratio: string;
2493
2918
  close_date: string;
2494
- sell_reason: string;
2919
+ exit_reason: string;
2495
2920
  order_type: string;
2496
2921
  };
2497
- webhooksellcancel: {
2922
+ webhookexitcancel: {
2498
2923
  limit: string;
2499
2924
  traderId: any;
2500
2925
  stake_currency: string;
@@ -2504,7 +2929,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2504
2929
  profit_amount: string;
2505
2930
  profit_ratio: string;
2506
2931
  };
2507
- webhooksellfill: {
2932
+ webhookexitfill: {
2508
2933
  traderId: any;
2509
2934
  event: string;
2510
2935
  userId: string;
@@ -2563,6 +2988,16 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2563
2988
  };
2564
2989
  pod: string;
2565
2990
  }[] | undefined;
2991
+ createdAt?: any;
2992
+ updatedAt?: any;
2993
+ 'strategies/templates'?: {
2994
+ _id?: string | {} | undefined;
2995
+ values: any;
2996
+ name: string;
2997
+ createdAt: any;
2998
+ description: string;
2999
+ type: string;
3000
+ } | undefined;
2566
3001
  stoploss?: number | undefined;
2567
3002
  minimal_roi?: {
2568
3003
  minutes: number;
@@ -2581,10 +3016,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2581
3016
  stoploss?: string | undefined;
2582
3017
  entry?: "Limit" | "Market" | undefined;
2583
3018
  exit?: "Limit" | "Market" | undefined;
3019
+ stoploss_on_exchange?: boolean | undefined;
2584
3020
  emergencysell?: "Limit" | "Market" | undefined;
2585
3021
  forcebuy?: "Limit" | "Market" | undefined;
2586
3022
  forcesell?: "Limit" | "Market" | undefined;
2587
- stoploss_on_exchange?: boolean | undefined;
2588
3023
  stoploss_on_exchange_interval?: number | undefined;
2589
3024
  stoploss_on_exchange_limit_ratio?: number | undefined;
2590
3025
  } | undefined;
@@ -2622,6 +3057,41 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2622
3057
  }>;
2623
3058
  pod: any;
2624
3059
  trader: Partial<{
3060
+ telegram?: {
3061
+ access_hash?: string | null | undefined;
3062
+ invite_link?: string | undefined;
3063
+ enabled: boolean;
3064
+ token: string;
3065
+ chat_id: any;
3066
+ allow_custom_messages: boolean;
3067
+ notification_settings: {
3068
+ status: "silent" | "on" | "off";
3069
+ entry: "silent" | "on" | "off";
3070
+ exit: {
3071
+ roi: "silent" | "on" | "off";
3072
+ emergency_exit: "silent" | "on" | "off";
3073
+ force_exit: "silent" | "on" | "off";
3074
+ exit_signal: "silent" | "on" | "off";
3075
+ trailing_stop_loss: "silent" | "on" | "off";
3076
+ stop_loss: "silent" | "on" | "off";
3077
+ stoploss_on_exchange: "silent" | "on" | "off";
3078
+ custom_exit: "silent" | "on" | "off";
3079
+ partial_exit: "silent" | "on" | "off";
3080
+ };
3081
+ warning: "silent" | "on" | "off";
3082
+ startup: "silent" | "on" | "off";
3083
+ entry_fill: "silent" | "on" | "off";
3084
+ entry_cancel: "silent" | "on" | "off";
3085
+ exit_cancel: "silent" | "on" | "off";
3086
+ exit_fill: "silent" | "on" | "off";
3087
+ protection_trigger: "silent" | "on" | "off";
3088
+ protection_trigger_global: "silent" | "on" | "off";
3089
+ strategy_msg: "silent" | "on" | "off";
3090
+ show_candle: "off" | "ohlc";
3091
+ };
3092
+ reload: boolean;
3093
+ balance_dust_level: number;
3094
+ } | undefined;
2625
3095
  dry_run_wallet?: number | undefined;
2626
3096
  max_open_trades?: number | undefined;
2627
3097
  plugins?: {
@@ -2642,15 +3112,15 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2642
3112
  tradable_balance_ratio?: number | undefined;
2643
3113
  webhook?: {
2644
3114
  url: string;
2645
- format: string;
2646
3115
  enabled: boolean;
3116
+ format: string;
2647
3117
  webhookstatus: {
2648
3118
  traderId: any;
2649
3119
  event: string;
2650
3120
  status: string;
2651
3121
  userId: string;
2652
3122
  };
2653
- webhookbuy: {
3123
+ webhookentry: {
2654
3124
  limit: string;
2655
3125
  traderId: any;
2656
3126
  stake_amount: string;
@@ -2660,7 +3130,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2660
3130
  pair: string;
2661
3131
  fiat_currency: string;
2662
3132
  };
2663
- webhookbuycancel: {
3133
+ webhookentrycancel: {
2664
3134
  limit: string;
2665
3135
  traderId: any;
2666
3136
  stake_amount: string;
@@ -2670,7 +3140,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2670
3140
  pair: string;
2671
3141
  fiat_currency: string;
2672
3142
  };
2673
- webhookbuyfill: {
3143
+ webhookentryfill: {
2674
3144
  traderId: any;
2675
3145
  stake_amount: string;
2676
3146
  stake_currency: string;
@@ -2682,7 +3152,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2682
3152
  amount: string;
2683
3153
  open_date: string;
2684
3154
  };
2685
- webhooksell: {
3155
+ webhookexit: {
2686
3156
  limit: string;
2687
3157
  traderId: any;
2688
3158
  stake_currency: string;
@@ -2697,10 +3167,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2697
3167
  profit_amount: string;
2698
3168
  profit_ratio: string;
2699
3169
  close_date: string;
2700
- sell_reason: string;
3170
+ exit_reason: string;
2701
3171
  order_type: string;
2702
3172
  };
2703
- webhooksellcancel: {
3173
+ webhookexitcancel: {
2704
3174
  limit: string;
2705
3175
  traderId: any;
2706
3176
  stake_currency: string;
@@ -2710,7 +3180,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2710
3180
  profit_amount: string;
2711
3181
  profit_ratio: string;
2712
3182
  };
2713
- webhooksellfill: {
3183
+ webhookexitfill: {
2714
3184
  traderId: any;
2715
3185
  event: string;
2716
3186
  userId: string;
@@ -2771,6 +3241,41 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2771
3241
  }>;
2772
3242
  }> | undefined;
2773
3243
  trader?: Partial<{
3244
+ telegram?: {
3245
+ access_hash?: string | null | undefined;
3246
+ invite_link?: string | undefined;
3247
+ enabled: boolean;
3248
+ token: string;
3249
+ chat_id: any;
3250
+ allow_custom_messages: boolean;
3251
+ notification_settings: {
3252
+ status: "silent" | "on" | "off";
3253
+ entry: "silent" | "on" | "off";
3254
+ exit: {
3255
+ roi: "silent" | "on" | "off";
3256
+ emergency_exit: "silent" | "on" | "off";
3257
+ force_exit: "silent" | "on" | "off";
3258
+ exit_signal: "silent" | "on" | "off";
3259
+ trailing_stop_loss: "silent" | "on" | "off";
3260
+ stop_loss: "silent" | "on" | "off";
3261
+ stoploss_on_exchange: "silent" | "on" | "off";
3262
+ custom_exit: "silent" | "on" | "off";
3263
+ partial_exit: "silent" | "on" | "off";
3264
+ };
3265
+ warning: "silent" | "on" | "off";
3266
+ startup: "silent" | "on" | "off";
3267
+ entry_fill: "silent" | "on" | "off";
3268
+ entry_cancel: "silent" | "on" | "off";
3269
+ exit_cancel: "silent" | "on" | "off";
3270
+ exit_fill: "silent" | "on" | "off";
3271
+ protection_trigger: "silent" | "on" | "off";
3272
+ protection_trigger_global: "silent" | "on" | "off";
3273
+ strategy_msg: "silent" | "on" | "off";
3274
+ show_candle: "off" | "ohlc";
3275
+ };
3276
+ reload: boolean;
3277
+ balance_dust_level: number;
3278
+ } | undefined;
2774
3279
  dry_run_wallet?: number | undefined;
2775
3280
  max_open_trades?: number | undefined;
2776
3281
  plugins?: {
@@ -2791,15 +3296,15 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2791
3296
  tradable_balance_ratio?: number | undefined;
2792
3297
  webhook?: {
2793
3298
  url: string;
2794
- format: string;
2795
3299
  enabled: boolean;
3300
+ format: string;
2796
3301
  webhookstatus: {
2797
3302
  traderId: any;
2798
3303
  event: string;
2799
3304
  status: string;
2800
3305
  userId: string;
2801
3306
  };
2802
- webhookbuy: {
3307
+ webhookentry: {
2803
3308
  limit: string;
2804
3309
  traderId: any;
2805
3310
  stake_amount: string;
@@ -2809,7 +3314,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2809
3314
  pair: string;
2810
3315
  fiat_currency: string;
2811
3316
  };
2812
- webhookbuycancel: {
3317
+ webhookentrycancel: {
2813
3318
  limit: string;
2814
3319
  traderId: any;
2815
3320
  stake_amount: string;
@@ -2819,7 +3324,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2819
3324
  pair: string;
2820
3325
  fiat_currency: string;
2821
3326
  };
2822
- webhookbuyfill: {
3327
+ webhookentryfill: {
2823
3328
  traderId: any;
2824
3329
  stake_amount: string;
2825
3330
  stake_currency: string;
@@ -2831,7 +3336,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2831
3336
  amount: string;
2832
3337
  open_date: string;
2833
3338
  };
2834
- webhooksell: {
3339
+ webhookexit: {
2835
3340
  limit: string;
2836
3341
  traderId: any;
2837
3342
  stake_currency: string;
@@ -2846,10 +3351,10 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2846
3351
  profit_amount: string;
2847
3352
  profit_ratio: string;
2848
3353
  close_date: string;
2849
- sell_reason: string;
3354
+ exit_reason: string;
2850
3355
  order_type: string;
2851
3356
  };
2852
- webhooksellcancel: {
3357
+ webhookexitcancel: {
2853
3358
  limit: string;
2854
3359
  traderId: any;
2855
3360
  stake_currency: string;
@@ -2859,7 +3364,7 @@ export declare const tradersPodsApiDataResolver: import("@feathersjs/schema").Re
2859
3364
  profit_amount: string;
2860
3365
  profit_ratio: string;
2861
3366
  };
2862
- webhooksellfill: {
3367
+ webhookexitfill: {
2863
3368
  traderId: any;
2864
3369
  event: string;
2865
3370
  userId: string;
@@ -2977,7 +3482,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
2977
3482
  traderId: import("@feathersjs/typebox").TAny;
2978
3483
  userId: import("@feathersjs/typebox").TString<string>;
2979
3484
  }>;
2980
- webhookbuy: import("@feathersjs/typebox").TObject<{
3485
+ webhookentry: import("@feathersjs/typebox").TObject<{
2981
3486
  event: import("@feathersjs/typebox").TString<string>;
2982
3487
  traderId: import("@feathersjs/typebox").TAny;
2983
3488
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2987,7 +3492,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
2987
3492
  stake_currency: import("@feathersjs/typebox").TString<string>;
2988
3493
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2989
3494
  }>;
2990
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
3495
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
2991
3496
  event: import("@feathersjs/typebox").TString<string>;
2992
3497
  traderId: import("@feathersjs/typebox").TAny;
2993
3498
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2997,7 +3502,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
2997
3502
  stake_currency: import("@feathersjs/typebox").TString<string>;
2998
3503
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2999
3504
  }>;
3000
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
3505
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
3001
3506
  event: import("@feathersjs/typebox").TString<string>;
3002
3507
  userId: import("@feathersjs/typebox").TString<string>;
3003
3508
  traderId: import("@feathersjs/typebox").TAny;
@@ -3009,7 +3514,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3009
3514
  stake_amount: import("@feathersjs/typebox").TString<string>;
3010
3515
  stake_currency: import("@feathersjs/typebox").TString<string>;
3011
3516
  }>;
3012
- webhooksell: import("@feathersjs/typebox").TObject<{
3517
+ webhookexit: import("@feathersjs/typebox").TObject<{
3013
3518
  event: import("@feathersjs/typebox").TString<string>;
3014
3519
  traderId: import("@feathersjs/typebox").TAny;
3015
3520
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3024,10 +3529,10 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3024
3529
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3025
3530
  open_date: import("@feathersjs/typebox").TString<string>;
3026
3531
  close_date: import("@feathersjs/typebox").TString<string>;
3027
- sell_reason: import("@feathersjs/typebox").TString<string>;
3532
+ exit_reason: import("@feathersjs/typebox").TString<string>;
3028
3533
  order_type: import("@feathersjs/typebox").TString<string>;
3029
3534
  }>;
3030
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
3535
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
3031
3536
  event: import("@feathersjs/typebox").TString<string>;
3032
3537
  traderId: import("@feathersjs/typebox").TAny;
3033
3538
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3037,7 +3542,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3037
3542
  stake_currency: import("@feathersjs/typebox").TString<string>;
3038
3543
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3039
3544
  }>;
3040
- webhooksellfill: import("@feathersjs/typebox").TObject<{
3545
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
3041
3546
  event: import("@feathersjs/typebox").TString<string>;
3042
3547
  traderId: import("@feathersjs/typebox").TAny;
3043
3548
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3071,6 +3576,41 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3071
3576
  username: import("@feathersjs/typebox").TString<string>;
3072
3577
  password: import("@feathersjs/typebox").TString<string>;
3073
3578
  }>;
3579
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
3580
+ enabled: import("@feathersjs/typebox").TBoolean;
3581
+ token: import("@feathersjs/typebox").TString<string>;
3582
+ chat_id: import("@feathersjs/typebox").TAny;
3583
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
3584
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3585
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
3586
+ notification_settings: import("@feathersjs/typebox").TObject<{
3587
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3588
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3589
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3590
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3591
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3592
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3593
+ exit: import("@feathersjs/typebox").TObject<{
3594
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3595
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3596
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3597
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3598
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3599
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3600
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3601
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3602
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3603
+ }>;
3604
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3605
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3606
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3607
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3608
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3609
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
3610
+ }>;
3611
+ reload: import("@feathersjs/typebox").TBoolean;
3612
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
3613
+ }>>;
3074
3614
  pod: import("@feathersjs/typebox").TString<string>;
3075
3615
  host: import("@feathersjs/typebox").TString<string>;
3076
3616
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -3128,7 +3668,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3128
3668
  traderId: import("@feathersjs/typebox").TAny;
3129
3669
  userId: import("@feathersjs/typebox").TString<string>;
3130
3670
  }>;
3131
- webhookbuy: import("@feathersjs/typebox").TObject<{
3671
+ webhookentry: import("@feathersjs/typebox").TObject<{
3132
3672
  event: import("@feathersjs/typebox").TString<string>;
3133
3673
  traderId: import("@feathersjs/typebox").TAny;
3134
3674
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3138,7 +3678,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3138
3678
  stake_currency: import("@feathersjs/typebox").TString<string>;
3139
3679
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3140
3680
  }>;
3141
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
3681
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
3142
3682
  event: import("@feathersjs/typebox").TString<string>;
3143
3683
  traderId: import("@feathersjs/typebox").TAny;
3144
3684
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3148,7 +3688,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3148
3688
  stake_currency: import("@feathersjs/typebox").TString<string>;
3149
3689
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3150
3690
  }>;
3151
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
3691
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
3152
3692
  event: import("@feathersjs/typebox").TString<string>;
3153
3693
  userId: import("@feathersjs/typebox").TString<string>;
3154
3694
  traderId: import("@feathersjs/typebox").TAny;
@@ -3160,7 +3700,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3160
3700
  stake_amount: import("@feathersjs/typebox").TString<string>;
3161
3701
  stake_currency: import("@feathersjs/typebox").TString<string>;
3162
3702
  }>;
3163
- webhooksell: import("@feathersjs/typebox").TObject<{
3703
+ webhookexit: import("@feathersjs/typebox").TObject<{
3164
3704
  event: import("@feathersjs/typebox").TString<string>;
3165
3705
  traderId: import("@feathersjs/typebox").TAny;
3166
3706
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3175,10 +3715,10 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3175
3715
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3176
3716
  open_date: import("@feathersjs/typebox").TString<string>;
3177
3717
  close_date: import("@feathersjs/typebox").TString<string>;
3178
- sell_reason: import("@feathersjs/typebox").TString<string>;
3718
+ exit_reason: import("@feathersjs/typebox").TString<string>;
3179
3719
  order_type: import("@feathersjs/typebox").TString<string>;
3180
3720
  }>;
3181
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
3721
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
3182
3722
  event: import("@feathersjs/typebox").TString<string>;
3183
3723
  traderId: import("@feathersjs/typebox").TAny;
3184
3724
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3188,7 +3728,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3188
3728
  stake_currency: import("@feathersjs/typebox").TString<string>;
3189
3729
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3190
3730
  }>;
3191
- webhooksellfill: import("@feathersjs/typebox").TObject<{
3731
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
3192
3732
  event: import("@feathersjs/typebox").TString<string>;
3193
3733
  traderId: import("@feathersjs/typebox").TAny;
3194
3734
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3222,6 +3762,41 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3222
3762
  username: import("@feathersjs/typebox").TString<string>;
3223
3763
  password: import("@feathersjs/typebox").TString<string>;
3224
3764
  }>;
3765
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
3766
+ enabled: import("@feathersjs/typebox").TBoolean;
3767
+ token: import("@feathersjs/typebox").TString<string>;
3768
+ chat_id: import("@feathersjs/typebox").TAny;
3769
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
3770
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3771
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
3772
+ notification_settings: import("@feathersjs/typebox").TObject<{
3773
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3774
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3775
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3776
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3777
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3778
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3779
+ exit: import("@feathersjs/typebox").TObject<{
3780
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3781
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3782
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3783
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3784
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3785
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3786
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3787
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3788
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3789
+ }>;
3790
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3791
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3792
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3793
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3794
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3795
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
3796
+ }>;
3797
+ reload: import("@feathersjs/typebox").TBoolean;
3798
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
3799
+ }>>;
3225
3800
  pod: import("@feathersjs/typebox").TString<string>;
3226
3801
  host: import("@feathersjs/typebox").TString<string>;
3227
3802
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -3260,13 +3835,9 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3260
3835
  left: import("@feathersjs/typebox").TString<string>;
3261
3836
  right: import("@feathersjs/typebox").TString<string>;
3262
3837
  }>>>;
3263
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
3264
- left: import("@feathersjs/typebox").TString<string>;
3265
- right: import("@feathersjs/typebox").TString<string>;
3266
- }>>>;
3838
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
3267
3839
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3268
3840
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3269
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3270
3841
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3271
3842
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3272
3843
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -3389,7 +3960,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3389
3960
  traderId: import("@feathersjs/typebox").TAny;
3390
3961
  userId: import("@feathersjs/typebox").TString<string>;
3391
3962
  }>;
3392
- webhookbuy: import("@feathersjs/typebox").TObject<{
3963
+ webhookentry: import("@feathersjs/typebox").TObject<{
3393
3964
  event: import("@feathersjs/typebox").TString<string>;
3394
3965
  traderId: import("@feathersjs/typebox").TAny;
3395
3966
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3399,7 +3970,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3399
3970
  stake_currency: import("@feathersjs/typebox").TString<string>;
3400
3971
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3401
3972
  }>;
3402
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
3973
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
3403
3974
  event: import("@feathersjs/typebox").TString<string>;
3404
3975
  traderId: import("@feathersjs/typebox").TAny;
3405
3976
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3409,7 +3980,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3409
3980
  stake_currency: import("@feathersjs/typebox").TString<string>;
3410
3981
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3411
3982
  }>;
3412
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
3983
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
3413
3984
  event: import("@feathersjs/typebox").TString<string>;
3414
3985
  userId: import("@feathersjs/typebox").TString<string>;
3415
3986
  traderId: import("@feathersjs/typebox").TAny;
@@ -3421,7 +3992,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3421
3992
  stake_amount: import("@feathersjs/typebox").TString<string>;
3422
3993
  stake_currency: import("@feathersjs/typebox").TString<string>;
3423
3994
  }>;
3424
- webhooksell: import("@feathersjs/typebox").TObject<{
3995
+ webhookexit: import("@feathersjs/typebox").TObject<{
3425
3996
  event: import("@feathersjs/typebox").TString<string>;
3426
3997
  traderId: import("@feathersjs/typebox").TAny;
3427
3998
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3436,10 +4007,10 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3436
4007
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3437
4008
  open_date: import("@feathersjs/typebox").TString<string>;
3438
4009
  close_date: import("@feathersjs/typebox").TString<string>;
3439
- sell_reason: import("@feathersjs/typebox").TString<string>;
4010
+ exit_reason: import("@feathersjs/typebox").TString<string>;
3440
4011
  order_type: import("@feathersjs/typebox").TString<string>;
3441
4012
  }>;
3442
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
4013
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
3443
4014
  event: import("@feathersjs/typebox").TString<string>;
3444
4015
  traderId: import("@feathersjs/typebox").TAny;
3445
4016
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3449,7 +4020,7 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3449
4020
  stake_currency: import("@feathersjs/typebox").TString<string>;
3450
4021
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3451
4022
  }>;
3452
- webhooksellfill: import("@feathersjs/typebox").TObject<{
4023
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
3453
4024
  event: import("@feathersjs/typebox").TString<string>;
3454
4025
  traderId: import("@feathersjs/typebox").TAny;
3455
4026
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3483,6 +4054,41 @@ export declare const tradersPodsApiPatchSchema: import("@feathersjs/typebox").TP
3483
4054
  username: import("@feathersjs/typebox").TString<string>;
3484
4055
  password: import("@feathersjs/typebox").TString<string>;
3485
4056
  }>;
4057
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
4058
+ enabled: import("@feathersjs/typebox").TBoolean;
4059
+ token: import("@feathersjs/typebox").TString<string>;
4060
+ chat_id: import("@feathersjs/typebox").TAny;
4061
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
4062
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4063
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
4064
+ notification_settings: import("@feathersjs/typebox").TObject<{
4065
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4066
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4067
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4068
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4069
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4070
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4071
+ exit: import("@feathersjs/typebox").TObject<{
4072
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4073
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4074
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4075
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4076
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4077
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4078
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4079
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4080
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4081
+ }>;
4082
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4083
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4084
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4085
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4086
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4087
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
4088
+ }>;
4089
+ reload: import("@feathersjs/typebox").TBoolean;
4090
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
4091
+ }>>;
3486
4092
  pod: import("@feathersjs/typebox").TString<string>;
3487
4093
  host: import("@feathersjs/typebox").TString<string>;
3488
4094
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -3526,13 +4132,13 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3526
4132
  name?: any;
3527
4133
  apiKey?: string | undefined;
3528
4134
  secret?: string | undefined;
3529
- key?: string | undefined;
3530
4135
  avatar?: any;
3531
4136
  createdAt?: any;
3532
4137
  updatedAt?: any;
3533
4138
  userId?: string | {} | undefined;
3534
4139
  which?: string | undefined;
3535
4140
  connected?: boolean | undefined;
4141
+ token?: string | undefined;
3536
4142
  downloaded?: {
3537
4143
  updatedAt: any;
3538
4144
  size: string;
@@ -3558,10 +4164,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3558
4164
  left: string;
3559
4165
  right: string;
3560
4166
  }[] | undefined;
3561
- whitelist?: {
3562
- left: string;
3563
- right: string;
3564
- }[] | undefined;
4167
+ whitelist?: any[] | undefined;
3565
4168
  ccxt_async_config?: any;
3566
4169
  requiredCredentials?: any;
3567
4170
  uid?: string | undefined;
@@ -3569,23 +4172,47 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3569
4172
  twofa?: string | undefined;
3570
4173
  privateKey?: string | undefined;
3571
4174
  walletAddress?: string | undefined;
3572
- token?: string | undefined;
3573
4175
  __v?: any;
3574
4176
  _id: string | {};
3575
4177
  }>;
3576
4178
  strategy: Partial<{
3577
4179
  _id?: string | {} | undefined;
3578
- createdAt?: any;
3579
- updatedAt?: any;
3580
- 'strategies/templates'?: {
3581
- _id?: string | {} | undefined;
3582
- values: any;
3583
- name: string;
3584
- createdAt: any;
3585
- description: string;
3586
- type: string;
3587
- } | undefined;
3588
4180
  traders?: {
4181
+ telegram?: {
4182
+ access_hash?: string | null | undefined;
4183
+ invite_link?: string | undefined;
4184
+ enabled: boolean;
4185
+ token: string;
4186
+ chat_id: any;
4187
+ allow_custom_messages: boolean;
4188
+ notification_settings: {
4189
+ status: "silent" | "on" | "off";
4190
+ entry: "silent" | "on" | "off";
4191
+ exit: {
4192
+ roi: "silent" | "on" | "off";
4193
+ emergency_exit: "silent" | "on" | "off";
4194
+ force_exit: "silent" | "on" | "off";
4195
+ exit_signal: "silent" | "on" | "off";
4196
+ trailing_stop_loss: "silent" | "on" | "off";
4197
+ stop_loss: "silent" | "on" | "off";
4198
+ stoploss_on_exchange: "silent" | "on" | "off";
4199
+ custom_exit: "silent" | "on" | "off";
4200
+ partial_exit: "silent" | "on" | "off";
4201
+ };
4202
+ warning: "silent" | "on" | "off";
4203
+ startup: "silent" | "on" | "off";
4204
+ entry_fill: "silent" | "on" | "off";
4205
+ entry_cancel: "silent" | "on" | "off";
4206
+ exit_cancel: "silent" | "on" | "off";
4207
+ exit_fill: "silent" | "on" | "off";
4208
+ protection_trigger: "silent" | "on" | "off";
4209
+ protection_trigger_global: "silent" | "on" | "off";
4210
+ strategy_msg: "silent" | "on" | "off";
4211
+ show_candle: "off" | "ohlc";
4212
+ };
4213
+ reload: boolean;
4214
+ balance_dust_level: number;
4215
+ } | undefined;
3589
4216
  dry_run_wallet?: number | undefined;
3590
4217
  max_open_trades?: number | undefined;
3591
4218
  plugins?: {
@@ -3606,15 +4233,15 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3606
4233
  tradable_balance_ratio?: number | undefined;
3607
4234
  webhook?: {
3608
4235
  url: string;
3609
- format: string;
3610
4236
  enabled: boolean;
4237
+ format: string;
3611
4238
  webhookstatus: {
3612
4239
  traderId: any;
3613
4240
  event: string;
3614
4241
  status: string;
3615
4242
  userId: string;
3616
4243
  };
3617
- webhookbuy: {
4244
+ webhookentry: {
3618
4245
  limit: string;
3619
4246
  traderId: any;
3620
4247
  stake_amount: string;
@@ -3624,7 +4251,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3624
4251
  pair: string;
3625
4252
  fiat_currency: string;
3626
4253
  };
3627
- webhookbuycancel: {
4254
+ webhookentrycancel: {
3628
4255
  limit: string;
3629
4256
  traderId: any;
3630
4257
  stake_amount: string;
@@ -3634,7 +4261,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3634
4261
  pair: string;
3635
4262
  fiat_currency: string;
3636
4263
  };
3637
- webhookbuyfill: {
4264
+ webhookentryfill: {
3638
4265
  traderId: any;
3639
4266
  stake_amount: string;
3640
4267
  stake_currency: string;
@@ -3646,7 +4273,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3646
4273
  amount: string;
3647
4274
  open_date: string;
3648
4275
  };
3649
- webhooksell: {
4276
+ webhookexit: {
3650
4277
  limit: string;
3651
4278
  traderId: any;
3652
4279
  stake_currency: string;
@@ -3661,10 +4288,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3661
4288
  profit_amount: string;
3662
4289
  profit_ratio: string;
3663
4290
  close_date: string;
3664
- sell_reason: string;
4291
+ exit_reason: string;
3665
4292
  order_type: string;
3666
4293
  };
3667
- webhooksellcancel: {
4294
+ webhookexitcancel: {
3668
4295
  limit: string;
3669
4296
  traderId: any;
3670
4297
  stake_currency: string;
@@ -3674,7 +4301,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3674
4301
  profit_amount: string;
3675
4302
  profit_ratio: string;
3676
4303
  };
3677
- webhooksellfill: {
4304
+ webhookexitfill: {
3678
4305
  traderId: any;
3679
4306
  event: string;
3680
4307
  userId: string;
@@ -3733,6 +4360,16 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3733
4360
  };
3734
4361
  pod: string;
3735
4362
  }[] | undefined;
4363
+ createdAt?: any;
4364
+ updatedAt?: any;
4365
+ 'strategies/templates'?: {
4366
+ _id?: string | {} | undefined;
4367
+ values: any;
4368
+ name: string;
4369
+ createdAt: any;
4370
+ description: string;
4371
+ type: string;
4372
+ } | undefined;
3736
4373
  stoploss?: number | undefined;
3737
4374
  minimal_roi?: {
3738
4375
  minutes: number;
@@ -3751,10 +4388,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3751
4388
  stoploss?: string | undefined;
3752
4389
  entry?: "Limit" | "Market" | undefined;
3753
4390
  exit?: "Limit" | "Market" | undefined;
4391
+ stoploss_on_exchange?: boolean | undefined;
3754
4392
  emergencysell?: "Limit" | "Market" | undefined;
3755
4393
  forcebuy?: "Limit" | "Market" | undefined;
3756
4394
  forcesell?: "Limit" | "Market" | undefined;
3757
- stoploss_on_exchange?: boolean | undefined;
3758
4395
  stoploss_on_exchange_interval?: number | undefined;
3759
4396
  stoploss_on_exchange_limit_ratio?: number | undefined;
3760
4397
  } | undefined;
@@ -3792,6 +4429,41 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3792
4429
  }>;
3793
4430
  pod: any;
3794
4431
  trader: Partial<{
4432
+ telegram?: {
4433
+ access_hash?: string | null | undefined;
4434
+ invite_link?: string | undefined;
4435
+ enabled: boolean;
4436
+ token: string;
4437
+ chat_id: any;
4438
+ allow_custom_messages: boolean;
4439
+ notification_settings: {
4440
+ status: "silent" | "on" | "off";
4441
+ entry: "silent" | "on" | "off";
4442
+ exit: {
4443
+ roi: "silent" | "on" | "off";
4444
+ emergency_exit: "silent" | "on" | "off";
4445
+ force_exit: "silent" | "on" | "off";
4446
+ exit_signal: "silent" | "on" | "off";
4447
+ trailing_stop_loss: "silent" | "on" | "off";
4448
+ stop_loss: "silent" | "on" | "off";
4449
+ stoploss_on_exchange: "silent" | "on" | "off";
4450
+ custom_exit: "silent" | "on" | "off";
4451
+ partial_exit: "silent" | "on" | "off";
4452
+ };
4453
+ warning: "silent" | "on" | "off";
4454
+ startup: "silent" | "on" | "off";
4455
+ entry_fill: "silent" | "on" | "off";
4456
+ entry_cancel: "silent" | "on" | "off";
4457
+ exit_cancel: "silent" | "on" | "off";
4458
+ exit_fill: "silent" | "on" | "off";
4459
+ protection_trigger: "silent" | "on" | "off";
4460
+ protection_trigger_global: "silent" | "on" | "off";
4461
+ strategy_msg: "silent" | "on" | "off";
4462
+ show_candle: "off" | "ohlc";
4463
+ };
4464
+ reload: boolean;
4465
+ balance_dust_level: number;
4466
+ } | undefined;
3795
4467
  dry_run_wallet?: number | undefined;
3796
4468
  max_open_trades?: number | undefined;
3797
4469
  plugins?: {
@@ -3812,15 +4484,15 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3812
4484
  tradable_balance_ratio?: number | undefined;
3813
4485
  webhook?: {
3814
4486
  url: string;
3815
- format: string;
3816
4487
  enabled: boolean;
4488
+ format: string;
3817
4489
  webhookstatus: {
3818
4490
  traderId: any;
3819
4491
  event: string;
3820
4492
  status: string;
3821
4493
  userId: string;
3822
4494
  };
3823
- webhookbuy: {
4495
+ webhookentry: {
3824
4496
  limit: string;
3825
4497
  traderId: any;
3826
4498
  stake_amount: string;
@@ -3830,7 +4502,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3830
4502
  pair: string;
3831
4503
  fiat_currency: string;
3832
4504
  };
3833
- webhookbuycancel: {
4505
+ webhookentrycancel: {
3834
4506
  limit: string;
3835
4507
  traderId: any;
3836
4508
  stake_amount: string;
@@ -3840,7 +4512,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3840
4512
  pair: string;
3841
4513
  fiat_currency: string;
3842
4514
  };
3843
- webhookbuyfill: {
4515
+ webhookentryfill: {
3844
4516
  traderId: any;
3845
4517
  stake_amount: string;
3846
4518
  stake_currency: string;
@@ -3852,7 +4524,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3852
4524
  amount: string;
3853
4525
  open_date: string;
3854
4526
  };
3855
- webhooksell: {
4527
+ webhookexit: {
3856
4528
  limit: string;
3857
4529
  traderId: any;
3858
4530
  stake_currency: string;
@@ -3867,10 +4539,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3867
4539
  profit_amount: string;
3868
4540
  profit_ratio: string;
3869
4541
  close_date: string;
3870
- sell_reason: string;
4542
+ exit_reason: string;
3871
4543
  order_type: string;
3872
4544
  };
3873
- webhooksellcancel: {
4545
+ webhookexitcancel: {
3874
4546
  limit: string;
3875
4547
  traderId: any;
3876
4548
  stake_currency: string;
@@ -3880,7 +4552,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3880
4552
  profit_amount: string;
3881
4553
  profit_ratio: string;
3882
4554
  };
3883
- webhooksellfill: {
4555
+ webhookexitfill: {
3884
4556
  traderId: any;
3885
4557
  event: string;
3886
4558
  userId: string;
@@ -3941,6 +4613,41 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3941
4613
  }>;
3942
4614
  }> | undefined;
3943
4615
  trader?: Partial<{
4616
+ telegram?: {
4617
+ access_hash?: string | null | undefined;
4618
+ invite_link?: string | undefined;
4619
+ enabled: boolean;
4620
+ token: string;
4621
+ chat_id: any;
4622
+ allow_custom_messages: boolean;
4623
+ notification_settings: {
4624
+ status: "silent" | "on" | "off";
4625
+ entry: "silent" | "on" | "off";
4626
+ exit: {
4627
+ roi: "silent" | "on" | "off";
4628
+ emergency_exit: "silent" | "on" | "off";
4629
+ force_exit: "silent" | "on" | "off";
4630
+ exit_signal: "silent" | "on" | "off";
4631
+ trailing_stop_loss: "silent" | "on" | "off";
4632
+ stop_loss: "silent" | "on" | "off";
4633
+ stoploss_on_exchange: "silent" | "on" | "off";
4634
+ custom_exit: "silent" | "on" | "off";
4635
+ partial_exit: "silent" | "on" | "off";
4636
+ };
4637
+ warning: "silent" | "on" | "off";
4638
+ startup: "silent" | "on" | "off";
4639
+ entry_fill: "silent" | "on" | "off";
4640
+ entry_cancel: "silent" | "on" | "off";
4641
+ exit_cancel: "silent" | "on" | "off";
4642
+ exit_fill: "silent" | "on" | "off";
4643
+ protection_trigger: "silent" | "on" | "off";
4644
+ protection_trigger_global: "silent" | "on" | "off";
4645
+ strategy_msg: "silent" | "on" | "off";
4646
+ show_candle: "off" | "ohlc";
4647
+ };
4648
+ reload: boolean;
4649
+ balance_dust_level: number;
4650
+ } | undefined;
3944
4651
  dry_run_wallet?: number | undefined;
3945
4652
  max_open_trades?: number | undefined;
3946
4653
  plugins?: {
@@ -3961,15 +4668,15 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3961
4668
  tradable_balance_ratio?: number | undefined;
3962
4669
  webhook?: {
3963
4670
  url: string;
3964
- format: string;
3965
4671
  enabled: boolean;
4672
+ format: string;
3966
4673
  webhookstatus: {
3967
4674
  traderId: any;
3968
4675
  event: string;
3969
4676
  status: string;
3970
4677
  userId: string;
3971
4678
  };
3972
- webhookbuy: {
4679
+ webhookentry: {
3973
4680
  limit: string;
3974
4681
  traderId: any;
3975
4682
  stake_amount: string;
@@ -3979,7 +4686,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3979
4686
  pair: string;
3980
4687
  fiat_currency: string;
3981
4688
  };
3982
- webhookbuycancel: {
4689
+ webhookentrycancel: {
3983
4690
  limit: string;
3984
4691
  traderId: any;
3985
4692
  stake_amount: string;
@@ -3989,7 +4696,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
3989
4696
  pair: string;
3990
4697
  fiat_currency: string;
3991
4698
  };
3992
- webhookbuyfill: {
4699
+ webhookentryfill: {
3993
4700
  traderId: any;
3994
4701
  stake_amount: string;
3995
4702
  stake_currency: string;
@@ -4001,7 +4708,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
4001
4708
  amount: string;
4002
4709
  open_date: string;
4003
4710
  };
4004
- webhooksell: {
4711
+ webhookexit: {
4005
4712
  limit: string;
4006
4713
  traderId: any;
4007
4714
  stake_currency: string;
@@ -4016,10 +4723,10 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
4016
4723
  profit_amount: string;
4017
4724
  profit_ratio: string;
4018
4725
  close_date: string;
4019
- sell_reason: string;
4726
+ exit_reason: string;
4020
4727
  order_type: string;
4021
4728
  };
4022
- webhooksellcancel: {
4729
+ webhookexitcancel: {
4023
4730
  limit: string;
4024
4731
  traderId: any;
4025
4732
  stake_currency: string;
@@ -4029,7 +4736,7 @@ export declare const tradersPodsApiPatchResolver: import("@feathersjs/schema").R
4029
4736
  profit_amount: string;
4030
4737
  profit_ratio: string;
4031
4738
  };
4032
- webhooksellfill: {
4739
+ webhookexitfill: {
4033
4740
  traderId: any;
4034
4741
  event: string;
4035
4742
  userId: string;
@@ -4147,7 +4854,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4147
4854
  traderId: import("@feathersjs/typebox").TAny;
4148
4855
  userId: import("@feathersjs/typebox").TString<string>;
4149
4856
  }>;
4150
- webhookbuy: import("@feathersjs/typebox").TObject<{
4857
+ webhookentry: import("@feathersjs/typebox").TObject<{
4151
4858
  event: import("@feathersjs/typebox").TString<string>;
4152
4859
  traderId: import("@feathersjs/typebox").TAny;
4153
4860
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4157,7 +4864,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4157
4864
  stake_currency: import("@feathersjs/typebox").TString<string>;
4158
4865
  fiat_currency: import("@feathersjs/typebox").TString<string>;
4159
4866
  }>;
4160
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
4867
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
4161
4868
  event: import("@feathersjs/typebox").TString<string>;
4162
4869
  traderId: import("@feathersjs/typebox").TAny;
4163
4870
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4167,7 +4874,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4167
4874
  stake_currency: import("@feathersjs/typebox").TString<string>;
4168
4875
  fiat_currency: import("@feathersjs/typebox").TString<string>;
4169
4876
  }>;
4170
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
4877
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
4171
4878
  event: import("@feathersjs/typebox").TString<string>;
4172
4879
  userId: import("@feathersjs/typebox").TString<string>;
4173
4880
  traderId: import("@feathersjs/typebox").TAny;
@@ -4179,7 +4886,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4179
4886
  stake_amount: import("@feathersjs/typebox").TString<string>;
4180
4887
  stake_currency: import("@feathersjs/typebox").TString<string>;
4181
4888
  }>;
4182
- webhooksell: import("@feathersjs/typebox").TObject<{
4889
+ webhookexit: import("@feathersjs/typebox").TObject<{
4183
4890
  event: import("@feathersjs/typebox").TString<string>;
4184
4891
  traderId: import("@feathersjs/typebox").TAny;
4185
4892
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4194,10 +4901,10 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4194
4901
  profit_ratio: import("@feathersjs/typebox").TString<string>;
4195
4902
  open_date: import("@feathersjs/typebox").TString<string>;
4196
4903
  close_date: import("@feathersjs/typebox").TString<string>;
4197
- sell_reason: import("@feathersjs/typebox").TString<string>;
4904
+ exit_reason: import("@feathersjs/typebox").TString<string>;
4198
4905
  order_type: import("@feathersjs/typebox").TString<string>;
4199
4906
  }>;
4200
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
4907
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
4201
4908
  event: import("@feathersjs/typebox").TString<string>;
4202
4909
  traderId: import("@feathersjs/typebox").TAny;
4203
4910
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4207,7 +4914,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4207
4914
  stake_currency: import("@feathersjs/typebox").TString<string>;
4208
4915
  profit_ratio: import("@feathersjs/typebox").TString<string>;
4209
4916
  }>;
4210
- webhooksellfill: import("@feathersjs/typebox").TObject<{
4917
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
4211
4918
  event: import("@feathersjs/typebox").TString<string>;
4212
4919
  traderId: import("@feathersjs/typebox").TAny;
4213
4920
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4241,6 +4948,41 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4241
4948
  username: import("@feathersjs/typebox").TString<string>;
4242
4949
  password: import("@feathersjs/typebox").TString<string>;
4243
4950
  }>;
4951
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
4952
+ enabled: import("@feathersjs/typebox").TBoolean;
4953
+ token: import("@feathersjs/typebox").TString<string>;
4954
+ chat_id: import("@feathersjs/typebox").TAny;
4955
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
4956
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4957
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
4958
+ notification_settings: import("@feathersjs/typebox").TObject<{
4959
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4960
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4961
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4962
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4963
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4964
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4965
+ exit: import("@feathersjs/typebox").TObject<{
4966
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4967
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4968
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4969
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4970
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4971
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4972
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4973
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4974
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4975
+ }>;
4976
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4977
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4978
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4979
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4980
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
4981
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
4982
+ }>;
4983
+ reload: import("@feathersjs/typebox").TBoolean;
4984
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
4985
+ }>>;
4244
4986
  pod: import("@feathersjs/typebox").TString<string>;
4245
4987
  host: import("@feathersjs/typebox").TString<string>;
4246
4988
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -4298,7 +5040,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4298
5040
  traderId: import("@feathersjs/typebox").TAny;
4299
5041
  userId: import("@feathersjs/typebox").TString<string>;
4300
5042
  }>;
4301
- webhookbuy: import("@feathersjs/typebox").TObject<{
5043
+ webhookentry: import("@feathersjs/typebox").TObject<{
4302
5044
  event: import("@feathersjs/typebox").TString<string>;
4303
5045
  traderId: import("@feathersjs/typebox").TAny;
4304
5046
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4308,7 +5050,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4308
5050
  stake_currency: import("@feathersjs/typebox").TString<string>;
4309
5051
  fiat_currency: import("@feathersjs/typebox").TString<string>;
4310
5052
  }>;
4311
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
5053
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
4312
5054
  event: import("@feathersjs/typebox").TString<string>;
4313
5055
  traderId: import("@feathersjs/typebox").TAny;
4314
5056
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4318,7 +5060,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4318
5060
  stake_currency: import("@feathersjs/typebox").TString<string>;
4319
5061
  fiat_currency: import("@feathersjs/typebox").TString<string>;
4320
5062
  }>;
4321
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
5063
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
4322
5064
  event: import("@feathersjs/typebox").TString<string>;
4323
5065
  userId: import("@feathersjs/typebox").TString<string>;
4324
5066
  traderId: import("@feathersjs/typebox").TAny;
@@ -4330,7 +5072,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4330
5072
  stake_amount: import("@feathersjs/typebox").TString<string>;
4331
5073
  stake_currency: import("@feathersjs/typebox").TString<string>;
4332
5074
  }>;
4333
- webhooksell: import("@feathersjs/typebox").TObject<{
5075
+ webhookexit: import("@feathersjs/typebox").TObject<{
4334
5076
  event: import("@feathersjs/typebox").TString<string>;
4335
5077
  traderId: import("@feathersjs/typebox").TAny;
4336
5078
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4345,10 +5087,10 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4345
5087
  profit_ratio: import("@feathersjs/typebox").TString<string>;
4346
5088
  open_date: import("@feathersjs/typebox").TString<string>;
4347
5089
  close_date: import("@feathersjs/typebox").TString<string>;
4348
- sell_reason: import("@feathersjs/typebox").TString<string>;
5090
+ exit_reason: import("@feathersjs/typebox").TString<string>;
4349
5091
  order_type: import("@feathersjs/typebox").TString<string>;
4350
5092
  }>;
4351
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
5093
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
4352
5094
  event: import("@feathersjs/typebox").TString<string>;
4353
5095
  traderId: import("@feathersjs/typebox").TAny;
4354
5096
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4358,7 +5100,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4358
5100
  stake_currency: import("@feathersjs/typebox").TString<string>;
4359
5101
  profit_ratio: import("@feathersjs/typebox").TString<string>;
4360
5102
  }>;
4361
- webhooksellfill: import("@feathersjs/typebox").TObject<{
5103
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
4362
5104
  event: import("@feathersjs/typebox").TString<string>;
4363
5105
  traderId: import("@feathersjs/typebox").TAny;
4364
5106
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4392,6 +5134,41 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4392
5134
  username: import("@feathersjs/typebox").TString<string>;
4393
5135
  password: import("@feathersjs/typebox").TString<string>;
4394
5136
  }>;
5137
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
5138
+ enabled: import("@feathersjs/typebox").TBoolean;
5139
+ token: import("@feathersjs/typebox").TString<string>;
5140
+ chat_id: import("@feathersjs/typebox").TAny;
5141
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
5142
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5143
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
5144
+ notification_settings: import("@feathersjs/typebox").TObject<{
5145
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5146
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5147
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5148
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5149
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5150
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5151
+ exit: import("@feathersjs/typebox").TObject<{
5152
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5153
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5154
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5155
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5156
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5157
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5158
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5159
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5160
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5161
+ }>;
5162
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5163
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5164
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5165
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5166
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5167
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
5168
+ }>;
5169
+ reload: import("@feathersjs/typebox").TBoolean;
5170
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
5171
+ }>>;
4395
5172
  pod: import("@feathersjs/typebox").TString<string>;
4396
5173
  host: import("@feathersjs/typebox").TString<string>;
4397
5174
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -4430,13 +5207,9 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4430
5207
  left: import("@feathersjs/typebox").TString<string>;
4431
5208
  right: import("@feathersjs/typebox").TString<string>;
4432
5209
  }>>>;
4433
- whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TObject<{
4434
- left: import("@feathersjs/typebox").TString<string>;
4435
- right: import("@feathersjs/typebox").TString<string>;
4436
- }>>>;
5210
+ whitelist: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TArray<import("@feathersjs/typebox").TAny>>;
4437
5211
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
4438
5212
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4439
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4440
5213
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4441
5214
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
4442
5215
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -4559,7 +5332,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4559
5332
  traderId: import("@feathersjs/typebox").TAny;
4560
5333
  userId: import("@feathersjs/typebox").TString<string>;
4561
5334
  }>;
4562
- webhookbuy: import("@feathersjs/typebox").TObject<{
5335
+ webhookentry: import("@feathersjs/typebox").TObject<{
4563
5336
  event: import("@feathersjs/typebox").TString<string>;
4564
5337
  traderId: import("@feathersjs/typebox").TAny;
4565
5338
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4569,7 +5342,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4569
5342
  stake_currency: import("@feathersjs/typebox").TString<string>;
4570
5343
  fiat_currency: import("@feathersjs/typebox").TString<string>;
4571
5344
  }>;
4572
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
5345
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
4573
5346
  event: import("@feathersjs/typebox").TString<string>;
4574
5347
  traderId: import("@feathersjs/typebox").TAny;
4575
5348
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4579,7 +5352,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4579
5352
  stake_currency: import("@feathersjs/typebox").TString<string>;
4580
5353
  fiat_currency: import("@feathersjs/typebox").TString<string>;
4581
5354
  }>;
4582
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
5355
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
4583
5356
  event: import("@feathersjs/typebox").TString<string>;
4584
5357
  userId: import("@feathersjs/typebox").TString<string>;
4585
5358
  traderId: import("@feathersjs/typebox").TAny;
@@ -4591,7 +5364,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4591
5364
  stake_amount: import("@feathersjs/typebox").TString<string>;
4592
5365
  stake_currency: import("@feathersjs/typebox").TString<string>;
4593
5366
  }>;
4594
- webhooksell: import("@feathersjs/typebox").TObject<{
5367
+ webhookexit: import("@feathersjs/typebox").TObject<{
4595
5368
  event: import("@feathersjs/typebox").TString<string>;
4596
5369
  traderId: import("@feathersjs/typebox").TAny;
4597
5370
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4606,10 +5379,10 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4606
5379
  profit_ratio: import("@feathersjs/typebox").TString<string>;
4607
5380
  open_date: import("@feathersjs/typebox").TString<string>;
4608
5381
  close_date: import("@feathersjs/typebox").TString<string>;
4609
- sell_reason: import("@feathersjs/typebox").TString<string>;
5382
+ exit_reason: import("@feathersjs/typebox").TString<string>;
4610
5383
  order_type: import("@feathersjs/typebox").TString<string>;
4611
5384
  }>;
4612
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
5385
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
4613
5386
  event: import("@feathersjs/typebox").TString<string>;
4614
5387
  traderId: import("@feathersjs/typebox").TAny;
4615
5388
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4619,7 +5392,7 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4619
5392
  stake_currency: import("@feathersjs/typebox").TString<string>;
4620
5393
  profit_ratio: import("@feathersjs/typebox").TString<string>;
4621
5394
  }>;
4622
- webhooksellfill: import("@feathersjs/typebox").TObject<{
5395
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
4623
5396
  event: import("@feathersjs/typebox").TString<string>;
4624
5397
  traderId: import("@feathersjs/typebox").TAny;
4625
5398
  userId: import("@feathersjs/typebox").TString<string>;
@@ -4653,6 +5426,41 @@ export declare const tradersPodsApiQueryProperties: import("@feathersjs/typebox"
4653
5426
  username: import("@feathersjs/typebox").TString<string>;
4654
5427
  password: import("@feathersjs/typebox").TString<string>;
4655
5428
  }>;
5429
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
5430
+ enabled: import("@feathersjs/typebox").TBoolean;
5431
+ token: import("@feathersjs/typebox").TString<string>;
5432
+ chat_id: import("@feathersjs/typebox").TAny;
5433
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
5434
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
5435
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
5436
+ notification_settings: import("@feathersjs/typebox").TObject<{
5437
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5438
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5439
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5440
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5441
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5442
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5443
+ exit: import("@feathersjs/typebox").TObject<{
5444
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5445
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5446
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5447
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5448
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5449
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5450
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5451
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5452
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5453
+ }>;
5454
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5455
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5456
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5457
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5458
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
5459
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
5460
+ }>;
5461
+ reload: import("@feathersjs/typebox").TBoolean;
5462
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
5463
+ }>>;
4656
5464
  pod: import("@feathersjs/typebox").TString<string>;
4657
5465
  host: import("@feathersjs/typebox").TString<string>;
4658
5466
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;