# Weekly Altcoin Price Data for Portfolio Performance Tracking

**Use case:** 

Gather weekly historical data for popular altcoins to track their performance over time. This data is crucial for analyzing portfolio growth and rebalancing str

## Input

```json
{
  "symbols": [
    "SOLUSDT",
    "ADAUSDT",
    "XRPUSDT",
    "DOGEUSDT"
  ],
  "interval": "1w",
  "startDate": "2022-06-01",
  "market": "spot"
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "openTime": {
    "label": "Open Time",
    "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"
  },
  "closeTime": {
    "label": "Close Time",
    "format": "text"
  },
  "numberOfTrades": {
    "label": "Trades",
    "format": "number"
  }
}
```

## About this Actor

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