TradingView Screener Scraper โ Stocks, Crypto & Forex
Pricing
from $0.0005 / symbol scraped
TradingView Screener Scraper โ Stocks, Crypto & Forex
Run the TradingView screener in bulk and export matching symbols with fundamentals and technicals. Covers stocks, crypto, forex, futures and 40+ country markets. Pick your columns, add filters, sort, and get one clean row per symbol as JSON, CSV or Excel.
Pricing
from $0.0005 / symbol scraped
Rating
0.0
(0)
Developer
hiper soft
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Run the TradingView screener in bulk and export every matching symbol into clean JSON, CSV or Excel. Screen US stocks, cryptocurrencies, forex pairs, futures and 40+ country markets โ choose exactly which fundamentals and technicals you want, filter, sort, and get one tidy row per symbol.
Perfect for quant research, market dashboards, stock/crypto screening, portfolio tools and automated watchlists.
What you get
- ๐ Every market โ US stocks (
america),crypto,forex,futures, plus 40+ country exchanges (UK, Germany, India, Japan, Singapore and more) - ๐งฎ Pick your columns โ price, change, volume, market cap, P/E, EPS, dividend yield, sector, RSI, moving averages, beta and hundreds more
- ๐ฏ Powerful filters โ screen by any field: market cap over $1B, price above $10, RSI below 30, and so on
- โ๏ธ Sort & cap โ order by market cap, volume or any field, and limit how many symbols you pull
- โก Fast & clean โ flat records with a
symbolandexchangeon every row, ready for spreadsheets or code
Example input
Top 50 US stocks by market cap with default columns:
{ "market": "america", "maxItems": 50 }
Large-cap US stocks trading above $10, with custom columns:
{"market": "america","columns": ["name", "close", "change", "volume", "market_cap_basic", "price_earnings_ttm", "dividend_yield_recent", "sector"],"filters": [{ "left": "market_cap_basic", "operation": "greater", "right": 1000000000 },{ "left": "close", "operation": "greater", "right": 10 }],"sortBy": "market_cap_basic","sortOrder": "desc","maxItems": 500}
Top cryptocurrencies by volume:
{ "market": "crypto", "columns": ["name", "close", "change", "volume"], "sortBy": "volume", "maxItems": 100 }
Output
Each row flattens the columns you requested and always includes symbol and exchange:
{"symbol": "AAPL","exchange": "NASDAQ","name": "AAPL","close": 313.45,"change": 1.14,"volume": 34024449,"market_cap_basic": 4574545801198,"price_earnings_ttm": 35.93,"sector": "Electronic Technology"}
Output fields
| Field | Type | Description |
|---|---|---|
symbol | string | Ticker symbol, e.g. AAPL, BTCUSD, EURUSD. |
exchange | string | Exchange or data source, e.g. NASDAQ, BINANCE. |
| your columns | mixed | One field per entry in columns (e.g. close, change, volume, market_cap_basic, sector), in the order you requested. |
Input fields
| Field | Description |
|---|---|
market | Which screener to run: america, crypto, forex, futures, or a country slug (uk, germany, india, singapore, โฆ). Default america. |
columns | Fields to return per symbol (empty = a sensible default set). |
filters | Optional conditions, each { "left": field, "operation": op, "right": value }. |
sortBy | Field to sort by (default market_cap_basic). |
sortOrder | desc or asc. |
maxItems | Maximum symbols to return. |
FAQ
Which markets are supported?
US stocks (america), crypto, forex, futures, bond, cfd, plus 40+ country markets including the UK, Germany, France, India, Japan, Hong Kong, Singapore, Australia, Canada and Brazil.
What columns can I request?
Hundreds โ price and OHLC fields, market_cap_basic, price_earnings_ttm, earnings_per_share_basic_ttm, dividend_yield_recent, sector, industry, technicals like RSI, SMA50, SMA200, ATR, beta_1_year, and more. Add any field name to columns and it becomes a column in the output.
How do filters work?
Each filter is { "left": <field>, "operation": <op>, "right": <value> }. Operations include greater, less, egreater (โฅ), eless (โค), equal, nequal, in_range, crosses, above and below. Combine as many as you like.
What's the output format? Structured JSON โ one clean record per symbol. Export as JSON, CSV, Excel or via the API.
Can I use this in n8n? Yes. Apify has an official n8n community node โ run this Actor from an n8n workflow and pipe the returned symbols straight into your automation, database or spreadsheet. It also works with Make, Zapier and many more.
Can I integrate this with other tools? The TradingView Screener Scraper connects with almost any cloud service or web app via integrations on the Apify platform: Make, Zapier, Slack, Google Drive and more, plus the Apify API, JavaScript/Python clients, webhooks and MCP.
Notes
Market data is ยฉ TradingView and the respective exchanges, and is provided for informational purposes โ respect their terms and any redistribution restrictions. Original clean-room implementation.