TypeError: '>=' not supported between instances of 'NoneType' and 'int'
See original GitHub issueI’m getting this:
TypeError: '>=' not supported between instances of 'NoneType' and 'int'
when doing:
stock_recommendation = TA_Handler(
symbol=ticker,
screener=screener,
exchange=exchange,
interval=interv,
)
d_recommendation = stock_recommendation.get_analysis().summary
with ticker as PLTR
. It works for others
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
TypeError: '<' not supported between instances of 'NoneType ...
In Python 3 such comparisons raise a TypeError : ... TypeError: '>' not supported between instances of 'NoneType' and 'int' >>> None <...
Read more >TypeError: '>' not supported between instances of 'NoneType ...
I am trying to disable button when Click untill to finish a process then enable again like the below process: user press button...
Read more >'>' not supported between instances of 'NoneType' and 'int'
1. print() function returns None, so if initial guess is incorrect, in the body of while loop you assign None to num.
Read more >'' not supported between instances of 'NoneType' and 'float ...
Pandas : TypeError : '' not supported between instances of 'NoneType ' and 'float' [ Beautify Your Computer ...
Read more >' not supported between instances of 'NoneType' and 'str ...
TypeError : '<' not supported between instances of 'NoneType' and ... Only nframes is an int , and worst case it's set to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ll release the next version with a clear error message.
Quick fixed: modified ‘main.py’ from site-packages\tradingview_ta: IN line 80: def calculate(indicators, screener, symbol, exchange, interval): Replace line 85,86,87 with code:
Good luck.