feat: add autonomous paper-trading and calibration pipeline
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
const path = require('path');
|
||||
const { resolveAutonomyOutcomes } = require('./outcomeAutonomyWorker');
|
||||
|
||||
resolveAutonomyOutcomes({
|
||||
intelligencePath: process.env.INTELLIGENCE_DB || path.resolve('/data/intelligence.sqlite'),
|
||||
pollMs: Number(process.env.AUTONOMY_OUTCOME_POLL_MS) || 60000,
|
||||
}).catch((error) => {
|
||||
console.error('[autonomy-outcome] fatal:', error);
|
||||
process.exit(1);
|
||||
});
|
||||
Reference in New Issue
Block a user