# Scrape Yahoo Finance Tech Stocks

**Use case:** 

Collect Yahoo Finance data for major technology stocks such as GOOGL, AMZN, NVDA, and TSLA with quote fields and exchange info.

## Input

```json
{
  "tickers": [
    "GOOGL",
    "AMZN",
    "NVDA",
    "TSLA"
  ],
  "dateRange": "5d",
  "interval": "1d",
  "includeHistory": true
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "change": {
    "label": "Change",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "text"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  }
}
```

## About this Actor

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