hedgequantx 2.3.15 → 2.3.16

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/lib/api.jsc CHANGED
Binary file
package/dist/lib/api2.jsc CHANGED
Binary file
package/dist/lib/core.jsc CHANGED
Binary file
Binary file
package/dist/lib/data.jsc CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/lib/n/r1.jsc CHANGED
Binary file
package/dist/lib/n/r2.jsc CHANGED
Binary file
package/dist/lib/n/r3.jsc CHANGED
Binary file
package/dist/lib/n/r4.jsc CHANGED
Binary file
package/dist/lib/n/r5.jsc CHANGED
Binary file
package/dist/lib/n/r6.jsc CHANGED
Binary file
package/dist/lib/n/r7.jsc CHANGED
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.3.15",
3
+ "version": "2.3.16",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -275,14 +275,18 @@ class AlgoUI {
275
275
  const dateStr = now.toLocaleDateString('en-US', { month: 'short', day: 'numeric' });
276
276
 
277
277
  const leftText = ` EXECUTION LOG ${spinner}`;
278
- const rightText = `${dateStr} ${timeStr} [X] STOP `;
279
- const totalLen = leftText.length + rightText.length;
280
- const space = W - totalLen;
278
+ const rightText = `[X] STOP `;
279
+
280
+ const totalFixed = leftText.length + rightText.length;
281
+ const centerSpace = W - totalFixed;
282
+ const centerPadLeft = Math.floor((centerSpace - dateStr.length) / 2);
283
+ const centerPadRight = centerSpace - dateStr.length - centerPadLeft;
281
284
 
282
285
  const left = ` EXECUTION LOG ${chalk.yellow(spinner)}`;
283
- const right = `${chalk.gray(dateStr)} ${chalk.white(timeStr)} ${chalk.yellow('[X] STOP')} `;
286
+ const center = ' '.repeat(Math.max(0, centerPadLeft)) + chalk.white(dateStr) + ' '.repeat(Math.max(0, centerPadRight));
287
+ const right = chalk.yellow('[X] STOP') + ' ';
284
288
 
285
- this._line(chalk.cyan(BOX.V) + chalk.white.bold(left) + ' '.repeat(Math.max(0, space)) + right + chalk.cyan(BOX.V));
289
+ this._line(chalk.cyan(BOX.V) + chalk.white.bold(left) + center + right + chalk.cyan(BOX.V));
286
290
  this._line(chalk.cyan(BOX.ML + BOX.H.repeat(W) + BOX.MR));
287
291
 
288
292
  // Logs: newest at top