Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Overview

tradingview-screener is a Python package that allows you to create custom stock screeners using TradingView's official API. This package retrieves data directly from TradingView without the need for web scraping or HTML parsing.

Key Features

  • Access Over 3000 Fields: Retrieve data, including OHLC, indicators, and fundamental metrics.
  • Multiple Markets: Stocks, crypto, forex, CFD, futures, bonds, and more.
  • Customizable Timeframes: Choose timeframes like 1 minute, 5 minutes, 1 hour, or 1 day for each field.
  • Filter and sort the results using a SQL-like syntax, with support for And/Or operators for advanced filtering.

Installation

Install the package via pip:

pip install tradingview-screener

Links

Note that throughout the documentation, "field" and "column" are used interchangeably. Same with "Scanner" and "Screener".

Quickstart

Here’s a simple example to get you started:

from tradingview_screener import Query

(Query()
 .select('name', 'close', 'volume', 'market_cap_basic')
 .get_scanner_data())

Output:

(17580,
          ticker  name   close     volume  market_cap_basic
 0   NASDAQ:NVDA  NVDA  127.25  298220762      3.130350e+12
 1      AMEX:SPY   SPY  558.70   33701795               NaN
 2   NASDAQ:TSLA  TSLA  221.10   73869589      7.063350e+11
 3    NASDAQ:QQQ   QQQ  480.26   29102854               NaN
 4    NASDAQ:AMD   AMD  156.40   76693809      2.531306e+11
 ..          ...   ...     ...        ...               ...
 45   NASDAQ:PDD   PDD  144.22    8653323      2.007628e+11
 46     NYSE:JPM   JPM  214.52    5639973      6.103447e+11
 47     NYSE:JNJ   JNJ  160.16    7274621      3.855442e+11
 48  NASDAQ:SQQQ  SQQQ    7.99  139721164               NaN
 49  NASDAQ:ASTS  ASTS   34.32   32361315      9.245616e+09
 
 [50 rows x 5 columns])

By default, the result is limited to 50 rows. You can adjust this limit, but be mindful of server load and potential bans.

A more advanced query:

from tradingview_screener import Query, col

(Query()
 .select('name', 'close', 'volume', 'relative_volume_10d_calc')
 .where(
     col('market_cap_basic').between(1_000_000, 50_000_000),
     col('relative_volume_10d_calc') > 1.2,
     col('MACD.macd') >= col('MACD.signal')
 )
 .order_by('volume', ascending=False)
 .offset(5)
 .limit(25)
 .get_scanner_data())

Real-Time Data Access

To access real-time data, you need to pass your session cookies, as even free real-time data requires authentication.

Verify Update Mode

You can run this query to get an overview on the update_mode you get for each exchange:

from tradingview_screener import Query

_, df = Query().select('exchange', 'update_mode').limit(1_000_000).get_scanner_data()
df.groupby('exchange')['update_mode'].value_counts()
exchange  update_mode          
AMEX      delayed_streaming_900    3255
NASDAQ    delayed_streaming_900    4294
NYSE      delayed_streaming_900    2863
OTC       delayed_streaming_900    7129

Using rookiepy

rookiepy is a library that loads the cookies from your local browser. So if you are logged in on Chrome (or whatever browser you use), it will use the same session.

  1. Install rookiepy:

    pip install rookiepy
    
  2. Load the cookies:

    import rookiepy
    cookies = rookiepy.to_cookiejar(rookiepy.chrome(['.tradingview.com']))  # replace chrome() with your browser
    
  3. Pass the cookies when querying:

    Query().get_scanner_data(cookies=cookies)
    

Now, if you re-run the update mode check:

_, df = Query().select('exchange', 'update_mode').limit(1_000_000).get_scanner_data(cookies=cookies)
df.groupby('exchange')['update_mode'].value_counts()
exchange  update_mode          
AMEX      streaming                3256
NASDAQ    streaming                4286
NYSE      streaming                2860
OTC       delayed_streaming_900    7175

We now get live-data for all exchanges except OTC (because my subscription dosent include live-data for OTC tickers).

Other Ways For Loading Cookies

Extract Cookies Manually
  1. Go to TradingView

  2. Open the developer tools (Ctrl + Shift + I)

  3. Navigate to the Application tab.

  4. Go to Storage > Cookies > https://www.tradingview.com/

  5. Copy the value of sessionid

  6. Pass it in your query:

    cookies = {'sessionid': '<your-session-id>'}
    Query().get_scanner_data(cookies=cookies)
    
