All Projects → brian-the-dev → python-tradingview-ta

brian-the-dev / python-tradingview-ta

Licence: MIT license
Unofficial TradingView technical analysis API wrapper.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to python-tradingview-ta

tvdatafeed
A simple TradingView historical Data Downloader
Stars: ✭ 189 (-74.83%)
Mutual labels:  tradingview, tradingview-ta
Trading Server
A multi-asset, multi-strategy, event-driven trade execution and management platform for running many algorithms/bots at many venues simultaneously with unified risk management and reporting. Uses MongoDB for storage and Telegram for user notifications/trade consent.
Stars: ✭ 191 (-74.57%)
Mutual labels:  technical-analysis
Trading Signals
Technical indicators to run technical analysis with JavaScript / TypeScript. 📈
Stars: ✭ 118 (-84.29%)
Mutual labels:  technical-analysis
Candlestick
Candlestick patterns detection.
Stars: ✭ 145 (-80.69%)
Mutual labels:  technical-analysis
Simplestockanalysispython
Stock Analysis Tutorial in Python
Stars: ✭ 126 (-83.22%)
Mutual labels:  technical-analysis
Stock.indicators
Stock indicator technical analysis library package for .NET. Send in historical price quotes and get back desired technical indicators. Nothing more. It can be used in any market analysis software using standard OHLCV price quotes for equities, commodities, forex, cryptocurrencies, and others. We had private trading algorithms, machine learning, and charting systems in mind when originally creating this community library. Current indicators include: Accumulation/Distribution Line (ADL), Aroon Oscillator, Arnaud Legoux Moving Average (ALMA), Average Directional Index (ADX), Average True Range (ATR), Awesome Oscillator (AO), Balance of Power (BOP), Beta Coefficient, Bollinger Bands®, Chaikin Money Flow (CMF), Chaikin Oscillator, Chandelier Exit, Choppiness Index (CHOP), Commodity Channel Index (CCI), ConnorsRSI, Correlation Coefficient, Donchian Channels, Double Exponential Moving Average (DEMA), Elder-ray Index, Exponential Moving Average (EMA), Force Index, Fractal Chaos Bands (FCB), Gator Oscillator, Heikin-Ashi, Hull Moving Average (HMA), Ichimoku Cloud, Kaufman's Adaptive Moving Average (KAMA), KDJ Index, Keltner Channels, Momentum Oscillator, Money Flow Index (MFI), MESA Adaptive Moving Averages (MAMA), Moving Average Convergence/Divergence (MACD), Moving Average Envelopes, On-balance Volume (OBV), Parabolic SAR (stop and reverse), Percentage Volume Oscillator (PVO), Pivot Points and Rolling Pivot Points, Price Channels, Price (Comparative) Relative Strength (PRS), Price Momentum Oscillator (PMO), Rate of Change (ROC), Relative Strength Index (RSI), R-Squared (Coefficient of Determination), Simple Moving Average (SMA), Slope and Linear Regression, Smoothed Moving Average (SMMA), Standard Deviation, Stoller Average Range Channel (STARC) Bands, Stochastic Oscillator, Stochastic RSI, SuperTrend, Tillson T3 Moving Average, Triple Exponential Moving Average (TEMA), Triple EMA Oscillator (TRIX), True Strength Index (TSI), Ulcer Index, Ultimate Oscillator, Volume Simple Moving Average, Volume Weighted Average Price (VWAP), Vortex Indicator (VI), Weighted Moving Average (WMA), Williams %R, Williams Alligator, Williams Fractal, and Zig Zag.
Stars: ✭ 157 (-79.09%)
Mutual labels:  technical-analysis
Technicalindicators
A javascript technical indicators written in typescript with pattern recognition right in the browser
Stars: ✭ 1,328 (+76.83%)
Mutual labels:  technical-analysis
Ta Rs
Technical analysis library for Rust language
Stars: ✭ 248 (-66.98%)
Mutual labels:  technical-analysis
Crypto trader
Q-Learning Based Cryptocurrency Trader and Portfolio Optimizer for the Poloniex Exchange
Stars: ✭ 184 (-75.5%)
Mutual labels:  technical-analysis
Lstm Crypto Price Prediction
Predicting price trends in cryptomarkets using an lstm-RNN for the use of a trading bot
Stars: ✭ 136 (-81.89%)
Mutual labels:  technical-analysis
Candlestick Patterns
Candlestick patterns detector
Stars: ✭ 132 (-82.42%)
Mutual labels:  technical-analysis
Indicators.jl
Financial market technical analysis & indicators in Julia
Stars: ✭ 130 (-82.69%)
Mutual labels:  technical-analysis
Ta
Technical Analysis Library using Pandas and Numpy
Stars: ✭ 2,649 (+252.73%)
Mutual labels:  technical-analysis
Trendyways
Simple javascript library containing methods for financial technical analysis
Stars: ✭ 121 (-83.89%)
Mutual labels:  technical-analysis
Ttr
Technical analysis and other functions to construct technical trading rules with R
Stars: ✭ 238 (-68.31%)
Mutual labels:  technical-analysis
Zvt
modular quant framework.
Stars: ✭ 1,801 (+139.81%)
Mutual labels:  technical-analysis
Turingtrader
The Open-Source Backtesting Engine/ Market Simulator by Bertram Solutions.
Stars: ✭ 132 (-82.42%)
Mutual labels:  technical-analysis
Zigzag
Python library for identifying the peaks and valleys of a time series.
Stars: ✭ 156 (-79.23%)
Mutual labels:  technical-analysis
pinescript practice
PineScript 是 TradingView 網站看盤多功能圖表專用的程式語言,這邊是程式碼範例的存放處,方便大家複製貼上。我將教學的課程,分享在 youtube 頻道,歡迎搭配使用。
Stars: ✭ 121 (-83.89%)
Mutual labels:  tradingview
Crypto Trading Bot
Automated Bittrex crypto-currency technical analysis and trading tool
Stars: ✭ 251 (-66.58%)
Mutual labels:  technical-analysis

