hedgequantx 2.3.22 → 2.3.23

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/dist/lib/api.jsc CHANGED
Binary file
package/dist/lib/api2.jsc CHANGED
Binary file
package/dist/lib/core.jsc CHANGED
Binary file
Binary file
package/dist/lib/data.jsc CHANGED
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/lib/n/r1.jsc CHANGED
Binary file
package/dist/lib/n/r2.jsc CHANGED
Binary file
package/dist/lib/n/r3.jsc CHANGED
Binary file
package/dist/lib/n/r4.jsc CHANGED
Binary file
package/dist/lib/n/r5.jsc CHANGED
Binary file
package/dist/lib/n/r6.jsc CHANGED
Binary file
package/dist/lib/n/r7.jsc CHANGED
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.3.22",
3
+ "version": "2.3.23",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -344,7 +344,9 @@ const launchAlgo = async (service, account, contract, config) => {
344
344
  // Summary
345
345
  renderSessionSummary(stats, stopReason);
346
346
 
347
- await prompts.waitForEnter();
347
+ // Wait 3 seconds then return to menu (avoid stdin issues after raw mode)
348
+ console.log('\n Returning to menu in 3 seconds...');
349
+ await new Promise(resolve => setTimeout(resolve, 3000));
348
350
  };
349
351
 
350
352
  module.exports = { oneAccountMenu };