# Daily Bitcoin & Ethereum Price History for Market Analysis

**Use case:** 

Scrape daily historical price data for Bitcoin and Ethereum to inform your trading strategies. Gain insights into past market movements and identify potential t

## Input

```json
{
  "symbols": [
    "BTCUSDT",
    "ETHUSDT"
  ],
  "interval": "1d",
  "startDate": "2023-01-01",
  "endDate": "2024-01-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.