hedgequantx 2.6.148 → 2.6.149
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
CHANGED
|
@@ -2193,11 +2193,13 @@ const launchMultiSymbolRithmic = async (service, account, contracts, config) =>
|
|
|
2193
2193
|
// Close log file with session summary
|
|
2194
2194
|
try { ui.closeLog(stats); } catch {}
|
|
2195
2195
|
|
|
2196
|
-
try { ui.cleanup(); } catch {}
|
|
2197
|
-
|
|
2198
2196
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
2199
2197
|
// SESSION SUMMARY (duration already calculated above)
|
|
2200
2198
|
// ═══════════════════════════════════════════════════════════════════════════
|
|
2199
|
+
// Clear screen, show cursor, and render summary
|
|
2200
|
+
process.stdout.write('\x1B[?25h'); // Show cursor
|
|
2201
|
+
console.clear();
|
|
2202
|
+
|
|
2201
2203
|
// Render multi-symbol summary with same style as single-symbol
|
|
2202
2204
|
renderMultiSymbolSummary(stats, stopReason, stats.symbolStats);
|
|
2203
2205
|
|