# Technical Analysis Screener for Apple, Nvidia, Google

**Use case:** 

Screen and export technical data for AAPL, NVDA, GOOGL, and KO. Get insights on market cap, volume, RSI, and more from US markets.

## Input

```json
{
  "markets": [
    "america"
  ],
  "preset": "full_technicals",
  "filters": [
    {
      "left": "market_cap_basic",
      "operation": "egreater",
      "right": 1000000000
    }
  ],
  "symbols": [
    "NASDAQ:AAPL",
    "NASDAQ:NVDA",
    "NASDAQ:GOOGL",
    "NYSE:KO"
  ],
  "sortOrder": "desc",
  "maxResults": 10,
  "decimals": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "market": {
    "label": "Market",
    "format": "string"
  },
  "symbol": {
    "label": "Symbol",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "change": {
    "label": "Change %",
    "format": "number"
  },
  "volume": {
    "label": "Volume",
    "format": "number"
  },
  "market_cap_basic": {
    "label": "Market cap",
    "format": "number"
  }
}
```

## About this Actor

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