# EV Automaker Stocks TSLA RIVN LCID Scraper

**Use case:** 

Scrape electric vehicle and automaker stocks including Tesla, Rivian, Lucid, Ford and GM with live price, market cap and volume from Yahoo Finance.

## Input

```json
{
  "maxItems": 10,
  "symbols": [
    "TSLA",
    "RIVN",
    "LCID",
    "F",
    "GM"
  ],
  "range": "",
  "interval": "1d",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "change": {
    "label": "Change",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "previousClose": {
    "label": "Prev Close",
    "format": "number"
  },
  "open": {
    "label": "Open",
    "format": "number"
  },
  "dayHigh": {
    "label": "Day High",
    "format": "number"
  },
  "dayLow": {
    "label": "Day Low",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "fiftyTwoWeekHigh": {
    "label": "52W High",
    "format": "number"
  },
  "fiftyTwoWeekLow": {
    "label": "52W Low",
    "format": "number"
  },
  "trailingPE": {
    "label": "PE",
    "format": "number"
  },
  "epsTrailingTwelveMonths": {
    "label": "EPS",
    "format": "number"
  },
  "dividendYield": {
    "label": "Div Yield",
    "format": "number"
  },
  "circulatingSupply": {
    "label": "Circ Supply",
    "format": "number"
  },
  "marketTime": {
    "label": "Market Time",
    "format": "date"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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