@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
@@ -18,8 +18,8 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
18
18
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
19
19
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
20
20
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
21
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
22
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
21
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
22
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
23
23
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
24
24
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
25
25
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -108,7 +108,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
108
108
  traderId: import("@feathersjs/typebox").TAny;
109
109
  userId: import("@feathersjs/typebox").TString<string>;
110
110
  }>;
111
- webhookbuy: import("@feathersjs/typebox").TObject<{
111
+ webhookentry: import("@feathersjs/typebox").TObject<{
112
112
  event: import("@feathersjs/typebox").TString<string>;
113
113
  traderId: import("@feathersjs/typebox").TAny;
114
114
  userId: import("@feathersjs/typebox").TString<string>;
@@ -118,7 +118,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
118
118
  stake_currency: import("@feathersjs/typebox").TString<string>;
119
119
  fiat_currency: import("@feathersjs/typebox").TString<string>;
120
120
  }>;
121
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
121
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
122
122
  event: import("@feathersjs/typebox").TString<string>;
123
123
  traderId: import("@feathersjs/typebox").TAny;
124
124
  userId: import("@feathersjs/typebox").TString<string>;
@@ -128,7 +128,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
128
128
  stake_currency: import("@feathersjs/typebox").TString<string>;
129
129
  fiat_currency: import("@feathersjs/typebox").TString<string>;
130
130
  }>;
131
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
131
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
132
132
  event: import("@feathersjs/typebox").TString<string>;
133
133
  userId: import("@feathersjs/typebox").TString<string>;
134
134
  traderId: import("@feathersjs/typebox").TAny;
@@ -140,7 +140,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
140
140
  stake_amount: import("@feathersjs/typebox").TString<string>;
141
141
  stake_currency: import("@feathersjs/typebox").TString<string>;
142
142
  }>;
143
- webhooksell: import("@feathersjs/typebox").TObject<{
143
+ webhookexit: import("@feathersjs/typebox").TObject<{
144
144
  event: import("@feathersjs/typebox").TString<string>;
145
145
  traderId: import("@feathersjs/typebox").TAny;
146
146
  userId: import("@feathersjs/typebox").TString<string>;
@@ -155,10 +155,10 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
155
155
  profit_ratio: import("@feathersjs/typebox").TString<string>;
156
156
  open_date: import("@feathersjs/typebox").TString<string>;
157
157
  close_date: import("@feathersjs/typebox").TString<string>;
158
- sell_reason: import("@feathersjs/typebox").TString<string>;
158
+ exit_reason: import("@feathersjs/typebox").TString<string>;
159
159
  order_type: import("@feathersjs/typebox").TString<string>;
160
160
  }>;
161
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
161
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
162
162
  event: import("@feathersjs/typebox").TString<string>;
163
163
  traderId: import("@feathersjs/typebox").TAny;
164
164
  userId: import("@feathersjs/typebox").TString<string>;
@@ -168,7 +168,7 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
168
168
  stake_currency: import("@feathersjs/typebox").TString<string>;
169
169
  profit_ratio: import("@feathersjs/typebox").TString<string>;
170
170
  }>;
171
- webhooksellfill: import("@feathersjs/typebox").TObject<{
171
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
172
172
  event: import("@feathersjs/typebox").TString<string>;
173
173
  traderId: import("@feathersjs/typebox").TAny;
174
174
  userId: import("@feathersjs/typebox").TString<string>;
@@ -202,6 +202,41 @@ export declare const strategiesSchema: import("@feathersjs/typebox").TObject<{
202
202
  username: import("@feathersjs/typebox").TString<string>;
203
203
  password: import("@feathersjs/typebox").TString<string>;
204
204
  }>;
205
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
206
+ enabled: import("@feathersjs/typebox").TBoolean;
207
+ token: import("@feathersjs/typebox").TString<string>;
208
+ chat_id: import("@feathersjs/typebox").TAny;
209
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
210
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
211
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
212
+ notification_settings: import("@feathersjs/typebox").TObject<{
213
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
214
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
215
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
216
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
217
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
218
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
219
+ exit: import("@feathersjs/typebox").TObject<{
220
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
221
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
222
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
223
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
224
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
225
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
226
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
227
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
228
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
229
+ }>;
230
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
231
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
232
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
233
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
234
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
235
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
236
+ }>;
237
+ reload: import("@feathersjs/typebox").TBoolean;
238
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
239
+ }>>;
205
240
  pod: import("@feathersjs/typebox").TString<string>;
206
241
  host: import("@feathersjs/typebox").TString<string>;
207
242
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -233,6 +268,41 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
233
268
  type: string;
234
269
  } | undefined;
