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

Commit

Permalink
Merge pull request #109 from brian-the-dev/prepare-v3.3.0
Browse files Browse the repository at this point in the history
Prepare for v3.3.0
  • Loading branch information
brian-the-dev authored Oct 5, 2022
2 parents 3d347ea + 39c2d6f commit 1f8f72e
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
15 changes: 15 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
3 changes: 2 additions & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tradingview_ta/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import warnings
from .technicals import Compute

__version__ = "3.2.10"
__version__ = "3.3.0"


class Analysis(object):
Expand Down

0 comments on commit 1f8f72e

Please sign in to comment.