hedgequantx 2.7.55 → 2.7.57
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/package.json +1 -1
- package/src/app.js +3 -1
- package/src/pages/stats/index.js +4 -2
package/package.json
CHANGED
package/src/app.js
CHANGED
|
@@ -175,7 +175,9 @@ const run = async () => {
|
|
|
175
175
|
await refreshStats();
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
//
|
|
178
|
+
// Clear spinner interval but don't erase the line visually
|
|
179
|
+
// dashboardMenu's console.clear() will handle the visual cleanup
|
|
180
|
+
spinner.stop();
|
|
179
181
|
|
|
180
182
|
// Main loop
|
|
181
183
|
while (true) {
|
package/src/pages/stats/index.js
CHANGED
|
@@ -124,7 +124,7 @@ const aggregateAccountData = async (activeAccounts) => {
|
|
|
124
124
|
} catch (e) {}
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
// Trade history
|
|
127
|
+
// Trade history from ORDER_PLANT
|
|
128
128
|
if (typeof svc.getTradeHistory === 'function') {
|
|
129
129
|
try {
|
|
130
130
|
const tradesResult = await svc.getTradeHistory(account.accountId, 30);
|
|
@@ -137,7 +137,9 @@ const aggregateAccountData = async (activeAccounts) => {
|
|
|
137
137
|
connectionType: connType
|
|
138
138
|
})));
|
|
139
139
|
}
|
|
140
|
-
} catch (e) {
|
|
140
|
+
} catch (e) {
|
|
141
|
+
// Silent - trade history may not be available
|
|
142
|
+
}
|
|
141
143
|
}
|
|
142
144
|
} catch (e) {}
|
|
143
145
|
}
|