hedgequantx 1.2.83 → 1.2.84

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.83",
3
+ "version": "1.2.84",
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
@@ -507,7 +507,7 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
507
507
  const midSpace = Math.max(0, W - leftLen - rightLen);
508
508
  const datePad = Math.max(0, Math.floor((midSpace - dateCentered.length) / 2));
509
509
  const remainingPad = Math.max(0, midSpace - datePad - dateCentered.length);
510
- const dateSection = ' '.repeat(datePad) + chalk.gray(dateCentered) + ' '.repeat(remainingPad);
510
+ const dateSection = ' '.repeat(datePad) + chalk.cyan(dateCentered) + ' '.repeat(remainingPad);
511
511
  console.log(chalk.cyan(V) + chalk.white(actLeft) + dateSection + chalk.yellow(actRight) + chalk.cyan(V));
512
512
  console.log(chalk.cyan(BOT));
513
513