# Default 5-ticker scan (AAPL, TSLA, NVDA, SPY, AMD)

**Use case:** 

Ready-to-run example: scans 5 popular tickers (AAPL, TSLA, NVDA, SPY, AMD) for unusual options activity - abnormal volume vs open interest, big-premium prints,

## Input

```json
{
  "tickers": [
    "AAPL",
    "TSLA",
    "NVDA",
    "SPY",
    "AMD"
  ],
  "max_expiries": 3,
  "min_volume": 500,
  "min_vol_oi_ratio": 2,
  "min_premium_usd": 50000,
  "max_results": 100,
  "include_sentiment": true,
  "request_timeout_secs": 30
}
```

## Output

```json
{
  "row_type": {
    "label": "Type"
  },
  "ticker": {
    "label": "Ticker"
  },
  "option_type": {
    "label": "Call/Put"
  },
  "strike": {
    "label": "Strike"
  },
  "expiry": {
    "label": "Expiry"
  },
  "spot": {
    "label": "Spot"
  },
  "moneyness": {
    "label": "Moneyness"
  },
  "volume": {
    "label": "Volume"
  },
  "open_interest": {
    "label": "Open Interest"
  },
  "vol_oi_ratio": {
    "label": "Vol/OI"
  },
  "last_price": {
    "label": "Last Price"
  },
  "premium_usd": {
    "label": "Premium $"
  },
  "implied_volatility": {
    "label": "IV"
  },
  "sentiment": {
    "label": "Sentiment"
  },
  "unusual_score": {
    "label": "Score"
  }
}
```

## About this Actor

This example demonstrates how to use [Unusual Options Activity Scanner — Stock Options Flow](https://apify.com/0xgollum/unusual-options-activity) with a specific input configuration. Visit the [Actor detail page](https://apify.com/0xgollum/unusual-options-activity) to learn more, explore other use cases, and run it yourself.