# Monthly ETF Dividend & Split History for Portfolio Analysis

**Use case:** 

Gather monthly historical data, including dividends and stock splits, for a selection of ETFs to analyze long-term portfolio performance. This information helps

## Input

```json
{
  "symbols": [
    "VOO",
    "QQQ",
    "ARKK",
    "SMH"
  ],
  "interval": "1mo",
  "startDate": "2019-01-01",
  "endDate": "2024-06-01"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "open": {
    "label": "Open",
    "format": "number"
  },
  "high": {
    "label": "High",
    "format": "number"
  },
  "low": {
    "label": "Low",
    "format": "number"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "dividends": {
    "label": "Dividends",
    "format": "number"
  },
  "stockSplits": {
    "label": "Stock Splits",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [US Stock Price Scraper](https://apify.com/crawlerbros/us-stock-price-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/us-stock-price-scraper) to learn more, explore other use cases, and run it yourself.