235
270
  traders?: {
271
+ telegram?: {
272
+ access_hash?: string | null | undefined;
273
+ invite_link?: string | undefined;
274
+ enabled: boolean;
275
+ token: string;
276
+ chat_id: any;
277
+ allow_custom_messages: boolean;
278
+ notification_settings: {
279
+ status: "silent" | "on" | "off";
280
+ entry: "silent" | "on" | "off";
281
+ exit: {
282
+ roi: "silent" | "on" | "off";
283
+ emergency_exit: "silent" | "on" | "off";
284
+ force_exit: "silent" | "on" | "off";
285
+ exit_signal: "silent" | "on" | "off";
286
+ trailing_stop_loss: "silent" | "on" | "off";
287
+ stop_loss: "silent" | "on" | "off";
288
+ stoploss_on_exchange: "silent" | "on" | "off";
289
+ custom_exit: "silent" | "on" | "off";
290
+ partial_exit: "silent" | "on" | "off";
291
+ };
292
+ warning: "silent" | "on" | "off";
293
+ startup: "silent" | "on" | "off";
294
+ entry_fill: "silent" | "on" | "off";
295
+ entry_cancel: "silent" | "on" | "off";
296
+ exit_cancel: "silent" | "on" | "off";
297
+ exit_fill: "silent" | "on" | "off";
298
+ protection_trigger: "silent" | "on" | "off";
299
+ protection_trigger_global: "silent" | "on" | "off";
300
+ strategy_msg: "silent" | "on" | "off";
301
+ show_candle: "off" | "ohlc";
302
+ };
303
+ reload: boolean;
304
+ balance_dust_level: number;
305
+ } | undefined;
236
306
  dry_run_wallet?: number | undefined;
237
307
  max_open_trades?: number | undefined;
238
308
  plugins?: {
@@ -253,15 +323,15 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
253
323
  tradable_balance_ratio?: number | undefined;
254
324
  webhook?: {
255
325
  url: string;
256
- format: string;
257
326
  enabled: boolean;
327
+ format: string;
258
328
  webhookstatus: {
259
329
  traderId: any;
260
330
  event: string;
261
331
  status: string;
262
332
  userId: string;
263
333
  };
264
- webhookbuy: {
334
+ webhookentry: {
265
335
  limit: string;
266
336
  traderId: any;
267
337
  stake_amount: string;
@@ -271,7 +341,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
271
341
  pair: string;
272
342
  fiat_currency: string;
273
343
  };
274
- webhookbuycancel: {
344
+ webhookentrycancel: {
275
345
  limit: string;
276
346
  traderId: any;
277
347
  stake_amount: string;
@@ -281,7 +351,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
281
351
  pair: string;
282
352
  fiat_currency: string;
283
353
  };
284
- webhookbuyfill: {
354
+ webhookentryfill: {
285
355
  traderId: any;
286
356
  stake_amount: string;
287
357
  stake_currency: string;
@@ -293,7 +363,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
293
363
  amount: string;
294
364
  open_date: string;
295
365
  };
296
- webhooksell: {
366
+ webhookexit: {
297
367
  limit: string;
298
368
  traderId: any;
299
369
  stake_currency: string;
@@ -308,10 +378,10 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
308
378
  profit_amount: string;
309
379
  profit_ratio: string;
310
380
  close_date: string;
311
- sell_reason: string;
381
+ exit_reason: string;
312
382
  order_type: string;
313
383
  };
314
- webhooksellcancel: {
384
+ webhookexitcancel: {
315
385
  limit: string;
316
386
  traderId: any;
317
387
  stake_currency: string;
@@ -321,7 +391,7 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
321
391
  profit_amount: string;
322
392
  profit_ratio: string;
323
393
  };
324
- webhooksellfill: {
394
+ webhookexitfill: {
325
395
  traderId: any;
326
396
  event: string;
327
397
  userId: string;
@@ -396,12 +466,12 @@ export declare const strategiesResolver: import("@feathersjs/schema").Resolver<{
396
466
  timeinforce?: unknown;
397
467
  order_types?: {
398
468
  stoploss?: string | undefined;
399
- buy?: "Limit" | "Market" | undefined;
400
- sell?: "Limit" | "Market" | undefined;
469
+ entry?: "Limit" | "Market" | undefined;
470
+ exit?: "Limit" | "Market" | undefined;
471
+ stoploss_on_exchange?: boolean | undefined;
401
472
  emergencysell?: "Limit" | "Market" | undefined;
402
473
  forcebuy?: "Limit" | "Market" | undefined;
403
474
  forcesell?: "Limit" | "Market" | undefined;
404
- stoploss_on_exchange?: boolean | undefined;
405
475
  stoploss_on_exchange_interval?: number | undefined;
406
476
  stoploss_on_exchange_limit_ratio?: number | undefined;
407
477
  } | undefined;
@@ -450,6 +520,41 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
450
520
  type: string;
451
521
  } | undefined;
452
522
  traders?: {
523
+ telegram?: {
524
+ access_hash?: string | null | undefined;
525
+ invite_link?: string | undefined;
526
+ enabled: boolean;
527
+ token: string;
528
+ chat_id: any;
529
+ allow_custom_messages: boolean;
530
+ notification_settings: {
531
+ status: "silent" | "on" | "off";
532
+ entry: "silent" | "on" | "off";
533
+ exit: {
534
+ roi: "silent" | "on" | "off";
535
+ emergency_exit: "silent" | "on" | "off";
536
+ force_exit: "silent" | "on" | "off";
537
+ exit_signal: "silent" | "on" | "off";
538
+ trailing_stop_loss: "silent" | "on" | "off";
539
+ stop_loss: "silent" | "on" | "off";
540
+ stoploss_on_exchange: "silent" | "on" | "off";
541
+ custom_exit: "silent" | "on" | "off";
542
+ partial_exit: "silent" | "on" | "off";
543
+ };
544
+ warning: "silent" | "on" | "off";
545
+ startup: "silent" | "on" | "off";
546
+ entry_fill: "silent" | "on" | "off";
547
+ entry_cancel: "silent" | "on" | "off";
548
+ exit_cancel: "silent" | "on" | "off";
549
+ exit_fill: "silent" | "on" | "off";
550
+ protection_trigger: "silent" | "on" | "off";
551
+ protection_trigger_global: "silent" | "on" | "off";
552
+ strategy_msg: "silent" | "on" | "off";
553
+ show_candle: "off" | "ohlc";
554
+ };
555
+ reload: boolean;
556
+ balance_dust_level: number;
557
+ } | undefined;
453
558
  dry_run_wallet?: number | undefined;
454
559
  max_open_trades?: number | undefined;
455
560
  plugins?: {
@@ -470,15 +575,15 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
470
575
  tradable_balance_ratio?: number | undefined;
471
576
  webhook?: {
472
577
  url: string;
473
- format: string;
474
578
  enabled: boolean;
579
+ format: string;
475
580
  webhookstatus: {
476
581
  traderId: any;
477
582
  event: string;
478
583
  status: string;
479
584
  userId: string;
480
585
  };
481
- webhookbuy: {
586
+ webhookentry: {
482
587
  limit: string;
483
588
  traderId: any;
484
589
  stake_amount: string;
@@ -488,7 +593,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
488
593
  pair: string;
489
594
  fiat_currency: string;
490
595
  };
491
- webhookbuycancel: {
596
+ webhookentrycancel: {
492
597
  limit: string;
493
598
  traderId: any;
494
599
  stake_amount: string;
@@ -498,7 +603,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
498
603
  pair: string;
499
604
  fiat_currency: string;
500
605
  };
501
- webhookbuyfill: {
606
+ webhookentryfill: {
502
607
  traderId: any;
503
608
  stake_amount: string;
504
609
  stake_currency: string;
@@ -510,7 +615,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
510
615
  amount: string;
511
616
  open_date: string;
512
617
  };
513
- webhooksell: {
618
+ webhookexit: {
514
619
  limit: string;
515
620
  traderId: any;
516
621
  stake_currency: string;
@@ -525,10 +630,10 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
525
630
  profit_amount: string;
526
631
  profit_ratio: string;
527
632
  close_date: string;
528
- sell_reason: string;
633
+ exit_reason: string;
529
634
  order_type: string;
530
635
  };
531
- webhooksellcancel: {
636
+ webhookexitcancel: {
532
637
  limit: string;
533
638
  traderId: any;
534
639
  stake_currency: string;
@@ -538,7 +643,7 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
538
643
  profit_amount: string;
539
644
  profit_ratio: string;
540
645
  };
541
- webhooksellfill: {
646
+ webhookexitfill: {
542
647
  traderId: any;
543
648
  event: string;
544
649
  userId: string;
@@ -613,12 +718,12 @@ export declare const strategiesExternalResolver: import("@feathersjs/schema").Re
613
718
  timeinforce?: unknown;
614
719
  order_types?: {
615
720
  stoploss?: string | undefined;
616
- buy?: "Limit" | "Market" | undefined;
617
- sell?: "Limit" | "Market" | undefined;
721
+ entry?: "Limit" | "Market" | undefined;
722
+ exit?: "Limit" | "Market" | undefined;
723
+ stoploss_on_exchange?: boolean | undefined;
618
724
  emergencysell?: "Limit" | "Market" | undefined;
619
725
  forcebuy?: "Limit" | "Market" | undefined;
620
726
  forcesell?: "Limit" | "Market" | undefined;
621
- stoploss_on_exchange?: boolean | undefined;
622
727
  stoploss_on_exchange_interval?: number | undefined;
623
728
  stoploss_on_exchange_limit_ratio?: number | undefined;
624
729
  } | undefined;
@@ -671,8 +776,8 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
671
776
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
672
777
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
673
778
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
674
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
675
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
779
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
780
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
676
781
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
677
782
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
678
783
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -761,7 +866,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
761
866
  traderId: import("@feathersjs/typebox").TAny;
762
867
  userId: import("@feathersjs/typebox").TString<string>;
763
868
  }>;
764
- webhookbuy: import("@feathersjs/typebox").TObject<{
869
+ webhookentry: import("@feathersjs/typebox").TObject<{
765
870
  event: import("@feathersjs/typebox").TString<string>;
766
871
  traderId: import("@feathersjs/typebox").TAny;
767
872
  userId: import("@feathersjs/typebox").TString<string>;
@@ -771,7 +876,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
771
876
  stake_currency: import("@feathersjs/typebox").TString<string>;
772
877
  fiat_currency: import("@feathersjs/typebox").TString<string>;
773
878
  }>;
774
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
879
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
775
880
  event: import("@feathersjs/typebox").TString<string>;
776
881
  traderId: import("@feathersjs/typebox").TAny;
777
882
  userId: import("@feathersjs/typebox").TString<string>;
@@ -781,7 +886,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
781
886
  stake_currency: import("@feathersjs/typebox").TString<string>;
782
887
  fiat_currency: import("@feathersjs/typebox").TString<string>;
783
888
  }>;
784
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
889
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
785
890
  event: import("@feathersjs/typebox").TString<string>;
786
891
  userId: import("@feathersjs/typebox").TString<string>;
787
892
  traderId: import("@feathersjs/typebox").TAny;
@@ -793,7 +898,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
793
898
  stake_amount: import("@feathersjs/typebox").TString<string>;
794
899
  stake_currency: import("@feathersjs/typebox").TString<string>;
795
900
  }>;
796
- webhooksell: import("@feathersjs/typebox").TObject<{
901
+ webhookexit: import("@feathersjs/typebox").TObject<{
797
902
  event: import("@feathersjs/typebox").TString<string>;
798
903
  traderId: import("@feathersjs/typebox").TAny;
799
904
  userId: import("@feathersjs/typebox").TString<string>;
@@ -808,10 +913,10 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
808
913
  profit_ratio: import("@feathersjs/typebox").TString<string>;
809
914
  open_date: import("@feathersjs/typebox").TString<string>;
810
915
  close_date: import("@feathersjs/typebox").TString<string>;
811
- sell_reason: import("@feathersjs/typebox").TString<string>;
916
+ exit_reason: import("@feathersjs/typebox").TString<string>;
812
917
  order_type: import("@feathersjs/typebox").TString<string>;
813
918
  }>;
814
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
919
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
815
920
  event: import("@feathersjs/typebox").TString<string>;
816
921
  traderId: import("@feathersjs/typebox").TAny;
817
922
  userId: import("@feathersjs/typebox").TString<string>;
@@ -821,7 +926,7 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
821
926
  stake_currency: import("@feathersjs/typebox").TString<string>;
822
927
  profit_ratio: import("@feathersjs/typebox").TString<string>;
823
928
  }>;
824
- webhooksellfill: import("@feathersjs/typebox").TObject<{
929
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
825
930
  event: import("@feathersjs/typebox").TString<string>;
826
931
  traderId: import("@feathersjs/typebox").TAny;
827
932
  userId: import("@feathersjs/typebox").TString<string>;
@@ -855,6 +960,41 @@ export declare const strategiesDataSchema: import("@feathersjs/typebox").TPick<i
855
960
  username: import("@feathersjs/typebox").TString<string>;
856
961
  password: import("@feathersjs/typebox").TString<string>;
857
962
  }>;
963
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
964
+ enabled: import("@feathersjs/typebox").TBoolean;
965
+ token: import("@feathersjs/typebox").TString<string>;
966
+ chat_id: import("@feathersjs/typebox").TAny;
967
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
968
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
969
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
970
+ notification_settings: import("@feathersjs/typebox").TObject<{
971
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
972
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
973
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
974
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
975
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
976
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
977
+ exit: import("@feathersjs/typebox").TObject<{
978
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
979
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
980
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
981
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
982
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
983
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
984
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
985
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
986
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
987
+ }>;
988
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
989
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
990
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
991
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
992
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
993
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
994
+ }>;
995
+ reload: import("@feathersjs/typebox").TBoolean;
996
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
997
+ }>>;
858
998
  pod: import("@feathersjs/typebox").TString<string>;
859
999
  host: import("@feathersjs/typebox").TString<string>;
860
1000
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -886,6 +1026,41 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
886
1026
  type: string;
887
1027
  } | undefined;
888
1028
  traders?: {
1029
+ telegram?: {
1030
+ access_hash?: string | null | undefined;
1031
+ invite_link?: string | undefined;
1032
+ enabled: boolean;
1033
+ token: string;
1034
+ chat_id: any;
1035
+ allow_custom_messages: boolean;
1036
+ notification_settings: {
1037
+ status: "silent" | "on" | "off";
1038
+ entry: "silent" | "on" | "off";
1039
+ exit: {
1040
+ roi: "silent" | "on" | "off";
1041
+ emergency_exit: "silent" | "on" | "off";
1042
+ force_exit: "silent" | "on" | "off";
1043
+ exit_signal: "silent" | "on" | "off";
1044
+ trailing_stop_loss: "silent" | "on" | "off";
1045
+ stop_loss: "silent" | "on" | "off";
1046
+ stoploss_on_exchange: "silent" | "on" | "off";
1047
+ custom_exit: "silent" | "on" | "off";
1048
+ partial_exit: "silent" | "on" | "off";
1049
+ };
1050
+ warning: "silent" | "on" | "off";
1051
+ startup: "silent" | "on" | "off";
1052
+ entry_fill: "silent" | "on" | "off";
1053
+ entry_cancel: "silent" | "on" | "off";
1054
+ exit_cancel: "silent" | "on" | "off";
1055
+ exit_fill: "silent" | "on" | "off";
1056
+ protection_trigger: "silent" | "on" | "off";
1057
+ protection_trigger_global: "silent" | "on" | "off";
1058
+ strategy_msg: "silent" | "on" | "off";
1059
+ show_candle: "off" | "ohlc";
1060
+ };
1061
+ reload: boolean;
1062
+ balance_dust_level: number;
1063
+ } | undefined;
889
1064
  dry_run_wallet?: number | undefined;
890
1065
  max_open_trades?: number | undefined;
891
1066
  plugins?: {
@@ -906,15 +1081,15 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
906
1081
  tradable_balance_ratio?: number | undefined;
907
1082
  webhook?: {
908
1083
  url: string;
909
- format: string;
910
1084
  enabled: boolean;
1085
+ format: string;
911
1086
  webhookstatus: {
912
1087
  traderId: any;
913
1088
  event: string;
914
1089
  status: string;
915
1090
  userId: string;
916
1091
  };
917
- webhookbuy: {
1092
+ webhookentry: {
918
1093
  limit: string;
919
1094
  traderId: any;
920
1095
  stake_amount: string;
@@ -924,7 +1099,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
924
1099
  pair: string;
925
1100
  fiat_currency: string;
926
1101
  };
927
- webhookbuycancel: {
1102
+ webhookentrycancel: {
928
1103
  limit: string;
929
1104
  traderId: any;
930
1105
  stake_amount: string;
@@ -934,7 +1109,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
934
1109
  pair: string;
935
1110
  fiat_currency: string;
936
1111
  };
937
- webhookbuyfill: {
1112
+ webhookentryfill: {
938
1113
  traderId: any;
939
1114
  stake_amount: string;
940
1115
  stake_currency: string;
@@ -946,7 +1121,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
946
1121
  amount: string;
947
1122
  open_date: string;
948
1123
  };
949
- webhooksell: {
1124
+ webhookexit: {
950
1125
  limit: string;
951
1126
  traderId: any;
952
1127
  stake_currency: string;
@@ -961,10 +1136,10 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
961
1136
  profit_amount: string;
962
1137
  profit_ratio: string;
963
1138
  close_date: string;
964
- sell_reason: string;
1139
+ exit_reason: string;
965
1140
  order_type: string;
966
1141
  };
967
- webhooksellcancel: {
1142
+ webhookexitcancel: {
968
1143
  limit: string;
969
1144
  traderId: any;
970
1145
  stake_currency: string;
@@ -974,7 +1149,7 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
974
1149
  profit_amount: string;
975
1150
  profit_ratio: string;
976
1151
  };
977
- webhooksellfill: {
1152
+ webhookexitfill: {
978
1153
  traderId: any;
979
1154
  event: string;
980
1155
  userId: string;
@@ -1049,12 +1224,12 @@ export declare const strategiesDataResolver: import("@feathersjs/schema").Resolv
1049
1224
  timeinforce?: unknown;
1050
1225
  order_types?: {
1051
1226
  stoploss?: string | undefined;
1052
- buy?: "Limit" | "Market" | undefined;
1053
- sell?: "Limit" | "Market" | undefined;
1227
+ entry?: "Limit" | "Market" | undefined;
1228
+ exit?: "Limit" | "Market" | undefined;
1229
+ stoploss_on_exchange?: boolean | undefined;
1054
1230
  emergencysell?: "Limit" | "Market" | undefined;
1055
1231
  forcebuy?: "Limit" | "Market" | undefined;
1056
1232
  forcesell?: "Limit" | "Market" | undefined;
1057
- stoploss_on_exchange?: boolean | undefined;
1058
1233
  stoploss_on_exchange_interval?: number | undefined;
1059
1234
  stoploss_on_exchange_limit_ratio?: number | undefined;
1060
1235
  } | undefined;
@@ -1107,8 +1282,8 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1107
1282
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1108
1283
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
1109
1284
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1110
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1111
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1285
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1286
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1112
1287
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1113
1288
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1114
1289
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -1197,7 +1372,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1197
1372
  traderId: import("@feathersjs/typebox").TAny;
1198
1373
  userId: import("@feathersjs/typebox").TString<string>;
1199
1374
  }>;
1200
- webhookbuy: import("@feathersjs/typebox").TObject<{
1375
+ webhookentry: import("@feathersjs/typebox").TObject<{
1201
1376
  event: import("@feathersjs/typebox").TString<string>;
1202
1377
  traderId: import("@feathersjs/typebox").TAny;
1203
1378
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1207,7 +1382,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1207
1382
  stake_currency: import("@feathersjs/typebox").TString<string>;
1208
1383
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1209
1384
  }>;
1210
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
1385
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
1211
1386
  event: import("@feathersjs/typebox").TString<string>;
1212
1387
  traderId: import("@feathersjs/typebox").TAny;
1213
1388
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1217,7 +1392,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1217
1392
  stake_currency: import("@feathersjs/typebox").TString<string>;
1218
1393
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1219
1394
  }>;
1220
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
1395
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
1221
1396
  event: import("@feathersjs/typebox").TString<string>;
1222
1397
  userId: import("@feathersjs/typebox").TString<string>;
1223
1398
  traderId: import("@feathersjs/typebox").TAny;
@@ -1229,7 +1404,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1229
1404
  stake_amount: import("@feathersjs/typebox").TString<string>;
1230
1405
  stake_currency: import("@feathersjs/typebox").TString<string>;
1231
1406
  }>;
1232
- webhooksell: import("@feathersjs/typebox").TObject<{
1407
+ webhookexit: import("@feathersjs/typebox").TObject<{
1233
1408
  event: import("@feathersjs/typebox").TString<string>;
1234
1409
  traderId: import("@feathersjs/typebox").TAny;
1235
1410
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1244,10 +1419,10 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1244
1419
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1245
1420
  open_date: import("@feathersjs/typebox").TString<string>;
1246
1421
  close_date: import("@feathersjs/typebox").TString<string>;
1247
- sell_reason: import("@feathersjs/typebox").TString<string>;
1422
+ exit_reason: import("@feathersjs/typebox").TString<string>;
1248
1423
  order_type: import("@feathersjs/typebox").TString<string>;
1249
1424
  }>;
1250
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
1425
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
1251
1426
  event: import("@feathersjs/typebox").TString<string>;
1252
1427
  traderId: import("@feathersjs/typebox").TAny;
1253
1428
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1257,7 +1432,7 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1257
1432
  stake_currency: import("@feathersjs/typebox").TString<string>;
1258
1433
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1259
1434
  }>;
1260
- webhooksellfill: import("@feathersjs/typebox").TObject<{
1435
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
1261
1436
  event: import("@feathersjs/typebox").TString<string>;
1262
1437
  traderId: import("@feathersjs/typebox").TAny;
1263
1438
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1291,6 +1466,41 @@ export declare const strategiesPatchSchema: import("@feathersjs/typebox").TParti
1291
1466
  username: import("@feathersjs/typebox").TString<string>;
1292
1467
  password: import("@feathersjs/typebox").TString<string>;
1293
1468
  }>;
1469
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1470
+ enabled: import("@feathersjs/typebox").TBoolean;
1471
+ token: import("@feathersjs/typebox").TString<string>;
1472
+ chat_id: import("@feathersjs/typebox").TAny;
1473
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
1474
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1475
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
1476
+ notification_settings: import("@feathersjs/typebox").TObject<{
1477
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1478
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1479
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1480
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1481
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1482
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1483
+ exit: import("@feathersjs/typebox").TObject<{
1484
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1485
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1486
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1487
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1488
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1489
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1490
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1491
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1492
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1493
+ }>;
1494
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1495
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1496
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1497
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1498
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1499
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
1500
+ }>;
1501
+ reload: import("@feathersjs/typebox").TBoolean;
1502
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
1503
+ }>>;
1294
1504
  pod: import("@feathersjs/typebox").TString<string>;
1295
1505
  host: import("@feathersjs/typebox").TString<string>;
1296
1506
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;
@@ -1322,6 +1532,41 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1322
1532
  type: string;
1323
1533
  } | undefined;
1324
1534
  traders?: {
1535
+ telegram?: {
1536
+ access_hash?: string | null | undefined;
1537
+ invite_link?: string | undefined;
1538
+ enabled: boolean;
1539
+ token: string;
1540
+ chat_id: any;
1541
+ allow_custom_messages: boolean;
1542
+ notification_settings: {
1543
+ status: "silent" | "on" | "off";
1544
+ entry: "silent" | "on" | "off";
1545
+ exit: {
1546
+ roi: "silent" | "on" | "off";
1547
+ emergency_exit: "silent" | "on" | "off";
1548
+ force_exit: "silent" | "on" | "off";
1549
+ exit_signal: "silent" | "on" | "off";
1550
+ trailing_stop_loss: "silent" | "on" | "off";
1551
+ stop_loss: "silent" | "on" | "off";
1552
+ stoploss_on_exchange: "silent" | "on" | "off";
1553
+ custom_exit: "silent" | "on" | "off";
1554
+ partial_exit: "silent" | "on" | "off";
1555
+ };
1556
+ warning: "silent" | "on" | "off";
1557
+ startup: "silent" | "on" | "off";
1558
+ entry_fill: "silent" | "on" | "off";
1559
+ entry_cancel: "silent" | "on" | "off";
1560
+ exit_cancel: "silent" | "on" | "off";
1561
+ exit_fill: "silent" | "on" | "off";
1562
+ protection_trigger: "silent" | "on" | "off";
1563
+ protection_trigger_global: "silent" | "on" | "off";
1564
+ strategy_msg: "silent" | "on" | "off";
1565
+ show_candle: "off" | "ohlc";
1566
+ };
1567
+ reload: boolean;
1568
+ balance_dust_level: number;
1569
+ } | undefined;
1325
1570
  dry_run_wallet?: number | undefined;
1326
1571
  max_open_trades?: number | undefined;
1327
1572
  plugins?: {
@@ -1342,15 +1587,15 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1342
1587
  tradable_balance_ratio?: number | undefined;
1343
1588
  webhook?: {
1344
1589
  url: string;
1345
- format: string;
1346
1590
  enabled: boolean;
1591
+ format: string;
1347
1592
  webhookstatus: {
1348
1593
  traderId: any;
1349
1594
  event: string;
1350
1595
  status: string;
1351
1596
  userId: string;
1352
1597
  };
1353
- webhookbuy: {
1598
+ webhookentry: {
1354
1599
  limit: string;
1355
1600
  traderId: any;
1356
1601
  stake_amount: string;
@@ -1360,7 +1605,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1360
1605
  pair: string;
1361
1606
  fiat_currency: string;
1362
1607
  };
1363
- webhookbuycancel: {
1608
+ webhookentrycancel: {
1364
1609
  limit: string;
1365
1610
  traderId: any;
1366
1611
  stake_amount: string;
@@ -1370,7 +1615,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1370
1615
  pair: string;
1371
1616
  fiat_currency: string;
1372
1617
  };
1373
- webhookbuyfill: {
1618
+ webhookentryfill: {
1374
1619
  traderId: any;
1375
1620
  stake_amount: string;
1376
1621
  stake_currency: string;
@@ -1382,7 +1627,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1382
1627
  amount: string;
1383
1628
  open_date: string;
1384
1629
  };
1385
- webhooksell: {
1630
+ webhookexit: {
1386
1631
  limit: string;
1387
1632
  traderId: any;
1388
1633
  stake_currency: string;
@@ -1397,10 +1642,10 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1397
1642
  profit_amount: string;
1398
1643
  profit_ratio: string;
1399
1644
  close_date: string;
1400
- sell_reason: string;
1645
+ exit_reason: string;
1401
1646
  order_type: string;
1402
1647
  };
1403
- webhooksellcancel: {
1648
+ webhookexitcancel: {
1404
1649
  limit: string;
1405
1650
  traderId: any;
1406
1651
  stake_currency: string;
@@ -1410,7 +1655,7 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1410
1655
  profit_amount: string;
1411
1656
  profit_ratio: string;
1412
1657
  };
1413
- webhooksellfill: {
1658
+ webhookexitfill: {
1414
1659
  traderId: any;
1415
1660
  event: string;
1416
1661
  userId: string;
@@ -1485,12 +1730,12 @@ export declare const strategiesPatchResolver: import("@feathersjs/schema").Resol
1485
1730
  timeinforce?: unknown;
1486
1731
  order_types?: {
1487
1732
  stoploss?: string | undefined;
1488
- buy?: "Limit" | "Market" | undefined;
1489
- sell?: "Limit" | "Market" | undefined;
1733
+ entry?: "Limit" | "Market" | undefined;
1734
+ exit?: "Limit" | "Market" | undefined;
1735
+ stoploss_on_exchange?: boolean | undefined;
1490
1736
  emergencysell?: "Limit" | "Market" | undefined;
1491
1737
  forcebuy?: "Limit" | "Market" | undefined;
1492
1738
  forcesell?: "Limit" | "Market" | undefined;
1493
- stoploss_on_exchange?: boolean | undefined;
1494
1739
  stoploss_on_exchange_interval?: number | undefined;
1495
1740
  stoploss_on_exchange_limit_ratio?: number | undefined;
1496
1741
  } | undefined;
@@ -1543,8 +1788,8 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1543
1788
  exit_profit_offset: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TNumber>;
1544
1789
  timeinforce: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnknown>;
1545
1790
  order_types: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1546
- buy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1547
- sell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1791
+ entry: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1792
+ exit: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1548
1793
  emergencysell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1549
1794
  forcebuy: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
1550
1795
  forcesell: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"Limit">, import("@feathersjs/typebox").TLiteral<"Market">]>>;
@@ -1633,7 +1878,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1633
1878
  traderId: import("@feathersjs/typebox").TAny;
1634
1879
  userId: import("@feathersjs/typebox").TString<string>;
1635
1880
  }>;
1636
- webhookbuy: import("@feathersjs/typebox").TObject<{
1881
+ webhookentry: import("@feathersjs/typebox").TObject<{
1637
1882
  event: import("@feathersjs/typebox").TString<string>;
1638
1883
  traderId: import("@feathersjs/typebox").TAny;
1639
1884
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1643,7 +1888,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1643
1888
  stake_currency: import("@feathersjs/typebox").TString<string>;
1644
1889
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1645
1890
  }>;
1646
- webhookbuycancel: import("@feathersjs/typebox").TObject<{
1891
+ webhookentrycancel: import("@feathersjs/typebox").TObject<{
1647
1892
  event: import("@feathersjs/typebox").TString<string>;
1648
1893
  traderId: import("@feathersjs/typebox").TAny;
1649
1894
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1653,7 +1898,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1653
1898
  stake_currency: import("@feathersjs/typebox").TString<string>;
1654
1899
  fiat_currency: import("@feathersjs/typebox").TString<string>;
1655
1900
  }>;
1656
- webhookbuyfill: import("@feathersjs/typebox").TObject<{
1901
+ webhookentryfill: import("@feathersjs/typebox").TObject<{
1657
1902
  event: import("@feathersjs/typebox").TString<string>;
1658
1903
  userId: import("@feathersjs/typebox").TString<string>;
1659
1904
  traderId: import("@feathersjs/typebox").TAny;
@@ -1665,7 +1910,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1665
1910
  stake_amount: import("@feathersjs/typebox").TString<string>;
1666
1911
  stake_currency: import("@feathersjs/typebox").TString<string>;
1667
1912
  }>;
1668
- webhooksell: import("@feathersjs/typebox").TObject<{
1913
+ webhookexit: import("@feathersjs/typebox").TObject<{
1669
1914
  event: import("@feathersjs/typebox").TString<string>;
1670
1915
  traderId: import("@feathersjs/typebox").TAny;
1671
1916
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1680,10 +1925,10 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1680
1925
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1681
1926
  open_date: import("@feathersjs/typebox").TString<string>;
1682
1927
  close_date: import("@feathersjs/typebox").TString<string>;
1683
- sell_reason: import("@feathersjs/typebox").TString<string>;
1928
+ exit_reason: import("@feathersjs/typebox").TString<string>;
1684
1929
  order_type: import("@feathersjs/typebox").TString<string>;
1685
1930
  }>;
1686
- webhooksellcancel: import("@feathersjs/typebox").TObject<{
1931
+ webhookexitcancel: import("@feathersjs/typebox").TObject<{
1687
1932
  event: import("@feathersjs/typebox").TString<string>;
1688
1933
  traderId: import("@feathersjs/typebox").TAny;
1689
1934
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1693,7 +1938,7 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1693
1938
  stake_currency: import("@feathersjs/typebox").TString<string>;
1694
1939
  profit_ratio: import("@feathersjs/typebox").TString<string>;
1695
1940
  }>;
1696
- webhooksellfill: import("@feathersjs/typebox").TObject<{
1941
+ webhookexitfill: import("@feathersjs/typebox").TObject<{
1697
1942
  event: import("@feathersjs/typebox").TString<string>;
1698
1943
  traderId: import("@feathersjs/typebox").TAny;
1699
1944
  userId: import("@feathersjs/typebox").TString<string>;
@@ -1727,6 +1972,41 @@ export declare const strategiesQueryProperties: import("@feathersjs/typebox").TP
1727
1972
  username: import("@feathersjs/typebox").TString<string>;
1728
1973
  password: import("@feathersjs/typebox").TString<string>;
1729
1974
  }>;
1975
+ telegram: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TObject<{
1976
+ enabled: import("@feathersjs/typebox").TBoolean;
1977
+ token: import("@feathersjs/typebox").TString<string>;
1978
+ chat_id: import("@feathersjs/typebox").TAny;
1979
+ access_hash: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TString<string>, import("@feathersjs/typebox").TNull]>>;
1980
+ invite_link: import("@feathersjs/typebox").TOptional<import("@feathersjs/typebox").TString<string>>;
1981
+ allow_custom_messages: import("@feathersjs/typebox").TBoolean;
1982
+ notification_settings: import("@feathersjs/typebox").TObject<{
1983
+ status: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1984
+ warning: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1985
+ startup: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1986
+ entry: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1987
+ entry_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1988
+ entry_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1989
+ exit: import("@feathersjs/typebox").TObject<{
1990
+ roi: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1991
+ emergency_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1992
+ force_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1993
+ exit_signal: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1994
+ trailing_stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1995
+ stop_loss: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1996
+ stoploss_on_exchange: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1997
+ custom_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1998
+ partial_exit: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
1999
+ }>;
2000
+ exit_cancel: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2001
+ exit_fill: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2002
+ protection_trigger: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2003
+ protection_trigger_global: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2004
+ strategy_msg: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"on">, import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"silent">]>;
2005
+ show_candle: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"off">, import("@feathersjs/typebox").TLiteral<"ohlc">]>;
2006
+ }>;
2007
+ reload: import("@feathersjs/typebox").TBoolean;
2008
+ balance_dust_level: import("@feathersjs/typebox").TNumber;
2009
+ }>>;
1730
2010
  pod: import("@feathersjs/typebox").TString<string>;
1731
2011
  host: import("@feathersjs/typebox").TString<string>;
1732
2012
  provider: import("@feathersjs/typebox").TUnion<[import("@feathersjs/typebox").TLiteral<"docker">]>;