hedgequantx 2.9.93 → 2.9.95

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.9.93",
3
+ "version": "2.9.95",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
@@ -3,5 +3,5 @@
3
3
  try {
4
4
  module.exports = require('../../../dist/lib/m/hqx-2b.js');
5
5
  } catch (e) {
6
- module.exports = require('../../../private/strategies/hqx-2b-liquidity-sweep');
6
+ module.exports = require('../../../private/strategies/hqx-2b');
7
7
  }
@@ -413,7 +413,6 @@ const executeAlgo = async ({ service, account, contract, config, strategy: strat
413
413
 
414
414
  // Preload historical bars for HQX-2B strategy only (bar-based strategy)
415
415
  // Note: HISTORY_PLANT may not be available on all accounts (e.g., paper trading)
416
- ui.addLog('debug', `Strategy: ${strategyId}, preloadBars: ${typeof strategy.preloadBars}`);
417
416
  if (strategyId === 'hqx-2b' && strategy.preloadBars) {
418
417
  try {
419
418
  ui.addLog('system', 'Loading historical bars...');
@@ -426,7 +425,7 @@ const executeAlgo = async ({ service, account, contract, config, strategy: strat
426
425
  }
427
426
  } catch (histErr) {
428
427
  // HISTORY_PLANT not available (common on paper accounts)
429
- ui.addLog('system', `Historical data error: ${histErr.message}`);
428
+ ui.addLog('system', 'Historical data not available - warming up with live bars...');
430
429
  }
431
430
  }
432
431
  } catch (e) {