initial commit
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user