hedgequantx 1.2.131 → 1.2.132

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.131",
3
+ "version": "1.2.132",
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
@@ -1584,6 +1584,10 @@ const launchCopyTrading = async (config) => {
1584
1584
  bufferLine(chalk.cyan(V) + chalk.white(center(title1, W)) + chalk.cyan(V));
1585
1585
  bufferLine(chalk.cyan(MID));
1586
1586
 
1587
+ // Centered subtitle
1588
+ const title2 = 'HQX Ultra-Scalping Algorithm';
1589
+ bufferLine(chalk.cyan(V) + chalk.yellow(center(title2, W)) + chalk.cyan(V));
1590
+
1587
1591
  // Grid layout - 2 columns
1588
1592
  const VS = '\u2502'; // Vertical separator (thin)
1589
1593
  const colL = 48, colR = 47;
@@ -1679,7 +1683,7 @@ const launchCopyTrading = async (config) => {
1679
1683
  };
1680
1684
 
1681
1685
  // Logs inside the rectangle - newest first, max 30 lines
1682
- const MAX_VISIBLE_LOGS = 30;
1686
+ const MAX_VISIBLE_LOGS = 50;
1683
1687
 
1684
1688
  if (logs.length === 0) {
1685
1689
  const emptyLine = ' Waiting for activity...';