Kai Folf

Results 29 comments of Kai Folf

Hello, You can use the compute functions available in the Compute class. As these functions are low-level, they are not documented in RTD. However, the functions have [docstrings](https://github.com/brian-the-dev/python-tradingview-ta/blob/main/tradingview_ta/technicals.py) that explain...

Hi @shanmugam023, I cannot reproduce the issue without a clear, concise, and detailed description. Please reply with: - The version of tradingview-ta - Your operating system (Windows, Mac, Linux, etc)...

@shanmugam023, please update your Python to 3.6 or newer. I will update the `python_requires` in `setup.py` soon. Thanks for informing me. Please let me know if you have any other...

You don't need to upgrade anything. Just replace `summary` with `indicators`, or use this example: ```python from tradingview_ta import TA_Handler, Interval, Exchange tesla = TA_Handler( symbol="TSLA", screener="america", exchange="NASDAQ", interval=Interval.INTERVAL_1_DAY )...

No, please read the documentation: https://python-tradingview-ta.readthedocs.io/en/latest/usage.html#retrieving-multiple-analysis. So, your code would be something like this: ```python from tradingview_ta import * analysis = get_multiple_analysis(screener="crypto", interval=Interval.INTERVAL_1_HOUR, symbols=["BINANCE:SXPUSDT", "BINANCE:ICPUSDT"]) ``` You can then iterate...

`symbols` requires a list of symbols, not file location. Your code should read the file and parse it into a list. These should work: 1. Create a `symbols.txt` file. 2....

Sure, it's possible. Let's assume that ```python indicators = {'Recommend.Other': 0.09090909, 'Recommend.All': 0.37878788, 'Recommend.MA': 0.66666667, 'RSI': 56.70139501, 'RSI[1]': 55.20397798, 'Stoch.K': 52.64805406, 'Stoch.D': 56.18619977, 'Stoch.K[1]': 53.35542157, 'Stoch.D[1]': 61.8838906, 'CCI20': 36.72781225, 'CCI20[1]':...

Hi @shanmugam023, Usually, `TypeError: '>=' not supported between instances of 'NoneType' and 'int` is caused by certain symbols (see #55). Can you reply with the `1DAY_Coin.txt` file?

I checked the file, and this issue is similar to #55. This is caused by `BINANCE:DEXEUSDT`, which does not have a 1 day analysis. ![image](https://user-images.githubusercontent.com/40331046/127729426-64656dd8-9f6c-42ec-b409-1d79c613465d.png) You can remove that line...

Hi @beachboy88, The error `getaddrinfo failed` indicates that your computer has trouble resolving the hostname `scanner.tradingview.com`. It could be caused by a number of reasons, including DNS errors, proxy usage,...