@guihz/trading-vue-editor-tes 0.0.209 → 0.0.210

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.
@@ -45,6 +45,7 @@ declare class Input {
45
45
  enum(args: IInputArgs, posStr: string): TSimpleType;
46
46
  private _cacheHandle;
47
47
  private _displayVerify;
48
+ private _verifyMaxOrMin;
48
49
  getInputs(): IInputArgs[];
49
50
  }
50
51
  export default Input;
@@ -134,6 +134,7 @@ export default class Strategy {
134
134
  private _totalChangeCapital;
135
135
  private _historyOrder;
136
136
  private _orders;
137
+ private _exitOrders;
137
138
  private _pendingOrders;
138
139
  private _mintick;
139
140
  private _funcOptions;
@@ -202,6 +203,7 @@ export default class Strategy {
202
203
  private _closeAllOrders;
203
204
  private _closeOrders;
204
205
  private _closeOrder;
206
+ private _exitOrdersHandle;
205
207
  private _ordersHandle;
206
208
  private _calcTrailStopPrice;
207
209
  private _pendingOrderHandle;
@@ -212,6 +214,7 @@ export default class Strategy {
212
214
  private _processCloseOrders;
213
215
  private _exitOrderHandle;
214
216
  private _exit;
217
+ private _updateExitOrders;
215
218
  private _ordersToExit;
216
219
  private _addExitPendingCloseOrders;
217
220
  private _stopProfit;
@@ -85,6 +85,7 @@ export declare const ERRORS_TIPS: {
85
85
  strategyExitErr: string;
86
86
  arrLenErr: string;
87
87
  mergeCellErr: string;
88
+ minOrMaxErr: string;
88
89
  };
89
90
  export declare const WARNING_TIPS: {
90
91
  repeatVar: string;