hedgequantx 2.9.64 → 2.9.65
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
|
@@ -298,6 +298,13 @@ const executeAlgo = async ({ service, account, contract, config, strategy: strat
|
|
|
298
298
|
ui.addLog('debug', `${tickLog.message} ${tickLog.details}`);
|
|
299
299
|
}
|
|
300
300
|
|
|
301
|
+
// AI Agents status log every 20 seconds
|
|
302
|
+
if (currentSecond % 20 === 0 && supervisionEnabled && supervisionEngine) {
|
|
303
|
+
const status = supervisionEngine.getStatus();
|
|
304
|
+
const agentNames = status.agents.map(a => a.name.split(' ')[0]).join(', ');
|
|
305
|
+
ui.addLog('analysis', `AI Agents (${status.availableAgents}): ${agentNames} - watching...`);
|
|
306
|
+
}
|
|
307
|
+
|
|
301
308
|
// Reset volume counters
|
|
302
309
|
buyVolume = 0;
|
|
303
310
|
sellVolume = 0;
|