@gbozee/ultimate 0.0.2-170 → 0.0.2-171

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.
package/dist/index.cjs CHANGED
@@ -62452,14 +62452,15 @@ class ExchangeAccount {
62452
62452
  });
62453
62453
  }
62454
62454
  async followStop(payload) {
62455
- const { symbol, kind, fee_percent, focus_position } = payload;
62455
+ const { symbol, place, kind, fee_percent, focus_position } = payload;
62456
62456
  const main_position = await this.getFocusPosition({
62457
62457
  symbol,
62458
62458
  kind
62459
62459
  });
62460
62460
  return await main_position.followStop({
62461
62461
  focus_position,
62462
- fee_percent
62462
+ fee_percent,
62463
+ place
62463
62464
  });
62464
62465
  }
62465
62466
  async increasePositionAtStop(payload) {
package/dist/index.d.ts CHANGED
@@ -2404,6 +2404,7 @@ declare class ExchangeAccount$1 {
2404
2404
  kind: "long" | "short";
2405
2405
  fee_percent?: number;
2406
2406
  focus_position: ExchangePosition;
2407
+ place?: boolean;
2407
2408
  }): Promise<any>;
2408
2409
  increasePositionAtStop(payload: {
2409
2410
  symbol: string;
package/dist/index.js CHANGED
@@ -62392,14 +62392,15 @@ class ExchangeAccount {
62392
62392
  });
62393
62393
  }
62394
62394
  async followStop(payload) {
62395
- const { symbol, kind, fee_percent, focus_position } = payload;
62395
+ const { symbol, place, kind, fee_percent, focus_position } = payload;
62396
62396
  const main_position = await this.getFocusPosition({
62397
62397
  symbol,
62398
62398
  kind
62399
62399
  });
62400
62400
  return await main_position.followStop({
62401
62401
  focus_position,
62402
- fee_percent
62402
+ fee_percent,
62403
+ place
62403
62404
  });
62404
62405
  }
62405
62406
  async increasePositionAtStop(payload) {
@@ -69122,14 +69122,15 @@ class ExchangeAccount {
69122
69122
  });
69123
69123
  }
69124
69124
  async followStop(payload) {
69125
- const { symbol, kind, fee_percent, focus_position } = payload;
69125
+ const { symbol, place, kind, fee_percent, focus_position } = payload;
69126
69126
  const main_position = await this.getFocusPosition({
69127
69127
  symbol,
69128
69128
  kind
69129
69129
  });
69130
69130
  return await main_position.followStop({
69131
69131
  focus_position,
69132
- fee_percent
69132
+ fee_percent,
69133
+ place
69133
69134
  });
69134
69135
  }
69135
69136
  async increasePositionAtStop(payload) {
@@ -69095,14 +69095,15 @@ class ExchangeAccount {
69095
69095
  });
69096
69096
  }
69097
69097
  async followStop(payload) {
69098
- const { symbol, kind, fee_percent, focus_position } = payload;
69098
+ const { symbol, place, kind, fee_percent, focus_position } = payload;
69099
69099
  const main_position = await this.getFocusPosition({
69100
69100
  symbol,
69101
69101
  kind
69102
69102
  });
69103
69103
  return await main_position.followStop({
69104
69104
  focus_position,
69105
- fee_percent
69105
+ fee_percent,
69106
+ place
69106
69107
  });
69107
69108
  }
69108
69109
  async increasePositionAtStop(payload) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-170",
4
+ "version": "0.0.2-171",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",