# Stock Market News for SPY, AAPL, MSFT, AMZN, NVDA

**Use case:** 

Gather the latest financial news and real-time stock prices for SPY, AAPL, MSFT, AMZN, and NVDA. Get comprehensive data including historical market trends.

## Input

```json
{
  "tickers": [
    "SPY",
    "AAPL",
    "MSFT",
    "AMZN",
    "NVDA"
  ]
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "shortName": {
    "label": "Name",
    "format": "text"
  },
  "currentPrice": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Yahoo Finance Scraper](https://apify.com/code-node-tools/yahoo-finance-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/code-node-tools/yahoo-finance-scraper) to learn more, explore other use cases, and run it yourself.