hedgequantx 1.2.89 → 1.2.90

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.89",
3
+ "version": "1.2.90",
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
@@ -605,7 +605,11 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
605
605
  console.log(color(logLine) + '\x1B[K');
606
606
  });
607
607
  }
608
- // Clear remaining lines below logs
608
+ // Add 30 empty lines so old logs scroll down further
609
+ for (let i = 0; i < 30; i++) {
610
+ console.log('\x1B[K');
611
+ }
612
+ // Clear remaining lines below
609
613
  process.stdout.write('\x1B[J');
610
614
  };
611
615