hedgequantx 1.7.3 → 1.7.5

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.7.3",
3
+ "version": "1.7.5",
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": {
@@ -104,7 +104,6 @@ const dashboardMenu = async (service) => {
104
104
  menuRow(chalk.yellow('[U] Update HQX'), chalk.red('[X] Disconnect'));
105
105
 
106
106
  console.log(chalk.cyan('╚' + '═'.repeat(W) + '╝'));
107
- console.log();
108
107
 
109
108
  // Input prompt
110
109
  const { choice } = await inquirer.prompt([
@@ -85,7 +85,7 @@ class AlgoUI {
85
85
  this.config = config;
86
86
  this.W = 96; // Fixed width
87
87
  this.logs = [];
88
- this.maxLogs = 50;
88
+ this.maxLogs = 15; // Fixed 15 lines to keep logo visible
89
89
  this.spinnerFrame = 0;
90
90
  this.firstDraw = true;
91
91
  this.isDrawing = false;