# Intraday 1-Minute Stock Price Data for Day Trading

**Use case:** 

Access 1-minute candlestick data for high-volatility stocks to support intraday trading strategies and real-time market analysis. This granular data enables day

## Input

```json
{
  "symbols": [
    "GME",
    "AMC",
    "RIOT",
    "COIN"
  ],
  "interval": "1m",
  "startDate": "2024-05-30",
  "endDate": "2024-05-31"
}
```

## 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.