# Bank Stock Quotes for JPM, BAC, Wells Fargo

**Use case:** 

Collect live stock quotes for JPMorgan, Bank of America, and Wells Fargo. Get real-time financial data without an API key.

## Input

```json
{
  "mode": "quote",
  "symbols": [
    "JPM",
    "BAC",
    "WFC",
    "C",
    "GS",
    "MS",
    "USB"
  ],
  "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.