# Weekly Crypto-Related Stock Performance Analysis

**Use case:** 

Collect weekly price data for stocks highly correlated with the cryptocurrency market to identify trends and assess sector performance. This supports investment

## Input

```json
{
  "symbols": [
    "MSTR",
    "MARA",
    "HUT",
    "CLSK"
  ],
  "interval": "1wk",
  "startDate": "2022-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.