diff --git a/docs/changelog.rst b/docs/changelog.rst index 9a1a008..96775a6 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,21 @@ Changelog ========= +3.3.0 +----- + +New: + +* Symbol search + +3.2.10 +------ + +New: + +* Support for proxy +* Additional indicators support for ``get_multiple_analysis()`` + 3.2.9 ----- diff --git a/docs/usage.rst b/docs/usage.rst index f7f426c..1fe7143 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -151,6 +151,7 @@ Parameters: * symbols (``list``) – List of exchange and ticker symbol separated by a colon. Example: ["NASDAQ:TSLA", "NYSE:DOCN"] or ["BINANCE:BTCUSDT", "BITSTAMP:ETHUSD"]. * screener (``str``) – Screener (e.g., ``"america"``, ``"indonesia"``, ``"forex"``, ``"crypto"``). * timeout (``float``, optional) – How long to wait (in seconds) for the server to return a response. +* additional_indicators (``list``, optional) – List of additional indicators to retrieve. Example: ``["RSI", "Mom"]``. * interval (``str``) – Time frame .. note:: @@ -211,7 +212,7 @@ Parameters: Proxy ----- -Simply add the ``proxies`` parameter if you wish to utilize a proxy. It's worth noting that a bad proxy could result in TradingView rejecting your request. +Simply add the ``proxies`` parameter if you wish to utilize a proxy. Works with both ``TA_Handler()`` and ``get_multiple_analysis()``. It's worth noting that a bad proxy could result in TradingView rejecting your request. .. code-block:: python3 diff --git a/setup.py b/setup.py index bee8c0c..e6bbeaa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='tradingview_ta', - version='3.2.10', + version='3.3.0', description="Unofficial TradingView technical analysis API wrapper.", long_description=long_description, long_description_content_type="text/markdown", diff --git a/tradingview_ta/main.py b/tradingview_ta/main.py index 06f4b2e..0c8638b 100644 --- a/tradingview_ta/main.py +++ b/tradingview_ta/main.py @@ -8,7 +8,7 @@ import warnings from .technicals import Compute -__version__ = "3.2.10" +__version__ = "3.3.0" class Analysis(object):