@cryptorobot.ai/client 0.0.15 → 0.0.17

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 (29) hide show
  1. package/lib/configuration.d.ts +9 -0
  2. package/lib/helpers/logging.helper.d.ts +6 -6
  3. package/lib/helpers/queue.helper.d.ts +5 -0
  4. package/lib/helpers/telegram.helper.d.ts +7 -0
  5. package/lib/helpers/trader.helper.d.ts +2 -0
  6. package/lib/hooks/bootstrap-user-exchanges.d.ts +2 -0
  7. package/lib/hooks/bootstrap-user-strategies.d.ts +2 -0
  8. package/lib/hooks/bootstrap-user-telegram.d.ts +2 -0
  9. package/lib/hooks/bootstrap-user-traders.d.ts +2 -0
  10. package/lib/hooks/setup-cronjobs.d.ts +2 -0
  11. package/lib/hooks/setup-queues.d.ts +3 -0
  12. package/lib/hooks/setup-telegram-client.d.ts +3 -0
  13. package/lib/hooks/telegram-create-group.d.ts +2 -0
  14. package/lib/hooks/telegram-delete-group.d.ts +2 -0
  15. package/lib/hooks/telegram-update-group.d.ts +2 -0
  16. package/lib/hooks/tickers-fetch.d.ts +1 -1
  17. package/lib/hooks/traders/pods-process-worker.d.ts +1 -1
  18. package/lib/services/exchanges/balance/balance.schema.d.ts +4 -12
  19. package/lib/services/exchanges/download/download.schema.d.ts +8 -16
  20. package/lib/services/exchanges/exchanges.schema.d.ts +57 -15
  21. package/lib/services/exchanges/ticker/ticker.schema.d.ts +4 -12
  22. package/lib/services/messages/messages.schema.d.ts +101 -3
  23. package/lib/services/strategies/strategies.schema.d.ts +360 -80
  24. package/lib/services/traders/pods/api/api.schema.d.ts +1044 -212
  25. package/lib/services/traders/pods/pods.schema.d.ts +704 -152
  26. package/lib/services/traders/traders.schema.d.ts +340 -60
  27. package/lib/services/users/users.schema.d.ts +16 -0
  28. package/lib/telegram-get-credentials.d.ts +1 -0
  29. package/package.json +1 -1
@@ -52,7 +52,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
52
52
  traderId: import("@feathersjs/typebox").TAny;
53
53
  userId: import("@feathersjs/typebox").TString<string>;
54
54
  }>;
55
- webhookbuy: import("@feathersjs/typebox").TObject<{
55
+ webhookentry: import("@feathersjs/typebox").TObject<{
56
56
  event: import("@feathersjs/typebox").TString<string>;
57
57
  traderId: import("@feathersjs/typebox").TAny;
58
58
  userId: import("@feathersjs/typebox").TString<string>;
@@ -62,7 +62,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
62
62
  stake_currency: import("@feathersjs/typebox").TString<string>;
63
63
  fiat_currency: import("@feathersjs/typebox").TString<string>;
64
64
  }>;
65
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
65
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
66
66
  event: import("@feathersjs/typebox").TString<string>;
67
67
  traderId: import("@feathersjs/typebox").TAny;
68
68
  userId: import("@feathersjs/typebox").TString<string>;
@@ -72,7 +72,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
72
72
  stake_currency: import("@feathersjs/typebox").TString<string>;
73
73
  fiat_currency: import("@feathersjs/typebox").TString<string>;
74
74
  }>;
75
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
75
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
76
76
  event: import("@feathersjs/typebox").TString<string>;
77
77
  userId: import("@feathersjs/typebox").TString<string>;
78
78
  traderId: import("@feathersjs/typebox").TAny;
@@ -84,7 +84,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
84
84
  stake_amount: import("@feathersjs/typebox").TString<string>;
85
85
  stake_currency: import("@feathersjs/typebox").TString<string>;
86
86
  }>;
87
- webhooksell: import("@feathersjs/typebox").TObject<{
87
+ webhookexit: import("@feathersjs/typebox").TObject<{
88
88
  event: import("@feathersjs/typebox").TString<string>;
89
89
  traderId: import("@feathersjs/typebox").TAny;
90
90
  userId: import("@feathersjs/typebox").TString<string>;
@@ -99,10 +99,10 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
99
99
  profit_ratio: import("@feathersjs/typebox").TString<string>;
100
100
  open_date: import("@feathersjs/typebox").TString<string>;
101
101
  close_date: import("@feathersjs/typebox").TString<string>;
102
- sell_reason: import("@feathersjs/typebox").TString<string>;
102
+ exit_reason: import("@feathersjs/typebox").TString<string>;
103
103
  order_type: import("@feathersjs/typebox").TString<string>;
104
104
  }>;
105
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
105
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
106
106
  event: import("@feathersjs/typebox").TString<string>;
107
107
  traderId: import("@feathersjs/typebox").TAny;
108
108
  userId: import("@feathersjs/typebox").TString<string>;
@@ -112,7 +112,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
112
112
  stake_currency: import("@feathersjs/typebox").TString<string>;
113
113
  profit_ratio: import("@feathersjs/typebox").TString<string>;
114
114
  }>;
115
- webhooksellfill: import("@feathersjs/typebox").TObject<{
115
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
116
116
  event: import("@feathersjs/typebox").TString<string>;
117
117
  traderId: import("@feathersjs/typebox").TAny;
118
118
  userId: import("@feathersjs/typebox").TString<string>;
@@ -146,6 +146,41 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
146
146
  username: import("@feathersjs/typebox").TString<string>;
147
147
  password: import("@feathersjs/typebox").TString<string>;
148
148
  }>;
149
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
150
+ enabled: import("@feathersjs/typebox").TBoolean;
151
+ token: import("@feathersjs/typebox").TString<string>;
152
+ chat_id: import("@feathersjs/typebox").TAny;
153
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
154
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
155
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
156
+ notification_settings: import("@feathersjs/typebox").TObject<{
157
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
158
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
159
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
160
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
161
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
162
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
163
+ exit: import("@feathersjs/typebox").TObject<{
164
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
165
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
166
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
167
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
168
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
169
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
170
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
171
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
172
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
173
+ }>;
174
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
175
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
176
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
177
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
178
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
179
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
180
+ }>;
181
+ reload: import("@feathersjs/typebox").TBoolean;
182
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
183
+ }>>;
149
184
  pod: import("@feathersjs/typebox").TString<string>;
150
185
  host: import("@feathersjs/typebox").TString<string>;
151
186
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -190,7 +225,6 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
190
225
  }>>>;
191
226
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
192
227
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
193
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
194
228
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
195
229
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
196
230
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -223,8 +257,8 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
223
257
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
224
258
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
225
259
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
226
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
227
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
260
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
261
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
228
262
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
229
263
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
230
264
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -313,7 +347,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
313
347
  traderId: import("@feathersjs/typebox").TAny;
314
348
  userId: import("@feathersjs/typebox").TString<string>;
315
349
  }>;
316
- webhookbuy: import("@feathersjs/typebox").TObject<{
350
+ webhookentry: import("@feathersjs/typebox").TObject<{
317
351
  event: import("@feathersjs/typebox").TString<string>;
318
352
  traderId: import("@feathersjs/typebox").TAny;
319
353
  userId: import("@feathersjs/typebox").TString<string>;
@@ -323,7 +357,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
323
357
  stake_currency: import("@feathersjs/typebox").TString<string>;
324
358
  fiat_currency: import("@feathersjs/typebox").TString<string>;
325
359
  }>;
326
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
360
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
327
361
  event: import("@feathersjs/typebox").TString<string>;
328
362
  traderId: import("@feathersjs/typebox").TAny;
329
363
  userId: import("@feathersjs/typebox").TString<string>;
@@ -333,7 +367,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
333
367
  stake_currency: import("@feathersjs/typebox").TString<string>;
334
368
  fiat_currency: import("@feathersjs/typebox").TString<string>;
335
369
  }>;
336
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
370
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
337
371
  event: import("@feathersjs/typebox").TString<string>;
338
372
  userId: import("@feathersjs/typebox").TString<string>;
339
373
  traderId: import("@feathersjs/typebox").TAny;
@@ -345,7 +379,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
345
379
  stake_amount: import("@feathersjs/typebox").TString<string>;
346
380
  stake_currency: import("@feathersjs/typebox").TString<string>;
347
381
  }>;
348
- webhooksell: import("@feathersjs/typebox").TObject<{
382
+ webhookexit: import("@feathersjs/typebox").TObject<{
349
383
  event: import("@feathersjs/typebox").TString<string>;
350
384
  traderId: import("@feathersjs/typebox").TAny;
351
385
  userId: import("@feathersjs/typebox").TString<string>;
@@ -360,10 +394,10 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
360
394
  profit_ratio: import("@feathersjs/typebox").TString<string>;
361
395
  open_date: import("@feathersjs/typebox").TString<string>;
362
396
  close_date: import("@feathersjs/typebox").TString<string>;
363
- sell_reason: import("@feathersjs/typebox").TString<string>;
397
+ exit_reason: import("@feathersjs/typebox").TString<string>;
364
398
  order_type: import("@feathersjs/typebox").TString<string>;
365
399
  }>;
366
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
400
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
367
401
  event: import("@feathersjs/typebox").TString<string>;
368
402
  traderId: import("@feathersjs/typebox").TAny;
369
403
  userId: import("@feathersjs/typebox").TString<string>;
@@ -373,7 +407,7 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
373
407
  stake_currency: import("@feathersjs/typebox").TString<string>;
374
408
  profit_ratio: import("@feathersjs/typebox").TString<string>;
375
409
  }>;
