# Finviz Portfolio Fundamentals Monitor

**Use case:** 

Monitor Finviz valuation, ownership, profitability, technical, price, volume, and news data across a stock portfolio.

## Input

```json
{
  "tickerSymbols": [
    "SPY",
    "QQQ",
    "AAPL",
    "MSFT",
    "AMZN"
  ],
  "startUrls": [
    {
      "url": "https://finviz.com/quote.ashx?t=AAPL&p=d"
    }
  ],
  "includeNews": true,
  "maxNewsItems": 50,
  "maxConcurrency": 3,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "text"
  },
  "pe": {
    "label": "P/E",
    "format": "number"
  },
  "forwardPe": {
    "label": "Forward P/E",
    "format": "number"
  },
  "targetPrice": {
    "label": "Target price",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "newsCount": {
    "label": "News",
    "format": "number"
  },
  "quoteUrl": {
    "label": "Finviz URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Finviz Stock Quote & News Scraper](https://apify.com/automation-lab/finviz-stock-quote-news-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/finviz-stock-quote-news-scraper) to learn more, explore other use cases, and run it yourself.