initial commit

This commit is contained in:
Saki
2026-06-02 00:34:42 -04:00
commit 3768d83b5b
14 changed files with 1939 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import { ScreenerEngine } from './src/core/ScreenerEngine.js';
const tickers = [
'PLTR',
'AAPL',
'VOO',
'MSFT',
'TSLA',
'QQQ',
'O',
'BND',
'AGG',
'LQD',
'GOVT',
'MUB',
'SHY',
'IEF',
'TLT',
];
async function main() {
console.log('🚀 Starting Screener Evaluation...');
const engine = new ScreenerEngine();
try {
await engine.runParallelScreener(tickers);
} catch (err) {
console.error('\n Execution Failed:', err);
}
}
main().catch(console.error);