hedgequantx 2.9.12 → 2.9.13

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/app.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hedgequantx",
3
- "version": "2.9.12",
3
+ "version": "2.9.13",
4
4
  "description": "HedgeQuantX - Prop Futures Trading CLI",
5
5
  "main": "src/app.js",
6
6
  "bin": {
package/src/app.js CHANGED
@@ -101,6 +101,7 @@ const refreshStats = async () => {
101
101
  balance: hasBalanceData ? totalBalance : null,
102
102
  pnl: hasPnlData ? totalPnl : null,
103
103
  pnlPercent: null,
104
+ agents: getActiveAgentCount(),
104
105
  });
105
106
  } catch (err) {
106
107
  log.warn('Failed to refresh stats', { error: err.message });