hedgequantx 2.6.55 → 2.6.57

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": "2.6.55",
3
+ "version": "2.6.57",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -344,6 +344,7 @@ const launchAlgo = async (service, account, contract, config) => {
344
344
  }
345
345
  stats.trades++;
346
346
  currentPosition = 0;
347
+ stats.position = 0; // Reset UI position display
347
348
  pendingOrder = false;
348
349
  algoLogger.info(ui, 'HOLD TIME', `${(holdDurationMs / 1000).toFixed(1)}s`);
349
350
  });
@@ -1033,8 +1034,7 @@ const launchAlgo = async (service, account, contract, config) => {
1033
1034
  // Summary
1034
1035
  renderSessionSummary(stats, stopReason);
1035
1036
 
1036
- console.log('\n RETURNING TO MENU IN 3 SECONDS...');
1037
- await new Promise(resolve => setTimeout(resolve, 3000));
1037
+ await prompts.waitForEnter();
1038
1038
  };
1039
1039
 
1040
1040
  module.exports = { oneAccountMenu };