This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
Releases: AnalyzerREST/python-tradingview-ta
Releases · AnalyzerREST/python-tradingview-ta
Version 3.2.1
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 throughanalysis.indicators
.
Fix:
- Switched buy/sell on momentum technical analysis
Tested On:
NASDAQ:TSLA
on 1d, 1W, and 1MBINANCE:BTCUSDT
on 1m, 1d, and 1M
Version 3.2.0
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
Edit exception and warning. Remove "Error: "
and "Warning: "
. Default interval to "1d"
if the interval is invalid.
Version 3.1.5
- Move indicators to Analysis class
- Simplify code using format
New:
Try the demo at https://tradingview.deathlyf.com/.
Version 3.1.4
Fix minor bug (#19).
Version 3.1.3
Added user agent.
__version__
now accessible.
Version 3.1.1
Bugfix. #7
Version 3.1.0
Added functions to set values.
(BUG FOUND, USE 3.1.1)
Version 3.0.0
- Faster
- Replace selenium with requests.
- Indicators
- Docs (Read The Docs)
Version 2.5.0
All updates since the last release.