From 8b7890bb8ff2e3136d0f990b1467622453a94b1e Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Tue, 15 Oct 2024 18:26:40 +0200 Subject: [PATCH] add more rules to watchlist --- src/routes/watchlist/stocks/+page.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/routes/watchlist/stocks/+page.svelte b/src/routes/watchlist/stocks/+page.svelte index 37179a38..e97077a5 100644 --- a/src/routes/watchlist/stocks/+page.svelte +++ b/src/routes/watchlist/stocks/+page.svelte @@ -49,6 +49,9 @@ let allRows = [ { name: 'Current Ratio', rule: 'currentRatio', type: 'float'}, { name: 'Quick Ratio', rule: 'quickRatio', type: 'float'}, { name: 'Analyst Rating', rule: 'analystRating', type: 'rating'}, + { name: 'Analyst Count', rule: 'analystCounter', type: 'int'}, + { name: 'Price Target', rule: 'priceTarget', type: 'float'}, + { name: 'Price Target Upside', rule: 'upside', type: 'percentSign'}, { name: 'Country', rule: 'country', type: 'str'}, { name: 'Gross Profit', rule: 'grossProfit', type: 'int'}, { name: 'Revenue Growth', rule: 'growthRevenue', type: 'percentSign'},