phase-7: code restructure
This commit is contained in:
committed by
saikiranvella
parent
c160e65bd6
commit
357b0c0f6e
+4
-4
@@ -12,9 +12,9 @@
|
||||
*/
|
||||
|
||||
import 'dotenv/config';
|
||||
import { CatalystAnalyst } from '../server/analyst/CatalystAnalyst.js';
|
||||
import { ScreenerEngine } from '../server/screener/ScreenerEngine.js';
|
||||
import { HtmlReporter } from '../server/reporters/HtmlReporter.js';
|
||||
import { CatalystAnalyst } from '../server/services/CatalystAnalyst';
|
||||
import { ScreenerEngine } from '../server/services/ScreenerEngine';
|
||||
import { HtmlReporter } from '../server/reporters/HtmlReporter';
|
||||
|
||||
const DEFAULT_WATCHLIST: string[] = [
|
||||
'PLTR',
|
||||
@@ -54,7 +54,7 @@ async function main(): Promise<void> {
|
||||
tickers = newsTickers;
|
||||
console.log("\n📰 Stories driving today's screen:");
|
||||
stories.slice(0, 5).forEach((s) => {
|
||||
const tags = s.relatedTickers.slice(0, 3).join(', ');
|
||||
const tags = s.tickers.slice(0, 3).join(', ');
|
||||
console.log(` • ${s.title}${tags ? ` [${tags}]` : ''}`);
|
||||
});
|
||||
console.log(`\n📋 Tickers: ${tickers.join(', ')}\n`);
|
||||
|
||||
Reference in New Issue
Block a user