Authenticate via API

While it's possible to authenticate directly via API, TradingView has restrictions on login frequency, which may result in CAPTCHA requests and account flagging (meaning this method won't work again until the cooldown expires and the CAPTCHA is gone).
If you wish to proceed, here’s how:

from http.cookiejar import CookieJar

import requests
from tradingview_screener import Query


def authenticate(username: str, password: str) -> CookieJar:
    session = requests.Session()
    r = session.post(
       'https://www.tradingview.com/accounts/signin/', 
       headers={'User-Agent': 'Mozilla/5.0', 'Referer': 'https://www.tradingview.com'}, 
       data={'username': username, 'password': password, 'remember': 'on'}, 
       timeout=60,
    )
    r.raise_for_status()
    if r.json().get('error'):
        raise Exception(f'Failed to authenticate: \n{r.json()}')
    return session.cookies


cookies = authenticate('<your-username-or-email>', '<your-password>')
Query().get_scanner_data(cookies=cookies)

Comparison to Similar Packages

Unlike other Python libraries that have specific features like extracting the sentiment, or what not. This package is but a (low-level) wrapper around TradingView's /screener API endpoint.

It merely documents the endpoint, by listing all the functions and operations available, the different fields you can use, the markets, instruments (even some that you wont find on TradingView's website), and so on.

This library is also a wrapper that makes it easier to generate those verbose JSON payloads.

Robustness & Longevity

This package is designed to be future-proof. There are no hard-coded values in the package, all fields/columns and markets are documented on the website, which is updated daily via a GitHub Actions script.

How It Works

When using methods like select() or where(), the Query object constructs a dictionary representing the API request. Here’s an example of the dictionary generated:

{
    'markets': ['america'],
    'symbols': {'query': {'types': []}, 'tickers': []},
    'options': {'lang': 'en'},
    'columns': ['name', 'close', 'volume', 'relative_volume_10d_calc'],
    'sort': {'sortBy': 'volume', 'sortOrder': 'desc'},
    'range': [5, 25],
    'filter': [
        {'left': 'market_cap_basic', 'operation': 'in_range', 'right': [1000000, 50000000]},
        {'left': 'relative_volume_10d_calc', 'operation': 'greater', 'right': 1.2},
        {'left': 'MACD.macd', 'operation': 'egreater', 'right': 'MACD.signal'},
    ],
}

The get_scanner_data() method sends this dictionary as a JSON payload to the TradingView API, allowing you to query data using SQL-like syntax without knowing the specifics of the API.

Feedback and Improvement

If this package has bought value to your projects, please consider starring it.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tradingview_screener-3.0.0rc1.tar.gz (19.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tradingview_screener-3.0.0rc1-py3-none-any.whl (18.6 kB view details)

Uploaded Python 3

File details

Details for the file tradingview_screener-3.0.0rc1.tar.gz.

File metadata

  • Download URL: tradingview_screener-3.0.0rc1.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.11.4 Linux/6.8.0-40-generic

File hashes

Hashes for tradingview_screener-3.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 6f8bc6a39222342108fcb799bf1de736595e40c8f0754958b436950d73a0511d
MD5 943edb7418bbf834d559baca5db956d4
BLAKE2b-256 d2eacf7dcc3dcaa8ed0d50f95a348c8a74918060a8e0ad57988012876ea79c96

See more details on using hashes here.

File details

Details for the file tradingview_screener-3.0.0rc1-py3-none-any.whl.

File metadata

File hashes

Hashes for tradingview_screener-3.0.0rc1-py3-none-any.whl
Algorithm Hash digest
SHA256 3208acd963093805dcd793122a3299230afe7e96f69748d46fcb7dd16f5d6f56
MD5 67baca3a1d2f7619d7c7435fdf998cee
BLAKE2b-256 dff27a7218ed1fe6e6d2477cae3695a9b5e8d6e4e7a4ae2537f8dc7f05f3ebb0

See more details on using hashes here.

Release history Release notifications | RSS feed

3.2.1

2 files

3.2.0

2 files

3.1.0

2 files

3.0.0

2 files

This release

3.0.0rc1 This release

2 files

2.5.0

2 files

2.4.1

2 files

2.4.0

2 files

2.3.1

2 files

2.3.0

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.0.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page