# Yahoo Finance Historical Data Scraper

**Use case:** 

Scrape Yahoo Finance historical stock data: OHLCV prices, dividends, splits, and company profiles. Supports multiple tickers and custom date ranges.

## Input

```json
{
  "symbols": [
    "NVDA",
    "AAPL",
    "MSFT"
  ],
  "dateRange": "10y",
  "includeDividends": true,
  "includeSplits": true,
  "includeProfile": true,
  "includeEvents": true,
  "generateUnifiedOutput": true
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "string"
  },
  "symbol": {
    "label": "Ticker",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "open": {
    "label": "Open",
    "format": "number"
  },
  "high": {
    "label": "High",
    "format": "number"
  },
  "low": {
    "label": "Low",
    "format": "number"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "adjClose": {
    "label": "Adj. Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "integer"
  },
  "amount": {
    "label": "Dividend Amount",
    "format": "number"
  },
  "ratio": {
    "label": "Split Ratio",
    "format": "string"
  },
  "sector": {
    "label": "Sector",
    "format": "string"
  },
  "industry": {
    "label": "Industry",
    "format": "string"
  },
  "summary": {
    "label": "Business Summary",
    "format": "string"
  }
}
```

## About this Actor

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