Pandas TA: A complete Guide

preview_player
Показать описание
We cover the pandas-ta library, how to calculate various technical indicators, how to create strategies, how to use multi-processing, etc.

⭐ Code:

Timestamps:

00:00 - Intro
01:03 - Fetching data from yfinance
03:56 - Pandas-TA documentation
06:42 - Calling TA functions directly
15:19 - Using strategy objects to calculate multiple indicators
18:18 - Misc. Features, Multi-processing, column naming, etc.
Рекомендации по теме
Комментарии
Автор

Very nicely made video to explain the library. Thanks you so much

elu
Автор

Great tutorial and simple enough for beginners. Thank you

teddyperera
Автор

Thanks for removing the clock. It was a source of distraction. Now I can pay better attention to the lecture.

sinan_islam
Автор

Dear Chad, Thank you for sharing and teaching us. Greetings.

ersineser
Автор

I learned a lot from this video. Best video I have seen today 😍

anishsahani
Автор

Amazing, love what you are doing. Can't wait for the next one :)

davidberry
Автор

thank you very much for your videos - keep going please

DEChacker
Автор

Nice... This could save me a tonne of time.

JTutorials
Автор

This method works perfectly .. thanks for sharing ;)

shaneburke
Автор

thanks for sharing this. very useful video indeed. is it possible to fetch the commodities data and the derivatives data.

akbarboghani
Автор

the close price passed into ta should be 'Close' or 'Adj Close' ?
thanks

hedgingera
Автор

Is the underlying data pulled from Yahoo Finance?

vatsalshah
Автор

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

TheSnath
Автор

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?

rastislavlukac
Автор

Is there any plot function built-in to easily plot the calculated indicators?

franky
Автор

For once, the software is actually really useful

allentoronto
Автор

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.

barbann