hedgequantx 1.2.79 → 1.2.81

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": "1.2.79",
3
+ "version": "1.2.81",
4
4
  "description": "Prop Futures Algo Trading CLI - Connect to Topstep, Alpha Futures, and other prop firms",
5
5
  "main": "src/app.js",
6
6
  "bin": {
package/src/pages/algo.js CHANGED
@@ -435,7 +435,7 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
435
435
 
436
436
  // Centered subtitle
437
437
  const title2 = 'HQX Ultra-Scalping Algorithm';
438
- console.log(chalk.cyan(V) + chalk.white(center(title2, W)) + chalk.cyan(V));
438
+ console.log(chalk.cyan(V) + chalk.yellow(center(title2, W)) + chalk.cyan(V));
439
439
  console.log(chalk.cyan(MID));
440
440
 
441
441
  // Grid layout for metrics - each in its own cell
@@ -526,7 +526,7 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
526
526
  // Activity log header with spinner and centered date
527
527
  spinnerFrame = (spinnerFrame + 1) % spinnerChars.length;
528
528
  const spinnerChar = spinnerChars[spinnerFrame];
529
- const actLeft = ` Activity Log ${chalk.cyan(spinnerChar)}`;
529
+ const actLeft = ` Activity Log ${chalk.yellow(spinnerChar)}`;
530
530
  const actLeftPlain = ` Activity Log ${spinnerChar}`;
531
531
  const actRight = 'Press X to stop ';
532
532
  const dateCentered = `- ${dateStr} -`;