v1.1.2, feat(#16): add missing plan types for futures client

This commit is contained in:
Tiago Siebler
2023-08-29 11:07:32 +01:00
parent d1ed8fe444
commit 27871bbfd9
4 changed files with 42 additions and 12 deletions

View File

@@ -128,7 +128,14 @@ export interface ModifyFuturesPlanOrderTPSL {
presetStopLossPrice?: string;
}
export type FuturesPlanType = 'profit_plan' | 'loss_plan' | 'moving_plan';
export type FuturesPlanType =
| 'profit_plan'
| 'loss_plan'
| 'normal_plan'
| 'pos_profit'
| 'pos_loss'
| 'moving_plan'
| 'track_plan';
export interface NewFuturesPlanStopOrder {
symbol: string;