# Top Gainers Stock Screen for US Market

**Use case:** 

Identify the top gaining stocks in the US with market caps over $1 Billion. Get fast, reliable data in JSON, CSV, or Excel formats.

## Input

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

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