hedgequantx 1.2.86 → 1.2.87

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.86",
3
+ "version": "1.2.87",
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
@@ -342,11 +342,15 @@ const launchAlgo = async (service, account, contract, numContracts, dailyTarget,
342
342
 
343
343
  const getIcon = (type) => {
344
344
  switch(type) {
345
- case 'signal': return '[*]';
346
- case 'trade': return '[>]';
347
- case 'error': return '[X]';
345
+ case 'signal': return '[SIGNAL]';
346
+ case 'trade': return '[TRADE]';
347
+ case 'order': return '[ORDER]';
348
+ case 'position': return '[POSITION]';
349
+ case 'error': return '[ERROR]';
350
+ case 'warning': return '[WARNING]';
348
351
  case 'success': return '[OK]';
349
- default: return '[.]';
352
+ case 'analysis': return '[ANALYSIS]';
353
+ default: return '[INFO]';
350
354
  }
351
355
  };
352
356