# TradingView Stock Screener Scraper

**Use case:** 

Scrape TradingView stock screener results with ticker, company, price, change, volume, market cap, sector, industry, and exchange.

## Input

```json
{
  "market": "america",
  "columns": [
    "name",
    "description",
    "close",
    "change",
    "volume",
    "market_cap_basic",
    "sector",
    "industry",
    "exchange"
  ],
  "sortBy": "market_cap_basic",
  "sortOrder": "desc",
  "filters": [],
  "maxResults": 50
}
```

## 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.