hedgequantx 1.2.97 → 1.2.98

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.97",
3
+ "version": "1.2.98",
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
@@ -454,16 +454,17 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
454
454
  };
455
455
 
456
456
  const getIcon = (type) => {
457
+ // Fixed width tags (10 chars) for alignment
457
458
  switch(type) {
458
- case 'signal': return '[SIGNAL]';
459
- case 'trade': return '[TRADE]';
460
- case 'order': return '[ORDER]';
459
+ case 'signal': return '[SIGNAL] ';
460
+ case 'trade': return '[TRADE] ';
461
+ case 'order': return '[ORDER] ';
461
462
  case 'position': return '[POSITION]';
462
- case 'error': return '[ERROR]';
463
- case 'warning': return '[WARNING]';
464
- case 'success': return '[OK]';
463
+ case 'error': return '[ERROR] ';
464
+ case 'warning': return '[WARNING] ';
465
+ case 'success': return '[OK] ';
465
466
  case 'analysis': return '[ANALYSIS]';
466
- default: return '[INFO]';
467
+ default: return '[INFO] ';
467
468
  }
468
469
  };
469
470