# Stock Screener Scraper - Gainers, Losers, Most Active

**Use case:** 

Discover stocks without a ticker: scrape Yahoo Finance screeners for day gainers, losers, and most active stocks. No API key, pay per result.

## Input

```json
{
  "symbols": [
    "AAPL",
    "BTC-USD"
  ],
  "dataTypes": [
    "quote"
  ],
  "interval": "1d",
  "range": "1mo",
  "newsCount": 10,
  "screeners": [
    "day_gainers",
    "day_losers",
    "most_actives"
  ],
  "screenerCount": 50
}
```

## Output

```json
{
  "dataType": {
    "label": "Type",
    "format": "text"
  },
  "symbol": {
    "label": "Symbol",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "changePercent": {
    "label": "Change %",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "marketCap": {
    "label": "Market cap",
    "format": "number"
  },
  "peRatio": {
    "label": "P/E",
    "format": "number"
  },
  "recommendation": {
    "label": "Rating",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "close": {
    "label": "Close",
    "format": "number"
  },
  "title": {
    "label": "News",
    "format": "text"
  },
  "publisher": {
    "label": "Publisher",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Yahoo Finance Scraper - Stocks, ETFs, Crypto API](https://apify.com/renzomacar/yahoo-finance-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/renzomacar/yahoo-finance-scraper) to learn more, explore other use cases, and run it yourself.