Very nicely made video to explain the library. Thanks you so much
@ersineser76102 жыл бұрын
Dear Chad, Thank you for sharing and teaching us. Greetings.
@sinan_islam2 жыл бұрын
Thanks for removing the clock. It was a source of distraction. Now I can pay better attention to the lecture.
@teddyperera85312 ай бұрын
Great tutorial and simple enough for beginners. Thank you
@tipsywolf54662 ай бұрын
Have you tried this code ?
@anishsahani1824 Жыл бұрын
I learned a lot from this video. Best video I have seen today 😍
@davidberry85112 жыл бұрын
Amazing, love what you are doing. Can't wait for the next one :)
@manojprabhu88856 ай бұрын
Precise explanation. Thanks a lot
@germanslobo Жыл бұрын
I love your videos. Thanks.
@DEChacker Жыл бұрын
thank you very much for your videos - keep going please
@shaneburke31562 жыл бұрын
This method works perfectly .. thanks for sharing ;)
@J2897Tutorials2 жыл бұрын
Nice... This could save me a tonne of time.
@hedgingera217011 ай бұрын
the close price passed into ta should be 'Close' or 'Adj Close' ? thanks
@INFODUCTIVA28 ай бұрын
Muy buena Información!!!!
@akbarboghani12 жыл бұрын
thanks for sharing this. very useful video indeed. is it possible to fetch the commodities data and the derivatives data.
@vatsalshah755711 ай бұрын
Is the underlying data pulled from Yahoo Finance?
@franky122 жыл бұрын
Is there any plot function built-in to easily plot the calculated indicators?
@ChadThackray2 жыл бұрын
Not that I'm aware of. But it's only one line in matplotlib or plotly.
@TheSnath Жыл бұрын
Hi Chad, I want to run the ta functions on a df that is not from yfinance. Is that possible? If so, what all do I need to take care of
@ChadThackray Жыл бұрын
Should be exactly the same. Just make sure your dataframe looks like the yfinance one
@rastislavlukac64872 жыл бұрын
You do excellent job Chad ! Your videos are very useful. However, I would like to ask one question. Why do I get from following two functions completely different results? Pandas-TA result seems to be wrong... a = ta.trend.STCIndicator(close=data["close"], window_fast=12, window_slow=26, cycle=10, smooth1=3, smooth2=3, fillna=True).stc() b = pandas_ta.stc(close=data["close"],tclen=10, fast=12, slow=26 ,factor=0.5) Is it in the parameters smooth and factor?
@ChadThackray2 жыл бұрын
Yes you'll want to make sure that the parameters are the same. In this example I think your smoothing value is off. If that's still not right then you'll want to check the code between the two repos and see if there's a difference in methodology
@amywarke34812 жыл бұрын
I do love pandas 🐼
@lucysproule46432 жыл бұрын
Me too! Keep up the good work chad :)
@baczkie2 жыл бұрын
lov ya bro !!!
@allentoronto2 жыл бұрын
For once, the software is actually really useful
@tipsywolf54662 ай бұрын
Not working..
@ChadThackrayАй бұрын
Can you be more specific?
@barbann5091 Жыл бұрын
I tried to import from yfinance exactly as shown above with df.ta.ticker("SPY",...etc) and got an error message "Yahoo has again changed data format, yfinance now unsure which key(s) is for decryption:" plus a page full of stuff -no dataframe.
@ChadThackray Жыл бұрын
Update your version of yfinance. Looks like the issue is resolved now if you check the github issues