@gbozee/ultimate 0.0.2-next.63 → 0.0.2-next.64
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 +2 -1
- package/dist/index.js +2 -1
- package/dist/mcp-server.cjs +2 -1
- package/dist/mcp-server.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -75800,7 +75800,8 @@ class ExchangePosition {
|
|
|
75800
75800
|
await this.exchange_account.placeProfitAndStop({
|
|
75801
75801
|
symbol: this.symbol,
|
|
75802
75802
|
trigger: true,
|
|
75803
|
-
target_pnl
|
|
75803
|
+
target_pnl,
|
|
75804
|
+
kind: this.kind
|
|
75804
75805
|
});
|
|
75805
75806
|
}
|
|
75806
75807
|
return [];
|
package/dist/index.js
CHANGED
|
@@ -75712,7 +75712,8 @@ class ExchangePosition {
|
|
|
75712
75712
|
await this.exchange_account.placeProfitAndStop({
|
|
75713
75713
|
symbol: this.symbol,
|
|
75714
75714
|
trigger: true,
|
|
75715
|
-
target_pnl
|
|
75715
|
+
target_pnl,
|
|
75716
|
+
kind: this.kind
|
|
75716
75717
|
});
|
|
75717
75718
|
}
|
|
75718
75719
|
return [];
|
package/dist/mcp-server.cjs
CHANGED
|
@@ -79522,7 +79522,8 @@ class ExchangePosition {
|
|
|
79522
79522
|
await this.exchange_account.placeProfitAndStop({
|
|
79523
79523
|
symbol: this.symbol,
|
|
79524
79524
|
trigger: true,
|
|
79525
|
-
target_pnl
|
|
79525
|
+
target_pnl,
|
|
79526
|
+
kind: this.kind
|
|
79526
79527
|
});
|
|
79527
79528
|
}
|
|
79528
79529
|
return [];
|
package/dist/mcp-server.js
CHANGED
|
@@ -79495,7 +79495,8 @@ class ExchangePosition {
|
|
|
79495
79495
|
await this.exchange_account.placeProfitAndStop({
|
|
79496
79496
|
symbol: this.symbol,
|
|
79497
79497
|
trigger: true,
|
|
79498
|
-
target_pnl
|
|
79498
|
+
target_pnl,
|
|
79499
|
+
kind: this.kind
|
|
79499
79500
|
});
|
|
79500
79501
|
}
|
|
79501
79502
|
return [];
|