# Track Options Chain & Implied Volatility for Popular Stocks

**Use case:** 

Extract real-time options chain data including Implied Volatility (IV), Open Interest, and Volume for major stocks like AAPL and TSLA.

## Input

```json
{
  "tickers": [
    "AAPL",
    "TSLA",
    "NVDA",
    "AMZN",
    "META"
  ],
  "limitPerTicker": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "stockPrice": {
    "label": "Stock Price",
    "format": "number"
  },
  "type": {
    "label": "Option Type",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "strike": {
    "label": "Strike",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "iv": {
    "label": "IV",
    "format": "text"
  },
  "openInterest": {
    "label": "Open Interest",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "itm": {
    "label": "ITM",
    "format": "boolean"
  },
  "expiration": {
    "label": "Expiration",
    "format": "date"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Yahoo Finance Options & IV Scraper (Cheap and Fast) 📈](https://apify.com/ahmed_jasarevic/yahoo-finance-options) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ahmed_jasarevic/yahoo-finance-options) to learn more, explore other use cases, and run it yourself.