@gbozee/ultimate 0.0.2-63 → 0.0.2-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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -56434,7 +56434,7 @@ class ExchangeAccount {
|
|
|
56434
56434
|
symbol,
|
|
56435
56435
|
long_position: active_account.position.long,
|
|
56436
56436
|
short_position: active_account.position.short,
|
|
56437
|
-
usd_balance: active_account.
|
|
56437
|
+
usd_balance: active_account.balance || 0
|
|
56438
56438
|
});
|
|
56439
56439
|
await this.syncOrders({
|
|
56440
56440
|
symbol,
|
package/dist/index.js
CHANGED
|
@@ -56392,7 +56392,7 @@ class ExchangeAccount {
|
|
|
56392
56392
|
symbol,
|
|
56393
56393
|
long_position: active_account.position.long,
|
|
56394
56394
|
short_position: active_account.position.short,
|
|
56395
|
-
usd_balance: active_account.
|
|
56395
|
+
usd_balance: active_account.balance || 0
|
|
56396
56396
|
});
|
|
56397
56397
|
await this.syncOrders({
|
|
56398
56398
|
symbol,
|