# Screen Brazilian B3 Stocks by Volume

**Use case:** 

Most actively traded stocks on the Brazilian B3 exchange, priced in BRL with daily change.

## Input

```json
{
  "market": "brazil",
  "columns": [
    "name",
    "close",
    "volume",
    "change",
    "market_cap_basic",
    "sector"
  ],
  "tickers": [],
  "sort": {
    "sortBy": "volume",
    "sortOrder": "desc"
  },
  "range": [
    0,
    5
  ],
  "maxItems": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "changePct": {
    "label": "Change %",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "string"
  },
  "market": {
    "label": "Market",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [TradingView Stock Screener — Multi-Market Scanner](https://apify.com/leorochasantos/tradingview-screener) with a specific input configuration. Visit the [Actor detail page](https://apify.com/leorochasantos/tradingview-screener) to learn more, explore other use cases, and run it yourself.