# Historical Stock Data by Ticker — 10-Year Prices

**Use case:** 

Download historical stock data for any ticker: 10 years of daily prices, volume, splits and dividends. Free preview, then low cost per 1,000 rows.

## Input

```json
{
  "mode": "history",
  "symbols": [
    "SPY",
    "QQQ",
    "DIA"
  ],
  "range": "10y",
  "interval": "1d",
  "maxItems": 1000,
  "adjustedClose": true,
  "includePrePost": false
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "regular_price": {
    "label": "Price",
    "format": "number"
  },
  "market_cap": {
    "label": "Market Cap",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "day_high": {
    "label": "Day High",
    "format": "number"
  },
  "day_low": {
    "label": "Day Low",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "timestamp": {
    "label": "Timestamp",
    "format": "text"
  },
  "parse_confidence": {
    "label": "Confidence",
    "format": "number"
  }
}
```

## About this Actor

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