# Finviz Multi-Screen Stock Universe Monitor

**Use case:** 

Monitor multiple filtered Finviz stock universes and send typed ticker, valuation, price, change, volume, and provenance data to your pipeline.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://finviz.com/screener.ashx?v=111&f=fa_pe_u15,geo_usa&o=-marketcap"
    },
    {
      "url": "https://finviz.com/screener.ashx?v=111&f=fa_sales5years_o15,geo_usa&o=-volume"
    }
  ],
  "maxItems": 500,
  "maxPagesPerUrl": 15
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "sector": {
    "label": "Sector",
    "format": "string"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "dailyChangePercent": {
    "label": "Daily change (%)",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "detailUrl": {
    "label": "Finviz stock",
    "format": "string"
  },
  "sourceUrl": {
    "label": "Source screen",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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