python-tradingview-ta License: MIT Documentation Status PyPI version

An unofficial python API wrapper to retrieve technical analysis from TradingView.

TradingView

Ref: Build your next project with DigitalOcean! Get $200 in credit by using this link.

Note

  • Always update tradingview-ta for new features and bug fixes: pip install -U tradingview_ta
  • Technical analysis for indices (index) is not supported by both TradingView and tradingview-ta, see issue #67 and #84.

Features

Demo

You can try tradingview-ta online without installing Python: https://tradingview.brianthe.dev/.

Requirements

  • Python 3.6 or newer.
  • Requests, included in installation.

Installation

PyPI (stable, recommended):

pip install tradingview_ta

GitHub (latest):

pip install git+https://github.com/brian-the-dev/python-tradingview-ta.git

Example

from tradingview_ta import TA_Handler, Interval, Exchange

tesla = TA_Handler(
    symbol="TSLA",
    screener="america",
    exchange="NASDAQ",
    interval=Interval.INTERVAL_1_DAY,
    # proxies={'http': 'http://example.com:8080'} # Uncomment to enable proxy (replace the URL).
)
print(tesla.get_analysis().summary)
# Example output: {"RECOMMENDATION": "BUY", "BUY": 8, "NEUTRAL": 6, "SELL": 3}

Tip: Use https://tvdb.brianthe.dev/ if you don't know what symbol, screener, and exchange to use.

Documentation

Read The Docs

Issue

If you found a bug or have a question, please open an issue.

Warning

Trading is a risky activity, especially when done using an automated program. Never trade automatically without your supervision using results provided by tradingview-ta. Any monetary losses are not my fault.

Contributing

Pull requests (docs, bug fix, features) are welcomed! Any pull request (documentation, bug fix, features, etc) are welcomed. Please follow the guidelines and the code of conduct.

License

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].