# TSLA Daily Price History for Last 6 Months

**Use case:** 

Retrieve daily historical price data for Tesla (TSLA) over the past six months. Access comprehensive OHLCV data with no login required.

## Input

```json
{
  "mode": "historical",
  "symbols": [
    "TSLA"
  ],
  "range": "6mo",
  "interval": "1d",
  "proxy": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "mode": {
    "label": "Mode",
    "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": "Adjusted Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "change": {
    "label": "Change",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "dayHigh": {
    "label": "Day High",
    "format": "number"
  },
  "dayLow": {
    "label": "Day Low",
    "format": "number"
  },
  "fiftyTwoWeekHigh": {
    "label": "52-Week High",
    "format": "number"
  },
  "fiftyTwoWeekLow": {
    "label": "52-Week Low",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "exchange": {
    "label": "Exchange",
    "format": "string"
  },
  "quoteType": {
    "label": "Quote Type",
    "format": "string"
  }
}
```

## About this Actor

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