hedgequantx 2.3.19 → 2.3.20

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.19",
3
+ "version": "2.3.20",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -336,6 +336,12 @@ const launchAlgo = async (service, account, contract, config) => {
336
336
  if (cleanupKeys) cleanupKeys();
337
337
  ui.cleanup();
338
338
 
339
+ // Ensure stdin is ready for prompts after algo cleanup
340
+ if (process.stdin.isTTY) {
341
+ process.stdin.setRawMode(false);
342
+ }
343
+ process.stdin.resume();
344
+
339
345
  // Calculate duration
340
346
  const durationMs = Date.now() - stats.startTime;
341
347
  const hours = Math.floor(durationMs / 3600000);