376
- webhooksellfill: import("@feathersjs/typebox").TObject<{
410
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
377
411
  event: import("@feathersjs/typebox").TString<string>;
378
412
  traderId: import("@feathersjs/typebox").TAny;
379
413
  userId: import("@feathersjs/typebox").TString<string>;
@@ -407,6 +441,41 @@ export declare const tradersPodsSchema: import("@feathersjs/typebox").TObject<{
407
441
  username: import("@feathersjs/typebox").TString<string>;
408
442
  password: import("@feathersjs/typebox").TString<string>;
409
443
  }>;
444
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
445
+ enabled: import("@feathersjs/typebox").TBoolean;
446
+ token: import("@feathersjs/typebox").TString<string>;
447
+ chat_id: import("@feathersjs/typebox").TAny;
448
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
449
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
450
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
451
+ notification_settings: import("@feathersjs/typebox").TObject<{
452
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
453
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
454
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
455
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
456
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
457
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
458
+ exit: import("@feathersjs/typebox").TObject<{
459
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
460
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
461
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
462
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
463
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
464
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
465
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
466
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
467
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
468
+ }>;
469
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
470
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
471
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
472
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
473
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
474
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
475
+ }>;
476
+ reload: import("@feathersjs/typebox").TBoolean;
477
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
478
+ }>>;
410
479
  pod: import("@feathersjs/typebox").TString<string>;
411
480
  host: import("@feathersjs/typebox").TString<string>;
412
481
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -443,13 +512,13 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
443
512
  name?: any;
444
513
  apiKey?: string | undefined;
445
514
  secret?: string | undefined;
446
- key?: string | undefined;
447
515
  avatar?: any;
448
516
  createdAt?: any;
449
517
  updatedAt?: any;
450
518
  userId?: string | {} | undefined;
451
519
  which?: string | undefined;
452
520
  connected?: boolean | undefined;
521
+ token?: string | undefined;
453
522
  downloaded?: {
454
523
  updatedAt: any;
455
524
  size: string;
@@ -486,7 +555,6 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
486
555
  twofa?: string | undefined;
487
556
  privateKey?: string | undefined;
488
557
  walletAddress?: string | undefined;
489
- token?: string | undefined;
490
558
  __v?: any;
491
559
  _id: string | {};
492
560
  }>;
@@ -503,6 +571,41 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
503
571
  type: string;
504
572
  } | undefined;
