hedgequantx 1.2.101 → 1.2.102

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.101",
3
+ "version": "1.2.102",
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
@@ -471,7 +471,7 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
471
471
 
472
472
  // Logs buffer - newest first display, show many logs
473
473
  const logs = [];
474
- const MAX_LOGS = 30;
474
+ const MAX_LOGS = 50;
475
475
 
476
476
  // Log colors
477
477
  const typeColors = {
@@ -676,8 +676,8 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
676
676
  console.log(chalk.cyan(V) + chalk.white(actLeft) + dateSection + chalk.yellow(actRight) + chalk.cyan(V));
677
677
  console.log(chalk.cyan(BOT));
678
678
 
679
- // Logs (without borders) - newest first, fixed number of lines
680
- const MAX_VISIBLE_LOGS = 15;
679
+ // Logs (without borders) - newest first, show more logs
680
+ const MAX_VISIBLE_LOGS = 25;
681
681
  console.log();
682
682
 
683
683
  if (logs.length === 0) {