# TradingView Screener — Stocks, Crypto & Forex (`ponderable_hydrometer/tradingview-screener`) Actor

Screen stocks, crypto & forex from TradingView — price, % change, volume, market cap, P/E, sector and any column. Sort and filter. No API key. For traders & apps.

- **URL**: https://apify.com/ponderable\_hydrometer/tradingview-screener.md
- **Developed by:** [Ponderable Hydrometer](https://apify.com/ponderable_hydrometer) (community)
- **Categories:** Developer tools, Automation, SEO tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## TradingView Screener — Stocks, Crypto & Forex

**Screen entire global markets from TradingView's public scanner — price, % change, volume, market
cap, P/E, sector and any TradingView column — sorted and filtered exactly how you want.** Covers
19k+ stocks and 58k+ crypto pairs across `america`, `crypto`, `forex`, `uk`, `germany`, `india` and
more. No API key.

Perfect for traders, quant researchers, watchlist builders, market dashboards and finance apps.

### What you get

Each row is one instrument, keyed by the columns you request. Every row always includes:

- `ticker` (e.g. `NASDAQ:AAPL`), split into `exchange` and `symbol`
- plus one field per requested column

Default stock columns: `name`, `description`, `close`, `change`, `change_abs`, `volume`,
`market_cap_basic`, `price_earnings_ttm`, `sector`, `exchange`. Set your own `columns` for crypto
(`base_currency`, `market_cap_calc`, …) or any other TradingView field.

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `market` | string | `america` | TradingView market: `america`, `crypto`, `forex`, `uk`, `germany`, `india`, … |
| `columns` | array | (stock default) | TradingView column fields to return |
| `sortBy` | string | `market_cap_basic` | Column to sort by |
| `sortOrder` | enum | `desc` | `desc` or `asc` |
| `filters` | array | — | TradingView filter clauses `{left, operation, right}` |
| `maxResults` | integer | `100` | Cap on rows returned |

#### Example input

```json
{"market":"america","sortBy":"market_cap_basic","sortOrder":"desc","maxResults":100}
````

Biggest crypto by market cap:

```json
{"market":"crypto","columns":["base_currency","close","change","volume","market_cap_calc"],"sortBy":"market_cap_calc","sortOrder":"desc","maxResults":50}
```

Large-cap daily gainers (with a filter):

```json
{"market":"america","sortBy":"change","sortOrder":"desc","filters":[{"left":"market_cap_basic","operation":"greater","right":50000000000}],"maxResults":25}
```

### Output (one row, default stock columns)

Fields below are the real normalizer output — `ticker`/`exchange`/`symbol` plus one key per column:

```json
{
  "ticker": "NASDAQ:AAPL",
  "exchange": "NASDAQ",
  "symbol": "AAPL",
  "name": "AAPL",
  "description": "Apple Inc.",
  "close": 214.29,
  "change": 0.83,
  "change_abs": 1.77,
  "volume": 41250000,
  "market_cap_basic": 3280000000000,
  "price_earnings_ttm": 33.4,
  "sector": "Electronic Technology"
}
```

The exact keys returned depend on the `columns` you request.

### Why this actor

- **Full screener, not a single symbol** — scan whole markets, page through thousands of rows.
- **Any column, any market** — request the exact fields you need; advanced filter grammar supported.
- **Keyless & reliable** — TradingView's public scanner API with retry/backoff.

### Pricing

Pay per result — **$2.00 per 1,000 results** (one result = one ticker row). No subscription or platform fees.

### Related actors

- **Yahoo Finance Historical Prices** — OHLCV time-series to backtest what the screener surfaces.
- **CoinGecko Scraper** — crypto market data & history.
- **SEC EDGAR Scraper** — US filings to pair with market data.

### Notes & limits

- Prices and metrics are live-ish market data and change constantly; treat each run as a snapshot.
- Independent tool built on TradingView's public scanner endpoint; not affiliated with or endorsed
  by TradingView. You are responsible for compliant use of the output.

# Actor input Schema

## `market` (type: `string`):

TradingView market to screen. Examples: "america", "crypto", "forex", "uk", "germany", "india", "canada", "australia". For "crypto"/"forex" set custom Columns (e.g. base\_currency, market\_cap\_calc).

## `columns` (type: `array`):

TradingView column fields to return. Leave empty for a sensible stock default (name, close, change, volume, market\_cap\_basic, P/E, sector). Crypto example: base\_currency, close, change, volume, market\_cap\_calc.

## `sortBy` (type: `string`):

Column to sort by, e.g. "market\_cap\_basic", "volume", "change".

## `sortOrder` (type: `string`):

"desc" or "asc".

## `filters` (type: `array`):

Optional TradingView filter clauses, each { "left": field, "operation": op, "right": value }. Example: \[{"left":"market\_cap\_basic","operation":"greater","right":1000000000}].

## `maxResults` (type: `integer`):

Cap on number of rows returned.

## Actor input object example

```json
{
  "market": "america",
  "sortBy": "market_cap_basic",
  "sortOrder": "desc",
  "maxResults": 100
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "market": "america",
    "sortBy": "market_cap_basic"
};

// Run the Actor and wait for it to finish
const run = await client.actor("ponderable_hydrometer/tradingview-screener").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "market": "america",
    "sortBy": "market_cap_basic",
}

