hedgequantx 2.9.108 → 2.9.109

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.9.108",
3
+ "version": "2.9.109",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -289,10 +289,8 @@ class AlgoUI {
289
289
  const { W, logs, maxLogs } = this;
290
290
 
291
291
  // Activity header - HF style with animated spinner
292
- if (!this.startTime) this.startTime = Date.now();
293
- // Increment spinner frame based on time (100ms per frame = visible rotation)
294
- const elapsed = Date.now() - this.startTime;
295
- this.spinnerFrame = Math.floor(elapsed / 100) % SPINNER.length;
292
+ // Increment spinner frame each render (250ms interval = visible rotation)
293
+ this.spinnerFrame = (this.spinnerFrame + 1) % SPINNER.length;
296
294
  const spinner = SPINNER[this.spinnerFrame];
297
295
  const now = new Date();
298
296
  const timeStr = now.toLocaleTimeString('en-US', { hour12: false });