hedgequantx 2.3.21 → 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.21",
3
+ "version": "2.3.23",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -213,10 +213,9 @@ const launchAlgo = async (service, account, contract, config) => {
213
213
  if (acc && acc.profitAndLoss !== undefined) {
214
214
  const accountPnL = acc.profitAndLoss;
215
215
 
216
- // Set starting P&L on first poll
216
+ // Set starting P&L on first poll (silent - don't expose account P&L)
217
217
  if (startingPnL === null) {
218
218
  startingPnL = accountPnL;
219
- ui.addLog('info', `Starting P&L: $${startingPnL.toFixed(2)}`);
220
219
  }
221
220
 
222
221
  // Session P&L = current - starting (both from API)
@@ -345,7 +344,9 @@ const launchAlgo = async (service, account, contract, config) => {
345
344
  // Summary
346
345
  renderSessionSummary(stats, stopReason);
347
346
 
348
- 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));
349
350
  };
350
351
 
351
352
  module.exports = { oneAccountMenu };