TradingView Multi-Market Scraper avatar

TradingView Multi-Market Scraper

Pricing

from $10.00 / 1,000 data point scrapeds

Go to Apify Store
TradingView Multi-Market Scraper

TradingView Multi-Market Scraper

Screen stocks, forex, crypto, and commodities across 11+ global markets. Get 40+ technical indicators including RSI, MACD, EMAs, Bollinger Bands. Buy/Sell signals. No API key, no browser needed. The most comprehensive TradingView scraper on Apify.

Pricing

from $10.00 / 1,000 data point scrapeds

Rating

0.0

(0)

Developer

Sami

Sami

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

The most comprehensive TradingView scraper on Apify. Screen 11+ global markets — US, Europe, UK, forex, crypto, commodities — with 40+ technical indicators. No API key, no browser needed.

How to scrape TradingView data in 3 easy steps

  1. Go to the TradingView Multi-Market Scraper page on Apify and click "Try for free"
  2. Configure your input — choose a mode (screener, search, market_overview, or technical_analysis), select a market, and set your filters
  3. Click "Run", wait for results, and download your data in JSON, CSV, or Excel

No coding required. Works with Apify's free plan.

Why this scraper?

Every other TradingView scraper only covers US stocks with daily data. This one covers 11 markets with full technical analysis:

MarketCodeExamples
US StocksamericaAAPL, TSLA, MSFT
European StockseuropeAll EU exchanges
UK StocksukLSE-listed stocks
German StocksgermanyXETR-listed stocks
Spanish StocksspainBME-listed stocks
Japanese StocksjapanTSE-listed stocks
Australian StocksaustraliaASX-listed stocks
Indian StocksindiaNSE/BSE-listed stocks
ForexforexEUR/USD, GBP/JPY
CryptocryptoBTC, ETH, SOL
Commodities/CFDscfdGold, Oil, Silver

TradingView API alternative

TradingView does not offer a free public API for market data. This scraper is the best TradingView API alternative in 2026 — it provides structured access to screener results, technical indicators, and market overviews across 11+ global markets. Get the same data you see on TradingView's screener as clean JSON, ready for algorithmic trading, portfolio dashboards, or research pipelines.

4 Operation Modes

1. Screener (mode: "screener")

Scan any market with optional filters. Returns price data, fundamentals, and technical indicators for all matching assets.

2. Search (mode: "search")

Find symbols by name or ticker. Input a query like "Apple", "Bitcoin", or "EUR/USD" and get matching symbols with their exchange and type.

3. Market Overview (mode: "market_overview")

Get top movers in any market, sorted by volume, price change, or market cap.

4. Technical Analysis (mode: "technical_analysis")

Get detailed technical indicators for specific symbols. Input symbols like NASDAQ:AAPL, BINANCE:BTCUSDT, FX:EURUSD.

Data Points Available

Price & Volume: close, open, high, low, volume, average volume (10d/30d)

Fundamentals: market cap, P/E ratio, EPS, sector, industry, currency

Performance: weekly, monthly, 3-month, 6-month, YTD, yearly returns

Technical Indicators:

  • RSI (current + previous)
  • Stochastic RSI
  • MACD (signal + histogram)
  • Bollinger Bands (upper + lower)
  • EMA 20 / 50 / 200
  • SMA 20 / 50 / 200
  • Daily / Weekly / Monthly volatility
  • Overall recommendation (Strong Buy → Strong Sell)
  • Moving Average recommendation
  • Oscillator recommendation

Example Output

{
"symbol": "NASDAQ:AAPL",
"name": "AAPL",
"description": "Apple Inc.",
"exchange": "NASDAQ",
"type": "stock",
"currency": "USD",
"close": 178.52,
"change": 1.25,
"changeAbs": 2.20,
"volume": 65432100,
"marketCap": 2780000000000,
"pe": 28.5,
"eps": 6.26,
"sector": "Technology",
"industry": "Consumer Electronics",
"high": 179.80,
"low": 176.30,
"open": 176.90,
"perfWeek": 2.1,
"perfMonth": -1.5,
"perf3Month": 8.3,
"perfYTD": 12.7,
"rsi": 58.3,
"macd": 1.45,
"ema20": 175.20,
"ema50": 172.80,
"sma200": 168.50,
"recommendation": "Buy",
"recommendMA": "Strong Buy",
"scrapedAt": "2026-04-09T15:00:00Z"
}

