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

Commit 1f8f72e

Browse files
Merge pull request #109 from brian-the-dev/prepare-v3.3.0
Prepare for v3.3.0
2 parents 3d347ea + 39c2d6f commit 1f8f72e

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

docs/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog
22
=========
33

4+
3.3.0
5+
-----
6+
7+
New:
8+
9+
* Symbol search
10+
11+
3.2.10
12+
------
13+
14+
New:
15+
16+
* Support for proxy
17+
* Additional indicators support for ``get_multiple_analysis()``
18+
419
3.2.9
520
-----
621

docs/usage.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ Parameters:
151151
* symbols (``list``) – List of exchange and ticker symbol separated by a colon. Example: ["NASDAQ:TSLA", "NYSE:DOCN"] or ["BINANCE:BTCUSDT", "BITSTAMP:ETHUSD"].
152152
* screener (``str``) – Screener (e.g., ``"america"``, ``"indonesia"``, ``"forex"``, ``"crypto"``).
153153
* timeout (``float``, optional) – How long to wait (in seconds) for the server to return a response.
154+
* additional_indicators (``list``, optional) – List of additional indicators to retrieve. Example: ``["RSI", "Mom"]``.
154155
* interval (``str``) – Time frame
155156

156157
.. note::
@@ -211,7 +212,7 @@ Parameters:
211212

212213
Proxy
213214
-----
214-
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.
215+
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.
215216

216217
.. code-block:: python3
217218

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name='tradingview_ta',
8-
version='3.2.10',
8+
version='3.3.0',
99
description="Unofficial TradingView technical analysis API wrapper.",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",

tradingview_ta/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import warnings
99
from .technicals import Compute
1010

11-
__version__ = "3.2.10"
11+
__version__ = "3.3.0"
1212

1313

1414
class Analysis(object):

0 commit comments

Comments
 (0)