Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tvscreener

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tvscreener

TradingView Screener API

  • 0.0.12
  • PyPI
  • Socket score

Maintainers
1
logo tradingview screener api library

TradingView Screener API: simple Python library to retrieve data from TradingView Screener

PyPI version Downloads Coverage tradingview-screener.png

Get the results as a Pandas Dataframe

dataframe.png

Main Features

  • Query Stock, Forex and Crypto Screener
  • All the fields available: ~300 fields - even hidden ones)
  • Any time interval (no need to be a registered user - 1D, 5m, 1h, etc.)
  • Filters by any fields, symbols, markets, countries, etc.
  • Get the results as a Pandas Dataframe

Installation

The source code is currently hosted on GitHub at: https://github.com/houseofai/tvscreener

Binary installers for the latest released version are available at the Python Package Index (PyPI)

# or PyPI
pip install tvscreener

From pip + GitHub:

$ pip install git+https://github.com/houseofai/tradingview-screener@main

Usage

For Stocks screener:

import tvscreener as tvs

ss = tvs.StockScreener()
df = ss.get()

# ... returns a dataframe with 150 rows by default

For Forex screener:

import tvscreener as tvs

fs = tvs.ForexScreener()
df = fs.get()

For Crypto screener:

import tvscreener as tvs

cs = tvs.CryptoScreener()
df = cs.get()

Parameters

For Options and Filters, please check the notebooks for examples.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc