# Monthly 📈 Stooq Historical Stock Prices

**Use case:** 

Extract 📈 Stooq Historical Stock Prices data filtered by Monthly. Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "ticker": "AAPL.US",
  "interval": "m",
  "maxItems": 10
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "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"
  },
  "changePct": {
    "label": "Change pct"
  },
  "sourceUrl": {
    "label": "Source",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [📈 Stooq Historical Stock Prices Scraper](https://apify.com/parseforge/stooq-historical-stocks-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/stooq-historical-stocks-scraper) to learn more, explore other use cases, and run it yourself.