Skip to content
This repository has been archived by the owner on Jun 13, 2024. It is now read-only.

Releases: AnalyzerREST/python-tradingview-ta

Version 3.2.1

01 Feb 04:19
Compare
Choose a tag to compare

What's new:

  • Removed EMA5 and SMA5 from analysis.moving_averages as TradingView does not show them anymore. You can still access EMA5 and SMA5 indicators through analysis.indicators.

Fix:

  • Switched buy/sell on momentum technical analysis

Tested On:

  • NASDAQ:TSLA on 1d, 1W, and 1M
  • BINANCE:BTCUSDT on 1m, 1d, and 1M

Version 3.2.0

17 Jan 12:52
Compare
Choose a tag to compare

Simpler TA_Handler instantiating! Now you can write simpler and shorter code with arguments:

from tradingview_ta import TA_Handler, Interval, Exchange

tesla = TA_Handler(
    symbol="TSLA",
    screener="america",
    exchange="NASDAQ",
    interval=Interval.INTERVAL_1_DAY
)
print(tesla.get_analysis().summary)
# Example output: {"RECOMMENDATION": "BUY", "BUY": 8, "NEUTRAL": 6, "SELL": 3}

Don't worry though, your older code (>=3.0.0) might still work with this version. Consider rewriting it if you have the time!

Version 3.1.6

12 Jan 12:01
Compare
Choose a tag to compare

Edit exception and warning. Remove "Error: " and "Warning: ". Default interval to "1d" if the interval is invalid.

Version 3.1.5

09 Jan 17:08
Compare
Choose a tag to compare
  • Move indicators to Analysis class
  • Simplify code using format

New:
Try the demo at https://tradingview.deathlyf.com/.

Version 3.1.4

08 Jan 15:02
Compare
Choose a tag to compare

Fix minor bug (#19).

Version 3.1.3

04 Jan 16:48
Compare
Choose a tag to compare

Added user agent.
__version__ now accessible.

Version 3.1.1

12 Oct 02:13
Compare
Choose a tag to compare

Bugfix. #7

Version 3.1.0

01 Oct 00:21
a5c19fb
Compare
Choose a tag to compare

Added functions to set values.

(BUG FOUND, USE 3.1.1)

Version 3.0.0

29 Jul 13:57
f79ddc4
Compare
Choose a tag to compare

Version 2.5.0

13 Jun 23:18
Compare
Choose a tag to compare

All updates since the last release.