# TSLA Historical Daily Price Data, 1 Year OHLCV

**Use case:** 

One year of daily open, high, low, close, and volume bars for Tesla (TSLA), ready to drop into a backtest, chart, or quant model from Yahoo Finance.

## Input

```json
{
  "mode": "history",
  "query": "apple",
  "symbols": [
    "TSLA"
  ],
  "range": "1y",
  "interval": "1d",
  "maxItems": 300,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "changePct": {
    "label": "Change %",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  }
}
```

## About this Actor

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