# Scrape the TradingView crypto screener

**Use case:** 

Export the TradingView crypto screener: ticker, price, change %, market cap, RSI & technical rating for every coin. No login, clean JSON.

## Input

```json
{
  "mode": "screener",
  "market": "crypto",
  "signal": "",
  "sortOrder": "desc",
  "symbols": [
    "NASDAQ:AAPL",
    "NASDAQ:NVDA"
  ],
  "intervals": [
    "15m",
    "1h",
    "4h",
    "1D",
    "1W"
  ],
  "ideaDirection": "",
  "maxIdeasPerSource": 25,
  "includeStoryContent": false,
  "maxResults": 100,
  "monitorMode": false,
  "monitorStoreName": "tradingview-monitor",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "exchange": {
    "label": "Exchange",
    "format": "text"
  },
  "sector": {
    "label": "Sector",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E",
    "format": "number"
  },
  "dividendYieldPercent": {
    "label": "Div %",
    "format": "number"
  },
  "perfYtdPercent": {
    "label": "Perf YTD %",
    "format": "number"
  },
  "technicalRatingLabel": {
    "label": "Rating",
    "format": "text"
  },
  "rsi14": {
    "label": "RSI",
    "format": "number"
  },
  "url": {
    "label": "TradingView",
    "format": "link"
  }
}
```

## About this Actor

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