hedgequantx 1.7.9 → 1.8.0

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.9",
3
+ "version": "1.8.0",
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/app.js CHANGED
@@ -133,7 +133,7 @@ const banner = async () => {
133
133
  console.log(chalk.cyan('╠' + '═'.repeat(innerWidth) + '╣'));
134
134
  const tagline = isMobile ? `HQX v${version}` : `Prop Futures Algo Trading v${version}`;
135
135
  console.log(chalk.cyan('║') + chalk.white(centerText(tagline, innerWidth)) + chalk.cyan('║'));
136
- // No closing line - dashboard will continue the box
136
+ console.log(chalk.cyan('╚' + '═'.repeat(innerWidth) + '╝'));
137
137
  };
138
138
 
139
139
  /**
@@ -152,8 +152,7 @@ const mainMenu = async () => {
152
152
  console.log(chalk.cyan('║') + leftPadded + rightPadded + chalk.cyan('║'));
153
153
  };
154
154
 
155
- // Continue from banner
156
- console.log(chalk.cyan('╠' + '═'.repeat(innerWidth) + '╣'));
155
+ console.log(chalk.cyan('╔' + '═'.repeat(innerWidth) + '╗'));
157
156
  console.log(chalk.cyan('║') + chalk.white.bold(centerText('SELECT PLATFORM', innerWidth)) + chalk.cyan('║'));
158
157
  console.log(chalk.cyan('╠' + '═'.repeat(innerWidth) + '╣'));
159
158
 
@@ -30,8 +30,7 @@ const dashboardMenu = async (service) => {
30
30
  return chalk.cyan('║') + content + ' '.repeat(Math.max(0, padding)) + chalk.cyan('║');
31
31
  };
32
32
 
33
- // Continue from banner (no top border)
34
- console.log(chalk.cyan('╠' + '═'.repeat(W) + '╣'));
33
+ console.log(chalk.cyan('╔' + '═'.repeat(W) + '╗'));
35
34
  console.log(makeLine(chalk.yellow.bold('Welcome, HQX Trader!'), 'center'));
36
35
  console.log(chalk.cyan('╠' + '═'.repeat(W) + '╣'));
37
36