hedgequantx 1.2.80 → 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.80",
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
@@ -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} -`;