# Download 1 Year of Daily Stock Price History

**Use case:** 

Daily OHLCV candles for any ticker over a chosen range — backtesting and charting data in one run.

## Input

```json
{
  "tickers": [
    "AAPL"
  ],
  "dataBlocks": [
    "history"
  ],
  "range": "1y",
  "interval": "1d",
  "fundamentalsGranularity": "annual",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "history": {
    "label": "History",
    "format": "object"
  },
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "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": "number"
  }
}
```

## About this Actor

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