VOOZH about

URL: https://apify.com/zhorex/tradingview-scraper

โ‡ฑ TradingView Scraper โ€” Stocks, Forex, Crypto & Indicators ยท Apify


Pricing

from $10.00 / 1,000 data point scrapeds

Go to Apify Store

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

1

Bookmarked

47

Total users

10

Monthly active users

2 months 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 =newApifyClient({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.

You might also like

TradingView Stock Screener Scraper

automation-lab/tradingview-scraper

Screen stocks, crypto, and forex using TradingView's Scanner API. Filter by sector, market cap, exchange. Returns price, change%, volume, market cap. No API key needed. 14 markets supported.

๐Ÿ‘ User avatar

Stas Persiianenko

19

TradingView Screener โ€” Stock Signals & Market Scanner

viralanalyzer/tradingview-screener

Scan stocks across 67 markets with the TradingView screener. Get technical indicators (RSI, MACD, Bollinger), moving averages, analyst recommendations, fundamentals, and performance metrics. Pure HTTP, no login. For traders, quant research, and finance dashboards.

139

5.0

TradingView Stock / Crypto / CFD Scraper

mscraper/tradingview-stock-scraper

Extract information such as stock prices, trends, and news from the charting platform TradingView. Export the accumulated data to HTML, JSON, CSV, Excel, XML, or RSS and use it for further research.

ForexFactory Economic Calendar Feed (No Login)

scrapemint/forexfactory-economic-calendar

Pull the public ForexFactory economic calendar by date range. Returns event date, time, currency, impact rating (high/med/low), title, actual, forecast, previous, revised values, and source. JSON. No login. Pay per event.

Google Search Result Scrapper

getdataforu/google-search-result-scrapper-cheaper

Scrape Google Search Engine Results Pages (SERPs). Select the country or language and extract organic and paid results, AI Mode, AI overviews, ads, queries, People Also Ask, prices, reviews, like a Google SERP API. Export data, run the scraper via API, schedule runs, or integrate with other tools.

29

5.0

Google Search Scraper

epctex/google-search-scraper

Boost SEO with our tool! Explore organic & paid results, People Also Ask, and Related Queries. Select countries, languages, and precise locations for tailored insights.

Google Search Results Scraper

datascoutapi/google-search-results-scraper

๐Ÿš€ Google Search Engine Scraper API โ€“ Extract real-time Google search results easily. Get organic results, paid ads, People Also Ask, Related Queries, reviews, and prices. Supports 25+ languages & 21+ countries. Export structured results in JSON, Excel, or CSV for SEO & market research.

Google Search Scraper

scrapeai/google-search-scraper

Scrape Google Search results with deep extraction. Collect organic results (20+ fields), featured snippets, People Also Ask, Knowledge Panel, Top Stories, videos, image packs, and related searches. Supports localized Google domains, 200+ countries/languages, and time-based filters.

Tradingview Chart Analyzer with AI

kutaui/tradingview-chart-analyzer

This Actor accepts TradingView chart images (as base64-encoded strings or URLs) and uses OpenAI's GPT models to perform advanced technical analysis. It provides simple, beginner-friendly insights about market trends and potential price movements, along with appropriate disclaimers.