# TradingView Sector Monitor

**Use case:** 

Monitor TradingView screeners for sector-filtered stocks with prices, change, volume, market cap, industry, exchange, and country.

## Input

```json
{
  "market": "america",
  "columns": [
    "name",
    "description",
    "close",
    "change",
    "volume",
    "market_cap_basic",
    "sector",
    "industry",
    "exchange",
    "country"
  ],
  "sortBy": "volume",
  "sortOrder": "desc",
  "filters": [
    {
      "left": "sector",
      "operation": "equal",
      "right": "Technology Services"
    }
  ],
  "maxResults": 100
}
```

## Output

```json
{
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "marketCap": {
    "label": "Market Cap",
    "format": "number"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  }
}
```

## About this Actor

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