# Daily 1y for a basket

**Use case:** 

A preconfigured run of Yahoo Finance — Historical Prices (OHLCV): Daily 1y for a basket. Input — symbols: AAPL, MSFT, NVDA · range: 1y · interval: 1d. Results are returned as JSON rows in the default dataset; run it as-is or change the input and run your own.

## Input

```json
{
  "symbols": [
    "AAPL",
    "MSFT",
    "NVDA"
  ],
  "mode": "historical",
  "range": "1y",
  "interval": "1d",
  "maxOptionContracts": 200,
  "newsPerSymbol": 10
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol"
  },
  "mode": {
    "label": "Mode"
  },
  "name": {
    "label": "Name"
  },
  "currency": {
    "label": "Currency"
  },
  "exchange": {
    "label": "Exchange"
  },
  "quoteType": {
    "label": "Quote Type"
  },
  "eventType": {
    "label": "Event Type"
  },
  "date": {
    "label": "Date"
  },
  "timestamp": {
    "label": "Timestamp"
  },
  "open": {
    "label": "Open"
  },
  "high": {
    "label": "High"
  },
  "low": {
    "label": "Low"
  },
  "close": {
    "label": "Close"
  },
  "adjClose": {
    "label": "Adj Close"
  },
  "volume": {
    "label": "Volume"
  },
  "amount": {
    "label": "Amount"
  },
  "splitRatio": {
    "label": "Split Ratio"
  },
  "price": {
    "label": "Price"
  },
  "change": {
    "label": "Change"
  },
  "changePercent": {
    "label": "Change Percent"
  },
  "previousClose": {
    "label": "Previous Close"
  },
  "dayHigh": {
    "label": "Day High"
  },
  "dayLow": {
    "label": "Day Low"
  },
  "marketCap": {
    "label": "Market Cap"
  },
  "fiftyTwoWeekHigh": {
    "label": "Fifty Two Week High"
  },
  "fiftyTwoWeekLow": {
    "label": "Fifty Two Week Low"
  },
  "trailingPE": {
    "label": "Trailing PE"
  },
  "forwardPE": {
    "label": "Forward PE"
  },
  "dividendYield": {
    "label": "Dividend Yield"
  },
  "beta": {
    "label": "Beta"
  },
  "marketTime": {
    "label": "Market Time"
  },
  "totalRevenue": {
    "label": "Total Revenue"
  },
  "revenueGrowth": {
    "label": "Revenue Growth"
  },
  "grossProfits": {
    "label": "Gross Profits"
  },
  "ebitda": {
    "label": "Ebitda"
  },
  "netIncome": {
    "label": "Net Income"
  },
  "operatingIncome": {
    "label": "Operating Income"
  },
  "profitMargin": {
    "label": "Profit Margin"
  },
  "operatingMargin": {
    "label": "Operating Margin"
  },
  "returnOnEquity": {
    "label": "Return On Equity"
  },
  "totalCash": {
    "label": "Total Cash"
  },
  "totalDebt": {
    "label": "Total Debt"
  },
  "debtToEquity": {
    "label": "Debt To Equity"
  },
  "currentRatio": {
    "label": "Current Ratio"
  },
  "freeCashflow": {
    "label": "Free Cashflow"
  },
  "operatingCashflow": {
    "label": "Operating Cashflow"
  },
  "totalAssets": {
    "label": "Total Assets"
  },
  "totalLiabilities": {
    "label": "Total Liabilities"
  },
  "bookValue": {
    "label": "Book Value"
  },
  "trailingEps": {
    "label": "Trailing Eps"
  },
  "forwardEps": {
    "label": "Forward Eps"
  },
  "priceToBook": {
    "label": "Price To Book"
  },
  "payoutRatio": {
    "label": "Payout Ratio"
  },
  "targetMeanPrice": {
    "label": "Target Mean Price"
  },
  "recommendationKey": {
    "label": "Recommendation Key"
  },
  "numberOfAnalystOpinions": {
    "label": "Number Of Analyst Opinions"
  },
  "statementDate": {
    "label": "Statement Date"
  },
  "underlyingPrice": {
    "label": "Underlying Price"
  },
  "contractSymbol": {
    "label": "Contract Symbol"
  },
  "type": {
    "label": "Type"
  },
  "strike": {
    "label": "Strike"
  },
  "expiration": {
    "label": "Expiration"
  },
  "lastPrice": {
    "label": "Last Price"
  },
  "bid": {
    "label": "Bid"
  },
  "ask": {
    "label": "Ask"
  },
  "percentChange": {
    "label": "Percent Change"
  },
  "openInterest": {
    "label": "Open Interest"
  },
  "impliedVolatility": {
    "label": "Implied Volatility"
  },
  "inTheMoney": {
    "label": "In The Money"
  },
  "title": {
    "label": "Title"
  },
  "publisher": {
    "label": "Publisher"
  },
  "link": {
    "label": "Link"
  },
  "publishedAt": {
    "label": "Published At"
  },
  "relatedTickers": {
    "label": "Related Tickers"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ponderable_hydrometer/yahoo-finance-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
