@gbozee/ultimate 0.0.2-171 → 0.0.2-172
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 -2
- package/dist/index.js +2 -2
- package/dist/mcp-server.cjs +2 -2
- package/dist/mcp-server.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -61244,8 +61244,8 @@ class ExchangePosition {
|
|
|
61244
61244
|
const diff = Math.abs(avg_qty - max_size);
|
|
61245
61245
|
const ratio = diff / avg_qty;
|
|
61246
61246
|
if (avg_qty > max_size && ratio > 0.01) {
|
|
61247
|
-
await this.
|
|
61248
|
-
|
|
61247
|
+
await this.cancelExchangeOrder({
|
|
61248
|
+
type: "limit"
|
|
61249
61249
|
});
|
|
61250
61250
|
}
|
|
61251
61251
|
}
|
package/dist/index.js
CHANGED
|
@@ -61184,8 +61184,8 @@ class ExchangePosition {
|
|
|
61184
61184
|
const diff = Math.abs(avg_qty - max_size);
|
|
61185
61185
|
const ratio = diff / avg_qty;
|
|
61186
61186
|
if (avg_qty > max_size && ratio > 0.01) {
|
|
61187
|
-
await this.
|
|
61188
|
-
|
|
61187
|
+
await this.cancelExchangeOrder({
|
|
61188
|
+
type: "limit"
|
|
61189
61189
|
});
|
|
61190
61190
|
}
|
|
61191
61191
|
}
|
package/dist/mcp-server.cjs
CHANGED
|
@@ -67914,8 +67914,8 @@ class ExchangePosition {
|
|
|
67914
67914
|
const diff = Math.abs(avg_qty - max_size);
|
|
67915
67915
|
const ratio = diff / avg_qty;
|
|
67916
67916
|
if (avg_qty > max_size && ratio > 0.01) {
|
|
67917
|
-
await this.
|
|
67918
|
-
|
|
67917
|
+
await this.cancelExchangeOrder({
|
|
67918
|
+
type: "limit"
|
|
67919
67919
|
});
|
|
67920
67920
|
}
|
|
67921
67921
|
}
|
package/dist/mcp-server.js
CHANGED
|
@@ -67887,8 +67887,8 @@ class ExchangePosition {
|
|
|
67887
67887
|
const diff = Math.abs(avg_qty - max_size);
|
|
67888
67888
|
const ratio = diff / avg_qty;
|
|
67889
67889
|
if (avg_qty > max_size && ratio > 0.01) {
|
|
67890
|
-
await this.
|
|
67891
|
-
|
|
67890
|
+
await this.cancelExchangeOrder({
|
|
67891
|
+
type: "limit"
|
|
67892
67892
|
});
|
|
67893
67893
|
}
|
|
67894
67894
|
}
|