# Ethereum DEX pool OHLCV research workflow

**Use case:** 

Download daily OHLCV candles for an Ethereum DEX pool to feed trading research, backtests, dashboards, or alerts.

## Input

```json
{
  "mode": "ohlcv",
  "network": "eth",
  "searchQuery": "PEPE",
  "tokenAddresses": [],
  "poolAddress": "0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640",
  "ohlcvTimeframe": "day",
  "ohlcvAggregate": 1,
  "ohlcvLimit": 30,
  "maxResults": 20,
  "maxPages": 3
}
```

## Output

```json
{
  "timestamp": {
    "label": "Timestamp",
    "format": "number"
  },
  "datetime": {
    "label": "Datetime",
    "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"
  }
}
```

## About this Actor

This example demonstrates how to use [GeckoTerminal DEX Scraper](https://apify.com/automation-lab/geckoterminal-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/geckoterminal-scraper) to learn more, explore other use cases, and run it yourself.