Input Examples

Screen US stocks by volume

{
"mode": "screener",
"market": "america",
"sortBy": "volume",
"maxResults": 100,
"includeIndicators": true
}

Search for a symbol

{
"mode": "search",
"searchQuery": "Tesla"
}

Top crypto movers

{
"mode": "market_overview",
"market": "crypto",
"sortBy": "change",
"sortOrder": "desc",
"maxResults": 50
}

Technical analysis for specific assets

{
"mode": "technical_analysis",
"symbols": ["NASDAQ:AAPL", "NASDAQ:MSFT", "BINANCE:BTCUSDT", "FX:EURUSD"],
"includeIndicators": true
}

Use Cases

  • Algorithmic trading: Screen for stocks matching your strategy criteria across global markets
  • Portfolio monitoring: Track technical indicators across all your holdings in one call
  • Market research: Compare performance and technicals across US, EU, crypto, and forex
  • Crypto analysis: Screen top cryptocurrencies with RSI, MACD, and moving averages
  • Forex trading: Monitor currency pair technicals, trends, and recommendations
  • Commodity tracking: Follow gold, oil, silver prices with technical overlays

Use with Python, JavaScript, or no code

You can call this scraper programmatically using the Apify API client.

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("zhorex/tradingview-scraper").call(run_input={
"mode": "screener",
"market": "america",
"sortBy": "volume",
"maxResults": 100,
"includeIndicators": True
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('zhorex/tradingview-scraper').call({
mode: 'screener',
market: 'america',
sortBy: 'volume',
maxResults: 100,
includeIndicators: true,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Or skip coding entirely and use the web interface with no-code tools like Zapier, Make, or n8n.

Pricing

Pay-per-event: $10 per 1,000 data points.

CompetitorCost
Bloomberg Terminal$24,000/year
TradingView Pro$15–60/month
This Actor$10/1,000 results

Technical Details

  • Pure HTTP requests — no browser, no Playwright
  • 256MB RAM footprint
  • Automatic retry with exponential backoff (3s → 10s → 30s)
  • Rate-limited to respect TradingView servers
  • Null-safe: missing fields return null, never crash

FAQ

Does this scraper need a TradingView account? No. The scraper uses TradingView's public screener endpoints. No login, no API key, no subscription required.

How much does it cost to scrape TradingView? $10 per 1,000 data points. Apify's free plan includes $5/month in credits, enough for 500 results. Compare that to a Bloomberg Terminal ($24,000/year) or TradingView Pro ($15-60/month).

Can I use this TradingView scraper in Python? Yes. Install the Apify Python client (pip install apify-client) and call the Actor with a few lines of code. See the Python example above.

Is scraping TradingView legal? This scraper accesses publicly available data through TradingView's public endpoints. It does not bypass authentication or violate access controls. Always review TradingView's Terms of Service and applicable laws in your jurisdiction.

What is the best TradingView scraper in 2026? This Actor (zhorex/tradingview-scraper) is the most comprehensive TradingView scraper available, covering 11+ global markets with 40+ technical indicators across 4 operation modes.

Can I get real-time stock prices? The scraper returns the latest data available on TradingView's screener at the time of the run. It is not a real-time streaming feed, but you can schedule runs at regular intervals for near-real-time monitoring.

Integrations & data export

This Actor integrates with the full Apify ecosystem:

  • Google Sheets — Automatically push market data to a spreadsheet for tracking
  • Zapier / Make / n8n — Connect TradingView data to 5,000+ apps with no-code automation
  • REST API — Start runs, fetch results, and manage datasets programmatically
  • Webhooks — Get notified when a scrape finishes and trigger downstream workflows
  • Amazon S3 / Google Cloud Storage — Export datasets directly to cloud storage
  • Slack / Email — Receive alerts with market data after each run

More Scrapers by Zhorex

Finance & Market Data

Social & Entertainment

Business & Reviews

SEO & Data Tools


Found this Actor useful? Please leave a star rating — it helps other users discover this tool.