# Stock News Monitor – Multi-Ticker Portfolio Feed

**Use case:** 

Track financial news across a portfolio of stocks. Returns headlines and full article text per ticker. Ideal for sentiment analysis and AI pipelines.

## Input

```json
{
  "tickers": "AAPL,MSFT,GOOGL,NVDA",
  "maxArticles": 50,
  "daysBack": 3,
  "scrapeFullText": true,
  "maxArticleLength": 15000
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker symbol",
    "format": "string"
  },
  "title": {
    "label": "Headline",
    "format": "string"
  },
  "source": {
    "label": "Source domain",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "fullTextAvailable": {
    "label": "Full text available",
    "format": "boolean"
  },
  "wordCount": {
    "label": "Word count",
    "format": "integer"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  }
}
```

## About this Actor

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