# Run the Actor and wait for it to finish
run = client.actor("ponderable_hydrometer/tradingview-screener").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "market": "america",
  "sortBy": "market_cap_basic"
}' |
apify call ponderable_hydrometer/tradingview-screener --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=ponderable_hydrometer/tradingview-screener",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "TradingView Screener — Stocks, Crypto & Forex",
        "description": "Screen stocks, crypto & forex from TradingView — price, % change, volume, market cap, P/E, sector and any column. Sort and filter. No API key. For traders & apps.",
        "version": "0.1",
        "x-build-id": "qrpLNKoWW14gqdPY2"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/ponderable_hydrometer~tradingview-screener/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-ponderable_hydrometer-tradingview-screener",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/ponderable_hydrometer~tradingview-screener/runs": {
            "post": {
                "operationId": "runs-sync-ponderable_hydrometer-tradingview-screener",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/ponderable_hydrometer~tradingview-screener/run-sync": {
            "post": {
                "operationId": "run-sync-ponderable_hydrometer-tradingview-screener",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "market": {
                        "title": "Market",
                        "type": "string",
                        "description": "TradingView market to screen. Examples: \"america\", \"crypto\", \"forex\", \"uk\", \"germany\", \"india\", \"canada\", \"australia\". For \"crypto\"/\"forex\" set custom Columns (e.g. base_currency, market_cap_calc).",
                        "default": "america"
                    },
                    "columns": {
                        "title": "Columns",
                        "type": "array",
                        "description": "TradingView column fields to return. Leave empty for a sensible stock default (name, close, change, volume, market_cap_basic, P/E, sector). Crypto example: base_currency, close, change, volume, market_cap_calc.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "type": "string",
                        "description": "Column to sort by, e.g. \"market_cap_basic\", \"volume\", \"change\".",
                        "default": "market_cap_basic"
                    },
                    "sortOrder": {
                        "title": "Sort order",
                        "enum": [
                            "desc",
                            "asc"
                        ],
                        "type": "string",
                        "description": "\"desc\" or \"asc\".",
                        "default": "desc"
                    },
                    "filters": {
                        "title": "Filters (advanced)",
                        "type": "array",
                        "description": "Optional TradingView filter clauses, each { \"left\": field, \"operation\": op, \"right\": value }. Example: [{\"left\":\"market_cap_basic\",\"operation\":\"greater\",\"right\":1000000000}]."
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Cap on number of rows returned.",
                        "default": 100
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