505
573
  traders?: {
574
+ telegram?: {
575
+ access_hash?: string | null | undefined;
576
+ invite_link?: string | undefined;
577
+ enabled: boolean;
578
+ token: string;
579
+ chat_id: any;
580
+ allow_custom_messages: boolean;
581
+ notification_settings: {
582
+ status: "silent" | "on" | "off";
583
+ entry: "silent" | "on" | "off";
584
+ exit: {
585
+ roi: "silent" | "on" | "off";
586
+ emergency_exit: "silent" | "on" | "off";
587
+ force_exit: "silent" | "on" | "off";
588
+ exit_signal: "silent" | "on" | "off";
589
+ trailing_stop_loss: "silent" | "on" | "off";
590
+ stop_loss: "silent" | "on" | "off";
591
+ stoploss_on_exchange: "silent" | "on" | "off";
592
+ custom_exit: "silent" | "on" | "off";
593
+ partial_exit: "silent" | "on" | "off";
594
+ };
595
+ warning: "silent" | "on" | "off";
596
+ startup: "silent" | "on" | "off";
597
+ entry_fill: "silent" | "on" | "off";
598
+ entry_cancel: "silent" | "on" | "off";
599
+ exit_cancel: "silent" | "on" | "off";
600
+ exit_fill: "silent" | "on" | "off";
601
+ protection_trigger: "silent" | "on" | "off";
602
+ protection_trigger_global: "silent" | "on" | "off";
603
+ strategy_msg: "silent" | "on" | "off";
604
+ show_candle: "off" | "ohlc";
605
+ };
606
+ reload: boolean;
607
+ balance_dust_level: number;
608
+ } | undefined;
506
609
  dry_run_wallet?: number | undefined;
507
610
  max_open_trades?: number | undefined;
508
611
  plugins?: {
@@ -523,15 +626,15 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
523
626
  tradable_balance_ratio?: number | undefined;
524
627
  webhook?: {
525
628
  url: string;
526
- format: string;
527
629
  enabled: boolean;
630
+ format: string;
528
631
  webhookstatus: {
529
632
  traderId: any;
530
633
  event: string;
531
634
  status: string;
532
635
  userId: string;
533
636
  };
534
- webhookbuy: {
637
+ webhookentry: {
535
638
  limit: string;
536
639
  traderId: any;
537
640
  stake_amount: string;
@@ -541,7 +644,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
541
644
  pair: string;
542
645
  fiat_currency: string;
543
646
  };
544
- webhookbuycancel: {
647
+ webhookentrycancel: {
545
648
  limit: string;
546
649
  traderId: any;
547
650
  stake_amount: string;
@@ -551,7 +654,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
551
654
  pair: string;
552
655
  fiat_currency: string;
553
656
  };
554
- webhookbuyfill: {
657
+ webhookentryfill: {
555
658
  traderId: any;
556
659
  stake_amount: string;
557
660
  stake_currency: string;
@@ -563,7 +666,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
563
666
  amount: string;
564
667
  open_date: string;
565
668
  };
566
- webhooksell: {
669
+ webhookexit: {
567
670
  limit: string;
568
671
  traderId: any;
569
672
  stake_currency: string;
@@ -578,10 +681,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
578
681
  profit_amount: string;
579
682
  profit_ratio: string;
580
683
  close_date: string;
581
- sell_reason: string;
684
+ exit_reason: string;
582
685
  order_type: string;
583
686
  };
584
- webhooksellcancel: {
687
+ webhookexitcancel: {
585
688
  limit: string;
586
689
  traderId: any;
587
690
  stake_currency: string;
@@ -591,7 +694,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
591
694
  profit_amount: string;
592
695
  profit_ratio: string;
593
696
  };
594
- webhooksellfill: {
697
+ webhookexitfill: {
595
698
  traderId: any;
596
699
  event: string;
597
700
  userId: string;
@@ -666,12 +769,12 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
666
769
  timeinforce?: unknown;
667
770
  order_types?: {
668
771
  stoploss?: string | undefined;
669
- buy?: "Limit" | "Market" | undefined;
670
- sell?: "Limit" | "Market" | undefined;
772
+ entry?: "Limit" | "Market" | undefined;
773
+ exit?: "Limit" | "Market" | undefined;
774
+ stoploss_on_exchange?: boolean | undefined;
671
775
  emergencysell?: "Limit" | "Market" | undefined;
672
776
  forcebuy?: "Limit" | "Market" | undefined;
673
777
  forcesell?: "Limit" | "Market" | undefined;
674
- stoploss_on_exchange?: boolean | undefined;
675
778
  stoploss_on_exchange_interval?: number | undefined;
676
779
  stoploss_on_exchange_limit_ratio?: number | undefined;
677
780
  } | undefined;
@@ -709,6 +812,41 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
709
812
  }>;
710
813
  pod: any;
711
814
  trader: Partial<{
815
+ telegram?: {
816
+ access_hash?: string | null | undefined;
817
+ invite_link?: string | undefined;
818
+ enabled: boolean;
819
+ token: string;
820
+ chat_id: any;
821
+ allow_custom_messages: boolean;
822
+ notification_settings: {
823
+ status: "silent" | "on" | "off";
824
+ entry: "silent" | "on" | "off";
825
+ exit: {
826
+ roi: "silent" | "on" | "off";
827
+ emergency_exit: "silent" | "on" | "off";
828
+ force_exit: "silent" | "on" | "off";
829
+ exit_signal: "silent" | "on" | "off";
830
+ trailing_stop_loss: "silent" | "on" | "off";
831
+ stop_loss: "silent" | "on" | "off";
832
+ stoploss_on_exchange: "silent" | "on" | "off";
833
+ custom_exit: "silent" | "on" | "off";
834
+ partial_exit: "silent" | "on" | "off";
835
+ };
836
+ warning: "silent" | "on" | "off";
837
+ startup: "silent" | "on" | "off";
838
+ entry_fill: "silent" | "on" | "off";
839
+ entry_cancel: "silent" | "on" | "off";
840
+ exit_cancel: "silent" | "on" | "off";
841
+ exit_fill: "silent" | "on" | "off";
842
+ protection_trigger: "silent" | "on" | "off";
843
+ protection_trigger_global: "silent" | "on" | "off";
844
+ strategy_msg: "silent" | "on" | "off";
845
+ show_candle: "off" | "ohlc";
846
+ };
847
+ reload: boolean;
848
+ balance_dust_level: number;
849
+ } | undefined;
712
850
  dry_run_wallet?: number | undefined;
713
851
  max_open_trades?: number | undefined;
714
852
  plugins?: {
@@ -729,15 +867,15 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
729
867
  tradable_balance_ratio?: number | undefined;
730
868
  webhook?: {
731
869
  url: string;
732
- format: string;
733
870
  enabled: boolean;
871
+ format: string;
734
872
  webhookstatus: {
735
873
  traderId: any;
736
874
  event: string;
737
875
  status: string;
738
876
  userId: string;
739
877
  };
740
- webhookbuy: {
878
+ webhookentry: {
741
879
  limit: string;
742
880
  traderId: any;
743
881
  stake_amount: string;
@@ -747,7 +885,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
747
885
  pair: string;
748
886
  fiat_currency: string;
749
887
  };
750
- webhookbuycancel: {
888
+ webhookentrycancel: {
751
889
  limit: string;
752
890
  traderId: any;
753
891
  stake_amount: string;
@@ -757,7 +895,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
757
895
  pair: string;
758
896
  fiat_currency: string;
759
897
  };
760
- webhookbuyfill: {
898
+ webhookentryfill: {
761
899
  traderId: any;
762
900
  stake_amount: string;
763
901
  stake_currency: string;
@@ -769,7 +907,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
769
907
  amount: string;
770
908
  open_date: string;
771
909
  };
772
- webhooksell: {
910
+ webhookexit: {
773
911
  limit: string;
774
912
  traderId: any;
775
913
  stake_currency: string;
@@ -784,10 +922,10 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
784
922
  profit_amount: string;
785
923
  profit_ratio: string;
786
924
  close_date: string;
787
- sell_reason: string;
925
+ exit_reason: string;
788
926
  order_type: string;
789
927
  };
790
- webhooksellcancel: {
928
+ webhookexitcancel: {
791
929
  limit: string;
792
930
  traderId: any;
793
931
  stake_currency: string;
@@ -797,7 +935,7 @@ export declare const tradersPodsResolver: import("@feathersjs/schema").Resolver<
797
935
  profit_amount: string;
798
936
  profit_ratio: string;
799
937
  };
800
- webhooksellfill: {
938
+ webhookexitfill: {
801
939
  traderId: any;
802
940
  event: string;
803
941
  userId: string;
@@ -870,13 +1008,13 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
870
1008
  name?: any;
871
1009
  apiKey?: string | undefined;
872
1010
  secret?: string | undefined;
873
- key?: string | undefined;
874
1011
  avatar?: any;
875
1012
  createdAt?: any;
876
1013
  updatedAt?: any;
877
1014
  userId?: string | {} | undefined;
878
1015
  which?: string | undefined;
879
1016
  connected?: boolean | undefined;
1017
+ token?: string | undefined;
880
1018
  downloaded?: {
881
1019
  updatedAt: any;
882
1020
  size: string;
@@ -913,7 +1051,6 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
913
1051
  twofa?: string | undefined;
914
1052
  privateKey?: string | undefined;
915
1053
  walletAddress?: string | undefined;
916
- token?: string | undefined;
917
1054
  __v?: any;
918
1055
  _id: string | {};
919
1056
  }>;
@@ -930,6 +1067,41 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
930
1067
  type: string;
931
1068
  } | undefined;
932
1069
  traders?: {
1070
+ telegram?: {
1071
+ access_hash?: string | null | undefined;
1072
+ invite_link?: string | undefined;
1073
+ enabled: boolean;
1074
+ token: string;
1075
+ chat_id: any;
1076
+ allow_custom_messages: boolean;
1077
+ notification_settings: {
1078
+ status: "silent" | "on" | "off";
1079
+ entry: "silent" | "on" | "off";
1080
+ exit: {
1081
+ roi: "silent" | "on" | "off";
1082
+ emergency_exit: "silent" | "on" | "off";
1083
+ force_exit: "silent" | "on" | "off";
1084
+ exit_signal: "silent" | "on" | "off";
1085
+ trailing_stop_loss: "silent" | "on" | "off";
1086
+ stop_loss: "silent" | "on" | "off";
1087
+ stoploss_on_exchange: "silent" | "on" | "off";
1088
+ custom_exit: "silent" | "on" | "off";
1089
+ partial_exit: "silent" | "on" | "off";
1090
+ };
1091
+ warning: "silent" | "on" | "off";
1092
+ startup: "silent" | "on" | "off";
1093
+ entry_fill: "silent" | "on" | "off";
1094
+ entry_cancel: "silent" | "on" | "off";
1095
+ exit_cancel: "silent" | "on" | "off";
1096
+ exit_fill: "silent" | "on" | "off";
1097
+ protection_trigger: "silent" | "on" | "off";
1098
+ protection_trigger_global: "silent" | "on" | "off";
1099
+ strategy_msg: "silent" | "on" | "off";
1100
+ show_candle: "off" | "ohlc";
1101
+ };
1102
+ reload: boolean;
1103
+ balance_dust_level: number;
1104
+ } | undefined;
933
1105
  dry_run_wallet?: number | undefined;
934
1106
  max_open_trades?: number | undefined;
935
1107
  plugins?: {
@@ -950,15 +1122,15 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
950
1122
  tradable_balance_ratio?: number | undefined;
951
1123
  webhook?: {
952
1124
  url: string;
953
- format: string;
954
1125
  enabled: boolean;
1126
+ format: string;
955
1127
  webhookstatus: {
956
1128
  traderId: any;
957
1129
  event: string;
958
1130
  status: string;
959
1131
  userId: string;
960
1132
  };
961
- webhookbuy: {
1133
+ webhookentry: {
962
1134
  limit: string;
963
1135
  traderId: any;
964
1136
  stake_amount: string;
@@ -968,7 +1140,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
968
1140
  pair: string;
969
1141
  fiat_currency: string;
970
1142
  };
971
- webhookbuycancel: {
1143
+ webhookentrycancel: {
972
1144
  limit: string;
973
1145
  traderId: any;
974
1146
  stake_amount: string;
@@ -978,7 +1150,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
978
1150
  pair: string;
979
1151
  fiat_currency: string;
980
1152
  };
981
- webhookbuyfill: {
1153
+ webhookentryfill: {
982
1154
  traderId: any;
983
1155
  stake_amount: string;
984
1156
  stake_currency: string;
@@ -990,7 +1162,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
990
1162
  amount: string;
991
1163
  open_date: string;
992
1164
  };
993
- webhooksell: {
1165
+ webhookexit: {
994
1166
  limit: string;
995
1167
  traderId: any;
996
1168
  stake_currency: string;
@@ -1005,10 +1177,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1005
1177
  profit_amount: string;
1006
1178
  profit_ratio: string;
1007
1179
  close_date: string;
1008
- sell_reason: string;
1180
+ exit_reason: string;
1009
1181
  order_type: string;
1010
1182
  };
1011
- webhooksellcancel: {
1183
+ webhookexitcancel: {
1012
1184
  limit: string;
1013
1185
  traderId: any;
1014
1186
  stake_currency: string;
@@ -1018,7 +1190,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1018
1190
  profit_amount: string;
1019
1191
  profit_ratio: string;
1020
1192
  };
1021
- webhooksellfill: {
1193
+ webhookexitfill: {
1022
1194
  traderId: any;
1023
1195
  event: string;
1024
1196
  userId: string;
@@ -1093,12 +1265,12 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1093
1265
  timeinforce?: unknown;
1094
1266
  order_types?: {
1095
1267
  stoploss?: string | undefined;
1096
- buy?: "Limit" | "Market" | undefined;
1097
- sell?: "Limit" | "Market" | undefined;
1268
+ entry?: "Limit" | "Market" | undefined;
1269
+ exit?: "Limit" | "Market" | undefined;
1270
+ stoploss_on_exchange?: boolean | undefined;
1098
1271
  emergencysell?: "Limit" | "Market" | undefined;
1099
1272
  forcebuy?: "Limit" | "Market" | undefined;
1100
1273
  forcesell?: "Limit" | "Market" | undefined;
1101
- stoploss_on_exchange?: boolean | undefined;
1102
1274
  stoploss_on_exchange_interval?: number | undefined;
1103
1275
  stoploss_on_exchange_limit_ratio?: number | undefined;
1104
1276
  } | undefined;
@@ -1136,6 +1308,41 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1136
1308
  }>;
1137
1309
  pod: any;
1138
1310
  trader: Partial<{
1311
+ telegram?: {
1312
+ access_hash?: string | null | undefined;
1313
+ invite_link?: string | undefined;
1314
+ enabled: boolean;
1315
+ token: string;
1316
+ chat_id: any;
1317
+ allow_custom_messages: boolean;
1318
+ notification_settings: {
1319
+ status: "silent" | "on" | "off";
1320
+ entry: "silent" | "on" | "off";
1321
+ exit: {
1322
+ roi: "silent" | "on" | "off";
1323
+ emergency_exit: "silent" | "on" | "off";
1324
+ force_exit: "silent" | "on" | "off";
1325
+ exit_signal: "silent" | "on" | "off";
1326
+ trailing_stop_loss: "silent" | "on" | "off";
1327
+ stop_loss: "silent" | "on" | "off";
1328
+ stoploss_on_exchange: "silent" | "on" | "off";
1329
+ custom_exit: "silent" | "on" | "off";
1330
+ partial_exit: "silent" | "on" | "off";
1331
+ };
1332
+ warning: "silent" | "on" | "off";
1333
+ startup: "silent" | "on" | "off";
1334
+ entry_fill: "silent" | "on" | "off";
1335
+ entry_cancel: "silent" | "on" | "off";
1336
+ exit_cancel: "silent" | "on" | "off";
1337
+ exit_fill: "silent" | "on" | "off";
1338
+ protection_trigger: "silent" | "on" | "off";
1339
+ protection_trigger_global: "silent" | "on" | "off";
1340
+ strategy_msg: "silent" | "on" | "off";
1341
+ show_candle: "off" | "ohlc";
1342
+ };
1343
+ reload: boolean;
1344
+ balance_dust_level: number;
1345
+ } | undefined;
1139
1346
  dry_run_wallet?: number | undefined;
1140
1347
  max_open_trades?: number | undefined;
1141
1348
  plugins?: {
@@ -1156,15 +1363,15 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1156
1363
  tradable_balance_ratio?: number | undefined;
1157
1364
  webhook?: {
1158
1365
  url: string;
1159
- format: string;
1160
1366
  enabled: boolean;
1367
+ format: string;
1161
1368
  webhookstatus: {
1162
1369
  traderId: any;
1163
1370
  event: string;
1164
1371
  status: string;
1165
1372
  userId: string;
1166
1373
  };
1167
- webhookbuy: {
1374
+ webhookentry: {
1168
1375
  limit: string;
1169
1376
  traderId: any;
1170
1377
  stake_amount: string;
@@ -1174,7 +1381,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1174
1381
  pair: string;
1175
1382
  fiat_currency: string;
1176
1383
  };
1177
- webhookbuycancel: {
1384
+ webhookentrycancel: {
1178
1385
  limit: string;
1179
1386
  traderId: any;
1180
1387
  stake_amount: string;
@@ -1184,7 +1391,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1184
1391
  pair: string;
1185
1392
  fiat_currency: string;
1186
1393
  };
1187
- webhookbuyfill: {
1394
+ webhookentryfill: {
1188
1395
  traderId: any;
1189
1396
  stake_amount: string;
1190
1397
  stake_currency: string;
@@ -1196,7 +1403,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1196
1403
  amount: string;
1197
1404
  open_date: string;
1198
1405
  };
1199
- webhooksell: {
1406
+ webhookexit: {
1200
1407
  limit: string;
1201
1408
  traderId: any;
1202
1409
  stake_currency: string;
@@ -1211,10 +1418,10 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1211
1418
  profit_amount: string;
1212
1419
  profit_ratio: string;
1213
1420
  close_date: string;
1214
- sell_reason: string;
1421
+ exit_reason: string;
1215
1422
  order_type: string;
1216
1423
  };
1217
- webhooksellcancel: {
1424
+ webhookexitcancel: {
1218
1425
  limit: string;
1219
1426
  traderId: any;
1220
1427
  stake_currency: string;
@@ -1224,7 +1431,7 @@ export declare const tradersPodsExternalResolver: import("@feathersjs/schema").R
1224
1431
  profit_amount: string;
1225
1432
  profit_ratio: string;
1226
1433
  };
1227
- webhooksellfill: {
1434
+ webhookexitfill: {
1228
1435
  traderId: any;
1229
1436
  event: string;
1230
1437
  userId: string;
@@ -1335,7 +1542,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1335
1542
  traderId: import("@feathersjs/typebox").TAny;
1336
1543
  userId: import("@feathersjs/typebox").TString<string>;
1337
1544
  }>;
1338
- webhookbuy: import("@feathersjs/typebox").TObject<{
1545
+ webhookentry: import("@feathersjs/typebox").TObject<{
1339
1546
  event: import("@feathersjs/typebox").TString<string>;
1340
1547
  traderId: import("@feathersjs/typebox").TAny;
1341
1548
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1345,7 +1552,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1345
1552
  stake_currency: import("@feathersjs/typebox").TString<string>;
1346
1553
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1347
1554
  }>;
1348
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
1555
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
1349
1556
  event: import("@feathersjs/typebox").TString<string>;
1350
1557
  traderId: import("@feathersjs/typebox").TAny;
1351
1558
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1355,7 +1562,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1355
1562
  stake_currency: import("@feathersjs/typebox").TString<string>;
1356
1563
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1357
1564
  }>;
1358
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
1565
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
1359
1566
  event: import("@feathersjs/typebox").TString<string>;
1360
1567
  userId: import("@feathersjs/typebox").TString<string>;
1361
1568
  traderId: import("@feathersjs/typebox").TAny;
@@ -1367,7 +1574,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1367
1574
  stake_amount: import("@feathersjs/typebox").TString<string>;
1368
1575
  stake_currency: import("@feathersjs/typebox").TString<string>;
1369
1576
  }>;
1370
- webhooksell: import("@feathersjs/typebox").TObject<{
1577
+ webhookexit: import("@feathersjs/typebox").TObject<{
1371
1578
  event: import("@feathersjs/typebox").TString<string>;
1372
1579
  traderId: import("@feathersjs/typebox").TAny;
1373
1580
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1382,10 +1589,10 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1382
1589
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1383
1590
  open_date: import("@feathersjs/typebox").TString<string>;
1384
1591
  close_date: import("@feathersjs/typebox").TString<string>;
1385
- sell_reason: import("@feathersjs/typebox").TString<string>;
1592
+ exit_reason: import("@feathersjs/typebox").TString<string>;
1386
1593
  order_type: import("@feathersjs/typebox").TString<string>;
1387
1594
  }>;
1388
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
1595
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
1389
1596
  event: import("@feathersjs/typebox").TString<string>;
1390
1597
  traderId: import("@feathersjs/typebox").TAny;
1391
1598
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1395,7 +1602,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1395
1602
  stake_currency: import("@feathersjs/typebox").TString<string>;
1396
1603
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1397
1604
  }>;
1398
- webhooksellfill: import("@feathersjs/typebox").TObject<{
1605
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
1399
1606
  event: import("@feathersjs/typebox").TString<string>;
1400
1607
  traderId: import("@feathersjs/typebox").TAny;
1401
1608
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1429,6 +1636,41 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1429
1636
  username: import("@feathersjs/typebox").TString<string>;
1430
1637
  password: import("@feathersjs/typebox").TString<string>;
1431
1638
  }>;
1639
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1640
+ enabled: import("@feathersjs/typebox").TBoolean;
1641
+ token: import("@feathersjs/typebox").TString<string>;
1642
+ chat_id: import("@feathersjs/typebox").TAny;
1643
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
1644
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1645
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
1646
+ notification_settings: import("@feathersjs/typebox").TObject<{
1647
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1648
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1649
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1650
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1651
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1652
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1653
+ exit: import("@feathersjs/typebox").TObject<{
1654
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1655
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1656
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1657
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1658
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1659
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1660
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1661
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1662
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1663
+ }>;
1664
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1665
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1666
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1667
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1668
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1669
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
1670
+ }>;
1671
+ reload: import("@feathersjs/typebox").TBoolean;
1672
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
1673
+ }>>;
1432
1674
  pod: import("@feathersjs/typebox").TString<string>;
1433
1675
  host: import("@feathersjs/typebox").TString<string>;
1434
1676
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1473,7 +1715,6 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1473
1715
  }>>>;
1474
1716
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
1475
1717
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1476
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1477
1718
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1478
1719
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1479
1720
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -1506,8 +1747,8 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1506
1747
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1507
1748
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
1508
1749
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1509
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1510
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1750
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1751
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1511
1752
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1512
1753
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1513
1754
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -1596,7 +1837,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1596
1837
  traderId: import("@feathersjs/typebox").TAny;
1597
1838
  userId: import("@feathersjs/typebox").TString<string>;
1598
1839
  }>;
1599
- webhookbuy: import("@feathersjs/typebox").TObject<{
1840
+ webhookentry: import("@feathersjs/typebox").TObject<{
1600
1841
  event: import("@feathersjs/typebox").TString<string>;
1601
1842
  traderId: import("@feathersjs/typebox").TAny;
1602
1843
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1606,7 +1847,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1606
1847
  stake_currency: import("@feathersjs/typebox").TString<string>;
1607
1848
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1608
1849
  }>;
1609
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
1850
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
1610
1851
  event: import("@feathersjs/typebox").TString<string>;
1611
1852
  traderId: import("@feathersjs/typebox").TAny;
1612
1853
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1616,7 +1857,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1616
1857
  stake_currency: import("@feathersjs/typebox").TString<string>;
1617
1858
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1618
1859
  }>;
1619
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
1860
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
1620
1861
  event: import("@feathersjs/typebox").TString<string>;
1621
1862
  userId: import("@feathersjs/typebox").TString<string>;
1622
1863
  traderId: import("@feathersjs/typebox").TAny;
@@ -1628,7 +1869,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1628
1869
  stake_amount: import("@feathersjs/typebox").TString<string>;
1629
1870
  stake_currency: import("@feathersjs/typebox").TString<string>;
1630
1871
  }>;
1631
- webhooksell: import("@feathersjs/typebox").TObject<{
1872
+ webhookexit: import("@feathersjs/typebox").TObject<{
1632
1873
  event: import("@feathersjs/typebox").TString<string>;
1633
1874
  traderId: import("@feathersjs/typebox").TAny;
1634
1875
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1643,10 +1884,10 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1643
1884
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1644
1885
  open_date: import("@feathersjs/typebox").TString<string>;
1645
1886
  close_date: import("@feathersjs/typebox").TString<string>;
1646
- sell_reason: import("@feathersjs/typebox").TString<string>;
1887
+ exit_reason: import("@feathersjs/typebox").TString<string>;
1647
1888
  order_type: import("@feathersjs/typebox").TString<string>;
1648
1889
  }>;
1649
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
1890
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
1650
1891
  event: import("@feathersjs/typebox").TString<string>;
1651
1892
  traderId: import("@feathersjs/typebox").TAny;
1652
1893
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1656,7 +1897,7 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1656
1897
  stake_currency: import("@feathersjs/typebox").TString<string>;
1657
1898
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1658
1899
  }>;
1659
- webhooksellfill: import("@feathersjs/typebox").TObject<{
1900
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
1660
1901
  event: import("@feathersjs/typebox").TString<string>;
1661
1902
  traderId: import("@feathersjs/typebox").TAny;
1662
1903
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1690,6 +1931,41 @@ export declare const tradersPodsDataSchema: import("@feathersjs/typebox").TPick<
1690
1931
  username: import("@feathersjs/typebox").TString<string>;
1691
1932
  password: import("@feathersjs/typebox").TString<string>;
1692
1933
  }>;
1934
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1935
+ enabled: import("@feathersjs/typebox").TBoolean;
1936
+ token: import("@feathersjs/typebox").TString<string>;
1937
+ chat_id: import("@feathersjs/typebox").TAny;
1938
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
1939
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1940
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
1941
+ notification_settings: import("@feathersjs/typebox").TObject<{
1942
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1943
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1944
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1945
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1946
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1947
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1948
+ exit: import("@feathersjs/typebox").TObject<{
1949
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1950
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1951
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1952
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1953
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1954
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1955
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1956
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1957
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1958
+ }>;
1959
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1960
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1961
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1962
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1963
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1964
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
1965
+ }>;
1966
+ reload: import("@feathersjs/typebox").TBoolean;
1967
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
1968
+ }>>;
1693
1969
  pod: import("@feathersjs/typebox").TString<string>;
1694
1970
  host: import("@feathersjs/typebox").TString<string>;
1695
1971
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1726,13 +2002,13 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1726
2002
  name?: any;
1727
2003
  apiKey?: string | undefined;
1728
2004
  secret?: string | undefined;
1729
- key?: string | undefined;
1730
2005
  avatar?: any;
1731
2006
  createdAt?: any;
1732
2007
  updatedAt?: any;
1733
2008
  userId?: string | {} | undefined;
1734
2009
  which?: string | undefined;
1735
2010
  connected?: boolean | undefined;
2011
+ token?: string | undefined;
1736
2012
  downloaded?: {
1737
2013
  updatedAt: any;
1738
2014
  size: string;
@@ -1769,7 +2045,6 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1769
2045
  twofa?: string | undefined;
1770
2046
  privateKey?: string | undefined;
1771
2047
  walletAddress?: string | undefined;
1772
- token?: string | undefined;
1773
2048
  __v?: any;
1774
2049
  _id: string | {};
1775
2050
  }>;
@@ -1786,6 +2061,41 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1786
2061
  type: string;
1787
2062
  } | undefined;
1788
2063
  traders?: {
2064
+ telegram?: {
2065
+ access_hash?: string | null | undefined;
2066
+ invite_link?: string | undefined;
2067
+ enabled: boolean;
2068
+ token: string;
2069
+ chat_id: any;
2070
+ allow_custom_messages: boolean;
2071
+ notification_settings: {
2072
+ status: "silent" | "on" | "off";
2073
+ entry: "silent" | "on" | "off";
2074
+ exit: {
2075
+ roi: "silent" | "on" | "off";
2076
+ emergency_exit: "silent" | "on" | "off";
2077
+ force_exit: "silent" | "on" | "off";
2078
+ exit_signal: "silent" | "on" | "off";
2079
+ trailing_stop_loss: "silent" | "on" | "off";
2080
+ stop_loss: "silent" | "on" | "off";
2081
+ stoploss_on_exchange: "silent" | "on" | "off";
2082
+ custom_exit: "silent" | "on" | "off";
2083
+ partial_exit: "silent" | "on" | "off";
2084
+ };
2085
+ warning: "silent" | "on" | "off";
2086
+ startup: "silent" | "on" | "off";
2087
+ entry_fill: "silent" | "on" | "off";
2088
+ entry_cancel: "silent" | "on" | "off";
2089
+ exit_cancel: "silent" | "on" | "off";
2090
+ exit_fill: "silent" | "on" | "off";
2091
+ protection_trigger: "silent" | "on" | "off";
2092
+ protection_trigger_global: "silent" | "on" | "off";
2093
+ strategy_msg: "silent" | "on" | "off";
2094
+ show_candle: "off" | "ohlc";
2095
+ };
2096
+ reload: boolean;
2097
+ balance_dust_level: number;
2098
+ } | undefined;
1789
2099
  dry_run_wallet?: number | undefined;
1790
2100
  max_open_trades?: number | undefined;
1791
2101
  plugins?: {
@@ -1806,15 +2116,15 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1806
2116
  tradable_balance_ratio?: number | undefined;
1807
2117
  webhook?: {
1808
2118
  url: string;
1809
- format: string;
1810
2119
  enabled: boolean;
2120
+ format: string;
1811
2121
  webhookstatus: {
1812
2122
  traderId: any;
1813
2123
  event: string;
1814
2124
  status: string;
1815
2125
  userId: string;
1816
2126
  };
1817
- webhookbuy: {
2127
+ webhookentry: {
1818
2128
  limit: string;
1819
2129
  traderId: any;
1820
2130
  stake_amount: string;
@@ -1824,7 +2134,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1824
2134
  pair: string;
1825
2135
  fiat_currency: string;
1826
2136
  };
1827
- webhookbuycancel: {
2137
+ webhookentrycancel: {
1828
2138
  limit: string;
1829
2139
  traderId: any;
1830
2140
  stake_amount: string;
@@ -1834,7 +2144,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1834
2144
  pair: string;
1835
2145
  fiat_currency: string;
1836
2146
  };
1837
- webhookbuyfill: {
2147
+ webhookentryfill: {
1838
2148
  traderId: any;
1839
2149
  stake_amount: string;
1840
2150
  stake_currency: string;
@@ -1846,7 +2156,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1846
2156
  amount: string;
1847
2157
  open_date: string;
1848
2158
  };
1849
- webhooksell: {
2159
+ webhookexit: {
1850
2160
  limit: string;
1851
2161
  traderId: any;
1852
2162
  stake_currency: string;
@@ -1861,10 +2171,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1861
2171
  profit_amount: string;
1862
2172
  profit_ratio: string;
1863
2173
  close_date: string;
1864
- sell_reason: string;
2174
+ exit_reason: string;
1865
2175
  order_type: string;
1866
2176
  };
1867
- webhooksellcancel: {
2177
+ webhookexitcancel: {
1868
2178
  limit: string;
1869
2179
  traderId: any;
1870
2180
  stake_currency: string;
@@ -1874,7 +2184,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1874
2184
  profit_amount: string;
1875
2185
  profit_ratio: string;
1876
2186
  };
1877
- webhooksellfill: {
2187
+ webhookexitfill: {
1878
2188
  traderId: any;
1879
2189
  event: string;
1880
2190
  userId: string;
@@ -1949,12 +2259,12 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1949
2259
  timeinforce?: unknown;
1950
2260
  order_types?: {
1951
2261
  stoploss?: string | undefined;
1952
- buy?: "Limit" | "Market" | undefined;
1953
- sell?: "Limit" | "Market" | undefined;
2262
+ entry?: "Limit" | "Market" | undefined;
2263
+ exit?: "Limit" | "Market" | undefined;
2264
+ stoploss_on_exchange?: boolean | undefined;
1954
2265
  emergencysell?: "Limit" | "Market" | undefined;
1955
2266
  forcebuy?: "Limit" | "Market" | undefined;
1956
2267
  forcesell?: "Limit" | "Market" | undefined;
1957
- stoploss_on_exchange?: boolean | undefined;
1958
2268
  stoploss_on_exchange_interval?: number | undefined;
1959
2269
  stoploss_on_exchange_limit_ratio?: number | undefined;
1960
2270
  } | undefined;
@@ -1992,6 +2302,41 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
1992
2302
  }>;
1993
2303
  pod: any;
1994
2304
  trader: Partial<{
2305
+ telegram?: {
2306
+ access_hash?: string | null | undefined;
2307
+ invite_link?: string | undefined;
2308
+ enabled: boolean;
2309
+ token: string;
2310
+ chat_id: any;
2311
+ allow_custom_messages: boolean;
2312
+ notification_settings: {
2313
+ status: "silent" | "on" | "off";
2314
+ entry: "silent" | "on" | "off";
2315
+ exit: {
2316
+ roi: "silent" | "on" | "off";
2317
+ emergency_exit: "silent" | "on" | "off";
2318
+ force_exit: "silent" | "on" | "off";
2319
+ exit_signal: "silent" | "on" | "off";
2320
+ trailing_stop_loss: "silent" | "on" | "off";
2321
+ stop_loss: "silent" | "on" | "off";
2322
+ stoploss_on_exchange: "silent" | "on" | "off";
2323
+ custom_exit: "silent" | "on" | "off";
2324
+ partial_exit: "silent" | "on" | "off";
2325
+ };
2326
+ warning: "silent" | "on" | "off";
2327
+ startup: "silent" | "on" | "off";
2328
+ entry_fill: "silent" | "on" | "off";
2329
+ entry_cancel: "silent" | "on" | "off";
2330
+ exit_cancel: "silent" | "on" | "off";
2331
+ exit_fill: "silent" | "on" | "off";
2332
+ protection_trigger: "silent" | "on" | "off";
2333
+ protection_trigger_global: "silent" | "on" | "off";
2334
+ strategy_msg: "silent" | "on" | "off";
2335
+ show_candle: "off" | "ohlc";
2336
+ };
2337
+ reload: boolean;
2338
+ balance_dust_level: number;
2339
+ } | undefined;
1995
2340
  dry_run_wallet?: number | undefined;
1996
2341
  max_open_trades?: number | undefined;
1997
2342
  plugins?: {
@@ -2012,15 +2357,15 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2012
2357
  tradable_balance_ratio?: number | undefined;
2013
2358
  webhook?: {
2014
2359
  url: string;
2015
- format: string;
2016
2360
  enabled: boolean;
2361
+ format: string;
2017
2362
  webhookstatus: {
2018
2363
  traderId: any;
2019
2364
  event: string;
2020
2365
  status: string;
2021
2366
  userId: string;
2022
2367
  };
2023
- webhookbuy: {
2368
+ webhookentry: {
2024
2369
  limit: string;
2025
2370
  traderId: any;
2026
2371
  stake_amount: string;
@@ -2030,7 +2375,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2030
2375
  pair: string;
2031
2376
  fiat_currency: string;
2032
2377
  };
2033
- webhookbuycancel: {
2378
+ webhookentrycancel: {
2034
2379
  limit: string;
2035
2380
  traderId: any;
2036
2381
  stake_amount: string;
@@ -2040,7 +2385,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2040
2385
  pair: string;
2041
2386
  fiat_currency: string;
2042
2387
  };
2043
- webhookbuyfill: {
2388
+ webhookentryfill: {
2044
2389
  traderId: any;
2045
2390
  stake_amount: string;
2046
2391
  stake_currency: string;
@@ -2052,7 +2397,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2052
2397
  amount: string;
2053
2398
  open_date: string;
2054
2399
  };
2055
- webhooksell: {
2400
+ webhookexit: {
2056
2401
  limit: string;
2057
2402
  traderId: any;
2058
2403
  stake_currency: string;
@@ -2067,10 +2412,10 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2067
2412
  profit_amount: string;
2068
2413
  profit_ratio: string;
2069
2414
  close_date: string;
2070
- sell_reason: string;
2415
+ exit_reason: string;
2071
2416
  order_type: string;
2072
2417
  };
2073
- webhooksellcancel: {
2418
+ webhookexitcancel: {
2074
2419
  limit: string;
2075
2420
  traderId: any;
2076
2421
  stake_currency: string;
@@ -2080,7 +2425,7 @@ export declare const tradersPodsDataResolver: import("@feathersjs/schema").Resol
2080
2425
  profit_amount: string;
2081
2426
  profit_ratio: string;
2082
2427
  };
2083
- webhooksellfill: {
2428
+ webhookexitfill: {
2084
2429
  traderId: any;
2085
2430
  event: string;
2086
2431
  userId: string;
@@ -2191,7 +2536,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2191
2536
  traderId: import("@feathersjs/typebox").TAny;
2192
2537
  userId: import("@feathersjs/typebox").TString<string>;
2193
2538
  }>;
2194
- webhookbuy: import("@feathersjs/typebox").TObject<{
2539
+ webhookentry: import("@feathersjs/typebox").TObject<{
2195
2540
  event: import("@feathersjs/typebox").TString<string>;
2196
2541
  traderId: import("@feathersjs/typebox").TAny;
2197
2542
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2201,7 +2546,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2201
2546
  stake_currency: import("@feathersjs/typebox").TString<string>;
2202
2547
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2203
2548
  }>;
2204
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
2549
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
2205
2550
  event: import("@feathersjs/typebox").TString<string>;
2206
2551
  traderId: import("@feathersjs/typebox").TAny;
2207
2552
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2211,7 +2556,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2211
2556
  stake_currency: import("@feathersjs/typebox").TString<string>;
2212
2557
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2213
2558
  }>;
2214
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
2559
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
2215
2560
  event: import("@feathersjs/typebox").TString<string>;
2216
2561
  userId: import("@feathersjs/typebox").TString<string>;
2217
2562
  traderId: import("@feathersjs/typebox").TAny;
@@ -2223,7 +2568,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2223
2568
  stake_amount: import("@feathersjs/typebox").TString<string>;
2224
2569
  stake_currency: import("@feathersjs/typebox").TString<string>;
2225
2570
  }>;
2226
- webhooksell: import("@feathersjs/typebox").TObject<{
2571
+ webhookexit: import("@feathersjs/typebox").TObject<{
2227
2572
  event: import("@feathersjs/typebox").TString<string>;
2228
2573
  traderId: import("@feathersjs/typebox").TAny;
2229
2574
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2238,10 +2583,10 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2238
2583
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2239
2584
  open_date: import("@feathersjs/typebox").TString<string>;
2240
2585
  close_date: import("@feathersjs/typebox").TString<string>;
2241
- sell_reason: import("@feathersjs/typebox").TString<string>;
2586
+ exit_reason: import("@feathersjs/typebox").TString<string>;
2242
2587
  order_type: import("@feathersjs/typebox").TString<string>;
2243
2588
  }>;
2244
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
2589
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
2245
2590
  event: import("@feathersjs/typebox").TString<string>;
2246
2591
  traderId: import("@feathersjs/typebox").TAny;
2247
2592
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2251,7 +2596,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2251
2596
  stake_currency: import("@feathersjs/typebox").TString<string>;
2252
2597
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2253
2598
  }>;
2254
- webhooksellfill: import("@feathersjs/typebox").TObject<{
2599
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
2255
2600
  event: import("@feathersjs/typebox").TString<string>;
2256
2601
  traderId: import("@feathersjs/typebox").TAny;
2257
2602
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2285,6 +2630,41 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2285
2630
  username: import("@feathersjs/typebox").TString<string>;
2286
2631
  password: import("@feathersjs/typebox").TString<string>;
2287
2632
  }>;
2633
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2634
+ enabled: import("@feathersjs/typebox").TBoolean;
2635
+ token: import("@feathersjs/typebox").TString<string>;
2636
+ chat_id: import("@feathersjs/typebox").TAny;
2637
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
2638
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2639
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
2640
+ notification_settings: import("@feathersjs/typebox").TObject<{
2641
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2642
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2643
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2644
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2645
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2646
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2647
+ exit: import("@feathersjs/typebox").TObject<{
2648
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2649
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2650
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2651
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2652
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2653
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2654
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2655
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2656
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2657
+ }>;
2658
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2659
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2660
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2661
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2662
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2663
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
2664
+ }>;
2665
+ reload: import("@feathersjs/typebox").TBoolean;
2666
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
2667
+ }>>;
2288
2668
  pod: import("@feathersjs/typebox").TString<string>;
2289
2669
  host: import("@feathersjs/typebox").TString<string>;
2290
2670
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2329,7 +2709,6 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2329
2709
  }>>>;
2330
2710
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
2331
2711
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2332
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2333
2712
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2334
2713
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2335
2714
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -2362,8 +2741,8 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2362
2741
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
2363
2742
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
2364
2743
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2365
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
2366
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
2744
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
2745
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
2367
2746
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
2368
2747
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
2369
2748
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -2452,7 +2831,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2452
2831
  traderId: import("@feathersjs/typebox").TAny;
2453
2832
  userId: import("@feathersjs/typebox").TString<string>;
2454
2833
  }>;
2455
- webhookbuy: import("@feathersjs/typebox").TObject<{
2834
+ webhookentry: import("@feathersjs/typebox").TObject<{
2456
2835
  event: import("@feathersjs/typebox").TString<string>;
2457
2836
  traderId: import("@feathersjs/typebox").TAny;
2458
2837
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2462,7 +2841,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2462
2841
  stake_currency: import("@feathersjs/typebox").TString<string>;
2463
2842
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2464
2843
  }>;
2465
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
2844
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
2466
2845
  event: import("@feathersjs/typebox").TString<string>;
2467
2846
  traderId: import("@feathersjs/typebox").TAny;
2468
2847
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2472,7 +2851,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2472
2851
  stake_currency: import("@feathersjs/typebox").TString<string>;
2473
2852
  fiat_currency: import("@feathersjs/typebox").TString<string>;
2474
2853
  }>;
2475
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
2854
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
2476
2855
  event: import("@feathersjs/typebox").TString<string>;
2477
2856
  userId: import("@feathersjs/typebox").TString<string>;
2478
2857
  traderId: import("@feathersjs/typebox").TAny;
@@ -2484,7 +2863,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2484
2863
  stake_amount: import("@feathersjs/typebox").TString<string>;
2485
2864
  stake_currency: import("@feathersjs/typebox").TString<string>;
2486
2865
  }>;
2487
- webhooksell: import("@feathersjs/typebox").TObject<{
2866
+ webhookexit: import("@feathersjs/typebox").TObject<{
2488
2867
  event: import("@feathersjs/typebox").TString<string>;
2489
2868
  traderId: import("@feathersjs/typebox").TAny;
2490
2869
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2499,10 +2878,10 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2499
2878
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2500
2879
  open_date: import("@feathersjs/typebox").TString<string>;
2501
2880
  close_date: import("@feathersjs/typebox").TString<string>;
2502
- sell_reason: import("@feathersjs/typebox").TString<string>;
2881
+ exit_reason: import("@feathersjs/typebox").TString<string>;
2503
2882
  order_type: import("@feathersjs/typebox").TString<string>;
2504
2883
  }>;
2505
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
2884
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
2506
2885
  event: import("@feathersjs/typebox").TString<string>;
2507
2886
  traderId: import("@feathersjs/typebox").TAny;
2508
2887
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2512,7 +2891,7 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2512
2891
  stake_currency: import("@feathersjs/typebox").TString<string>;
2513
2892
  profit_ratio: import("@feathersjs/typebox").TString<string>;
2514
2893
  }>;
2515
- webhooksellfill: import("@feathersjs/typebox").TObject<{
2894
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
2516
2895
  event: import("@feathersjs/typebox").TString<string>;
2517
2896
  traderId: import("@feathersjs/typebox").TAny;
2518
2897
  userId: import("@feathersjs/typebox").TString<string>;
@@ -2546,6 +2925,41 @@ export declare const tradersPodsPatchSchema: import("@feathersjs/typebox").TPart
2546
2925
  username: import("@feathersjs/typebox").TString<string>;
2547
2926
  password: import("@feathersjs/typebox").TString<string>;
2548
2927
  }>;
2928
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
2929
+ enabled: import("@feathersjs/typebox").TBoolean;
2930
+ token: import("@feathersjs/typebox").TString<string>;
2931
+ chat_id: import("@feathersjs/typebox").TAny;
2932
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
2933
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
2934
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
2935
+ notification_settings: import("@feathersjs/typebox").TObject<{
2936
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2937
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2938
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2939
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2940
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2941
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2942
+ exit: import("@feathersjs/typebox").TObject<{
2943
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2944
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2945
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2946
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2947
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2948
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2949
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2950
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2951
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2952
+ }>;
2953
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2954
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2955
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2956
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2957
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2958
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
2959
+ }>;
2960
+ reload: import("@feathersjs/typebox").TBoolean;
2961
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
2962
+ }>>;
2549
2963
  pod: import("@feathersjs/typebox").TString<string>;
2550
2964
  host: import("@feathersjs/typebox").TString<string>;
2551
2965
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -2582,13 +2996,13 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2582
2996
  name?: any;
2583
2997
  apiKey?: string | undefined;
2584
2998
  secret?: string | undefined;
2585
- key?: string | undefined;
2586
2999
  avatar?: any;
2587
3000
  createdAt?: any;
2588
3001
  updatedAt?: any;
2589
3002
  userId?: string | {} | undefined;
2590
3003
  which?: string | undefined;
2591
3004
  connected?: boolean | undefined;
3005
+ token?: string | undefined;
2592
3006
  downloaded?: {
2593
3007
  updatedAt: any;
2594
3008
  size: string;
@@ -2625,7 +3039,6 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2625
3039
  twofa?: string | undefined;
2626
3040
  privateKey?: string | undefined;
2627
3041
  walletAddress?: string | undefined;
2628
- token?: string | undefined;
2629
3042
  __v?: any;
2630
3043
  _id: string | {};
2631
3044
  }>;
@@ -2642,6 +3055,41 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2642
3055
  type: string;
2643
3056
  } | undefined;
2644
3057
  traders?: {
3058
+ telegram?: {
3059
+ access_hash?: string | null | undefined;
3060
+ invite_link?: string | undefined;
3061
+ enabled: boolean;
3062
+ token: string;
3063
+ chat_id: any;
3064
+ allow_custom_messages: boolean;
3065
+ notification_settings: {
3066
+ status: "silent" | "on" | "off";
3067
+ entry: "silent" | "on" | "off";
3068
+ exit: {
3069
+ roi: "silent" | "on" | "off";
3070
+ emergency_exit: "silent" | "on" | "off";
3071
+ force_exit: "silent" | "on" | "off";
3072
+ exit_signal: "silent" | "on" | "off";
3073
+ trailing_stop_loss: "silent" | "on" | "off";
3074
+ stop_loss: "silent" | "on" | "off";
3075
+ stoploss_on_exchange: "silent" | "on" | "off";
3076
+ custom_exit: "silent" | "on" | "off";
3077
+ partial_exit: "silent" | "on" | "off";
3078
+ };
3079
+ warning: "silent" | "on" | "off";
3080
+ startup: "silent" | "on" | "off";
3081
+ entry_fill: "silent" | "on" | "off";
3082
+ entry_cancel: "silent" | "on" | "off";
3083
+ exit_cancel: "silent" | "on" | "off";
3084
+ exit_fill: "silent" | "on" | "off";
3085
+ protection_trigger: "silent" | "on" | "off";
3086
+ protection_trigger_global: "silent" | "on" | "off";
3087
+ strategy_msg: "silent" | "on" | "off";
3088
+ show_candle: "off" | "ohlc";
3089
+ };
3090
+ reload: boolean;
3091
+ balance_dust_level: number;
3092
+ } | undefined;
2645
3093
  dry_run_wallet?: number | undefined;
2646
3094
  max_open_trades?: number | undefined;
2647
3095
  plugins?: {
@@ -2662,15 +3110,15 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2662
3110
  tradable_balance_ratio?: number | undefined;
2663
3111
  webhook?: {
2664
3112
  url: string;
2665
- format: string;
2666
3113
  enabled: boolean;
3114
+ format: string;
2667
3115
  webhookstatus: {
2668
3116
  traderId: any;
2669
3117
  event: string;
2670
3118
  status: string;
2671
3119
  userId: string;
2672
3120
  };
2673
- webhookbuy: {
3121
+ webhookentry: {
2674
3122
  limit: string;
2675
3123
  traderId: any;
2676
3124
  stake_amount: string;
@@ -2680,7 +3128,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2680
3128
  pair: string;
2681
3129
  fiat_currency: string;
2682
3130
  };
2683
- webhookbuycancel: {
3131
+ webhookentrycancel: {
2684
3132
  limit: string;
2685
3133
  traderId: any;
2686
3134
  stake_amount: string;
@@ -2690,7 +3138,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2690
3138
  pair: string;
2691
3139
  fiat_currency: string;
2692
3140
  };
2693
- webhookbuyfill: {
3141
+ webhookentryfill: {
2694
3142
  traderId: any;
2695
3143
  stake_amount: string;
2696
3144
  stake_currency: string;
@@ -2702,7 +3150,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2702
3150
  amount: string;
2703
3151
  open_date: string;
2704
3152
  };
2705
- webhooksell: {
3153
+ webhookexit: {
2706
3154
  limit: string;
2707
3155
  traderId: any;
2708
3156
  stake_currency: string;
@@ -2717,10 +3165,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2717
3165
  profit_amount: string;
2718
3166
  profit_ratio: string;
2719
3167
  close_date: string;
2720
- sell_reason: string;
3168
+ exit_reason: string;
2721
3169
  order_type: string;
2722
3170
  };
2723
- webhooksellcancel: {
3171
+ webhookexitcancel: {
2724
3172
  limit: string;
2725
3173
  traderId: any;
2726
3174
  stake_currency: string;
@@ -2730,7 +3178,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2730
3178
  profit_amount: string;
2731
3179
  profit_ratio: string;
2732
3180
  };
2733
- webhooksellfill: {
3181
+ webhookexitfill: {
2734
3182
  traderId: any;
2735
3183
  event: string;
2736
3184
  userId: string;
@@ -2805,12 +3253,12 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2805
3253
  timeinforce?: unknown;
2806
3254
  order_types?: {
2807
3255
  stoploss?: string | undefined;
2808
- buy?: "Limit" | "Market" | undefined;
2809
- sell?: "Limit" | "Market" | undefined;
3256
+ entry?: "Limit" | "Market" | undefined;
3257
+ exit?: "Limit" | "Market" | undefined;
3258
+ stoploss_on_exchange?: boolean | undefined;
2810
3259
  emergencysell?: "Limit" | "Market" | undefined;
2811
3260
  forcebuy?: "Limit" | "Market" | undefined;
2812
3261
  forcesell?: "Limit" | "Market" | undefined;
2813
- stoploss_on_exchange?: boolean | undefined;
2814
3262
  stoploss_on_exchange_interval?: number | undefined;
2815
3263
  stoploss_on_exchange_limit_ratio?: number | undefined;
2816
3264
  } | undefined;
@@ -2848,6 +3296,41 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2848
3296
  }>;
2849
3297
  pod: any;
2850
3298
  trader: Partial<{
3299
+ telegram?: {
3300
+ access_hash?: string | null | undefined;
3301
+ invite_link?: string | undefined;
3302
+ enabled: boolean;
3303
+ token: string;
3304
+ chat_id: any;
3305
+ allow_custom_messages: boolean;
3306
+ notification_settings: {
3307
+ status: "silent" | "on" | "off";
3308
+ entry: "silent" | "on" | "off";
3309
+ exit: {
3310
+ roi: "silent" | "on" | "off";
3311
+ emergency_exit: "silent" | "on" | "off";
3312
+ force_exit: "silent" | "on" | "off";
3313
+ exit_signal: "silent" | "on" | "off";
3314
+ trailing_stop_loss: "silent" | "on" | "off";
3315
+ stop_loss: "silent" | "on" | "off";
3316
+ stoploss_on_exchange: "silent" | "on" | "off";
3317
+ custom_exit: "silent" | "on" | "off";
3318
+ partial_exit: "silent" | "on" | "off";
3319
+ };
3320
+ warning: "silent" | "on" | "off";
3321
+ startup: "silent" | "on" | "off";
3322
+ entry_fill: "silent" | "on" | "off";
3323
+ entry_cancel: "silent" | "on" | "off";
3324
+ exit_cancel: "silent" | "on" | "off";
3325
+ exit_fill: "silent" | "on" | "off";
3326
+ protection_trigger: "silent" | "on" | "off";
3327
+ protection_trigger_global: "silent" | "on" | "off";
3328
+ strategy_msg: "silent" | "on" | "off";
3329
+ show_candle: "off" | "ohlc";
3330
+ };
3331
+ reload: boolean;
3332
+ balance_dust_level: number;
3333
+ } | undefined;
2851
3334
  dry_run_wallet?: number | undefined;
2852
3335
  max_open_trades?: number | undefined;
2853
3336
  plugins?: {
@@ -2868,15 +3351,15 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2868
3351
  tradable_balance_ratio?: number | undefined;
2869
3352
  webhook?: {
2870
3353
  url: string;
2871
- format: string;
2872
3354
  enabled: boolean;
3355
+ format: string;
2873
3356
  webhookstatus: {
2874
3357
  traderId: any;
2875
3358
  event: string;
2876
3359
  status: string;
2877
3360
  userId: string;
2878
3361
  };
2879
- webhookbuy: {
3362
+ webhookentry: {
2880
3363
  limit: string;
2881
3364
  traderId: any;
2882
3365
  stake_amount: string;
@@ -2886,7 +3369,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2886
3369
  pair: string;
2887
3370
  fiat_currency: string;
2888
3371
  };
2889
- webhookbuycancel: {
3372
+ webhookentrycancel: {
2890
3373
  limit: string;
2891
3374
  traderId: any;
2892
3375
  stake_amount: string;
@@ -2896,7 +3379,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2896
3379
  pair: string;
2897
3380
  fiat_currency: string;
2898
3381
  };
2899
- webhookbuyfill: {
3382
+ webhookentryfill: {
2900
3383
  traderId: any;
2901
3384
  stake_amount: string;
2902
3385
  stake_currency: string;
@@ -2908,7 +3391,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2908
3391
  amount: string;
2909
3392
  open_date: string;
2910
3393
  };
2911
- webhooksell: {
3394
+ webhookexit: {
2912
3395
  limit: string;
2913
3396
  traderId: any;
2914
3397
  stake_currency: string;
@@ -2923,10 +3406,10 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2923
3406
  profit_amount: string;
2924
3407
  profit_ratio: string;
2925
3408
  close_date: string;
2926
- sell_reason: string;
3409
+ exit_reason: string;
2927
3410
  order_type: string;
2928
3411
  };
2929
- webhooksellcancel: {
3412
+ webhookexitcancel: {
2930
3413
  limit: string;
2931
3414
  traderId: any;
2932
3415
  stake_currency: string;
@@ -2936,7 +3419,7 @@ export declare const tradersPodsPatchResolver: import("@feathersjs/schema").Reso
2936
3419
  profit_amount: string;
2937
3420
  profit_ratio: string;
2938
3421
  };
2939
- webhooksellfill: {
3422
+ webhookexitfill: {
2940
3423
  traderId: any;
2941
3424
  event: string;
2942
3425
  userId: string;
@@ -3047,7 +3530,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3047
3530
  traderId: import("@feathersjs/typebox").TAny;
3048
3531
  userId: import("@feathersjs/typebox").TString<string>;
3049
3532
  }>;
3050
- webhookbuy: import("@feathersjs/typebox").TObject<{
3533
+ webhookentry: import("@feathersjs/typebox").TObject<{
3051
3534
  event: import("@feathersjs/typebox").TString<string>;
3052
3535
  traderId: import("@feathersjs/typebox").TAny;
3053
3536
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3057,7 +3540,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3057
3540
  stake_currency: import("@feathersjs/typebox").TString<string>;
3058
3541
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3059
3542
  }>;
3060
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
3543
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
3061
3544
  event: import("@feathersjs/typebox").TString<string>;
3062
3545
  traderId: import("@feathersjs/typebox").TAny;
3063
3546
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3067,7 +3550,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3067
3550
  stake_currency: import("@feathersjs/typebox").TString<string>;
3068
3551
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3069
3552
  }>;
3070
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
3553
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
3071
3554
  event: import("@feathersjs/typebox").TString<string>;
3072
3555
  userId: import("@feathersjs/typebox").TString<string>;
3073
3556
  traderId: import("@feathersjs/typebox").TAny;
@@ -3079,7 +3562,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3079
3562
  stake_amount: import("@feathersjs/typebox").TString<string>;
3080
3563
  stake_currency: import("@feathersjs/typebox").TString<string>;
3081
3564
  }>;
3082
- webhooksell: import("@feathersjs/typebox").TObject<{
3565
+ webhookexit: import("@feathersjs/typebox").TObject<{
3083
3566
  event: import("@feathersjs/typebox").TString<string>;
3084
3567
  traderId: import("@feathersjs/typebox").TAny;
3085
3568
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3094,10 +3577,10 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3094
3577
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3095
3578
  open_date: import("@feathersjs/typebox").TString<string>;
3096
3579
  close_date: import("@feathersjs/typebox").TString<string>;
3097
- sell_reason: import("@feathersjs/typebox").TString<string>;
3580
+ exit_reason: import("@feathersjs/typebox").TString<string>;
3098
3581
  order_type: import("@feathersjs/typebox").TString<string>;
3099
3582
  }>;
3100
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
3583
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
3101
3584
  event: import("@feathersjs/typebox").TString<string>;
3102
3585
  traderId: import("@feathersjs/typebox").TAny;
3103
3586
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3107,7 +3590,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3107
3590
  stake_currency: import("@feathersjs/typebox").TString<string>;
3108
3591
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3109
3592
  }>;
3110
- webhooksellfill: import("@feathersjs/typebox").TObject<{
3593
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
3111
3594
  event: import("@feathersjs/typebox").TString<string>;
3112
3595
  traderId: import("@feathersjs/typebox").TAny;
3113
3596
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3141,6 +3624,41 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3141
3624
  username: import("@feathersjs/typebox").TString<string>;
3142
3625
  password: import("@feathersjs/typebox").TString<string>;
3143
3626
  }>;
3627
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
3628
+ enabled: import("@feathersjs/typebox").TBoolean;
3629
+ token: import("@feathersjs/typebox").TString<string>;
3630
+ chat_id: import("@feathersjs/typebox").TAny;
3631
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
3632
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3633
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
3634
+ notification_settings: import("@feathersjs/typebox").TObject<{
3635
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3636
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3637
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3638
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3639
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3640
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3641
+ exit: import("@feathersjs/typebox").TObject<{
3642
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3643
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3644
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3645
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3646
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3647
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3648
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3649
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3650
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3651
+ }>;
3652
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3653
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3654
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3655
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3656
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3657
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
3658
+ }>;
3659
+ reload: import("@feathersjs/typebox").TBoolean;
3660
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
3661
+ }>>;
3144
3662
  pod: import("@feathersjs/typebox").TString<string>;
3145
3663
  host: import("@feathersjs/typebox").TString<string>;
3146
3664
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -3185,7 +3703,6 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3185
3703
  }>>>;
3186
3704
  ccxt_async_config: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
3187
3705
  which: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3188
- key: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3189
3706
  apiKey: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3190
3707
  secret: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3191
3708
  requiredCredentials: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TAny>;
@@ -3218,8 +3735,8 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3218
3735
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
3219
3736
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
3220
3737
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
3221
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
3222
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
3738
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
3739
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
3223
3740
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
3224
3741
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
3225
3742
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -3308,7 +3825,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3308
3825
  traderId: import("@feathersjs/typebox").TAny;
3309
3826
  userId: import("@feathersjs/typebox").TString<string>;
3310
3827
  }>;
3311
- webhookbuy: import("@feathersjs/typebox").TObject<{
3828
+ webhookentry: import("@feathersjs/typebox").TObject<{
3312
3829
  event: import("@feathersjs/typebox").TString<string>;
3313
3830
  traderId: import("@feathersjs/typebox").TAny;
3314
3831
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3318,7 +3835,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3318
3835
  stake_currency: import("@feathersjs/typebox").TString<string>;
3319
3836
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3320
3837
  }>;
3321
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
3838
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
3322
3839
  event: import("@feathersjs/typebox").TString<string>;
3323
3840
  traderId: import("@feathersjs/typebox").TAny;
3324
3841
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3328,7 +3845,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3328
3845
  stake_currency: import("@feathersjs/typebox").TString<string>;
3329
3846
  fiat_currency: import("@feathersjs/typebox").TString<string>;
3330
3847
  }>;
3331
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
3848
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
3332
3849
  event: import("@feathersjs/typebox").TString<string>;
3333
3850
  userId: import("@feathersjs/typebox").TString<string>;
3334
3851
  traderId: import("@feathersjs/typebox").TAny;
@@ -3340,7 +3857,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3340
3857
  stake_amount: import("@feathersjs/typebox").TString<string>;
3341
3858
  stake_currency: import("@feathersjs/typebox").TString<string>;
3342
3859
  }>;
3343
- webhooksell: import("@feathersjs/typebox").TObject<{
3860
+ webhookexit: import("@feathersjs/typebox").TObject<{
3344
3861
  event: import("@feathersjs/typebox").TString<string>;
3345
3862
  traderId: import("@feathersjs/typebox").TAny;
3346
3863
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3355,10 +3872,10 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3355
3872
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3356
3873
  open_date: import("@feathersjs/typebox").TString<string>;
3357
3874
  close_date: import("@feathersjs/typebox").TString<string>;
3358
- sell_reason: import("@feathersjs/typebox").TString<string>;
3875
+ exit_reason: import("@feathersjs/typebox").TString<string>;
3359
3876
  order_type: import("@feathersjs/typebox").TString<string>;
3360
3877
  }>;
3361
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
3878
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
3362
3879
  event: import("@feathersjs/typebox").TString<string>;
3363
3880
  traderId: import("@feathersjs/typebox").TAny;
3364
3881
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3368,7 +3885,7 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3368
3885
  stake_currency: import("@feathersjs/typebox").TString<string>;
3369
3886
  profit_ratio: import("@feathersjs/typebox").TString<string>;
3370
3887
  }>;
3371
- webhooksellfill: import("@feathersjs/typebox").TObject<{
3888
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
3372
3889
  event: import("@feathersjs/typebox").TString<string>;
3373
3890
  traderId: import("@feathersjs/typebox").TAny;
3374
3891
  userId: import("@feathersjs/typebox").TString<string>;
@@ -3402,6 +3919,41 @@ export declare const tradersPodsQueryProperties: import("@feathersjs/typebox").T
3402
3919
  username: import("@feathersjs/typebox").TString<string>;
3403
3920
  password: import("@feathersjs/typebox").TString<string>;
3404
3921
  }>;
3922
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
3923
+ enabled: import("@feathersjs/typebox").TBoolean;
3924
+ token: import("@feathersjs/typebox").TString<string>;
3925
+ chat_id: import("@feathersjs/typebox").TAny;
3926
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
3927
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
3928
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
3929
+ notification_settings: import("@feathersjs/typebox").TObject<{
3930
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3931
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3932
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3933
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3934
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3935
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3936
+ exit: import("@feathersjs/typebox").TObject<{
3937
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3938
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3939
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3940
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3941
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3942
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3943
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3944
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3945
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3946
+ }>;
3947
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3948
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3949
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3950
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3951
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
3952
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
3953
+ }>;
3954
+ reload: import("@feathersjs/typebox").TBoolean;
3955
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
3956
+ }>>;
3405
3957
  pod: import("@feathersjs/typebox").TString<string>;
3406
3958
  host: import("@feathersjs/typebox").TString<string>;
3407
3959
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;