Pandas TA: A complete Guide

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ก.พ. 2025

ความคิดเห็น • 33

  • @elu1
    @elu1 10 หลายเดือนก่อน

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

  • @sinan_islam
    @sinan_islam 2 ปีที่แล้ว +3

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

  • @ersineser7610
    @ersineser7610 2 ปีที่แล้ว +1

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

  • @germanslobo
    @germanslobo ปีที่แล้ว +1

    I love your videos. Thanks.

  • @anishsahani1824
    @anishsahani1824 ปีที่แล้ว

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

  • @Chris-jo3nb
    @Chris-jo3nb หลายเดือนก่อน

    thanksTyou. The docs aren't too clear but your video helped a lot.

  • @davidberry8511
    @davidberry8511 2 ปีที่แล้ว +1

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

  • @teddyperera8531
    @teddyperera8531 3 หลายเดือนก่อน

    Great tutorial and simple enough for beginners. Thank you

    • @tipsywolf5466
      @tipsywolf5466 3 หลายเดือนก่อน

      Have you tried this code ?

  • @manojprabhu8885
    @manojprabhu8885 8 หลายเดือนก่อน

    Precise explanation. Thanks a lot

  • @shaneburke3156
    @shaneburke3156 2 ปีที่แล้ว

    This method works perfectly .. thanks for sharing ;)

  • @DEChacker
    @DEChacker ปีที่แล้ว

    thank you very much for your videos - keep going please

  • @INFODUCTIVA2
    @INFODUCTIVA2 9 หลายเดือนก่อน

    Muy buena Información!!!!

  • @J2897Tutorials
    @J2897Tutorials 2 ปีที่แล้ว +2

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

  • @hedgingera2170
    @hedgingera2170 ปีที่แล้ว

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

  • @akbarboghani1
    @akbarboghani1 2 ปีที่แล้ว

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

  • @amywarke3481
    @amywarke3481 2 ปีที่แล้ว +1

    I do love pandas 🐼

    • @lucysproule4643
      @lucysproule4643 2 ปีที่แล้ว

      Me too! Keep up the good work chad :)

  • @baczkie
    @baczkie 2 ปีที่แล้ว

    lov ya bro !!!

  • @vatsalshah7557
    @vatsalshah7557 ปีที่แล้ว

    Is the underlying data pulled from Yahoo Finance?

  • @algo_ronin
    @algo_ronin 7 หลายเดือนก่อน

    But how do we can make backtest?

  • @TheSnath
    @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
      @ChadThackray  ปีที่แล้ว

      Should be exactly the same. Just make sure your dataframe looks like the yfinance one

  • @rastislavlukac6487
    @rastislavlukac6487 2 ปีที่แล้ว

    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?

    • @ChadThackray
      @ChadThackray  2 ปีที่แล้ว

      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

  • @franky12
    @franky12 2 ปีที่แล้ว

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

    • @ChadThackray
      @ChadThackray  2 ปีที่แล้ว +1

      Not that I'm aware of. But it's only one line in matplotlib or plotly.

  • @allentoronto
    @allentoronto 2 ปีที่แล้ว

    For once, the software is actually really useful

  • @tipsywolf5466
    @tipsywolf5466 3 หลายเดือนก่อน

    Not working..

    • @ChadThackray
      @ChadThackray  3 หลายเดือนก่อน

      Can you be more specific?

  • @barbann5091
    @barbann5091 2 ปีที่แล้ว

    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
      @ChadThackray  2 ปีที่แล้ว

      Update your version of yfinance. Looks like the issue is resolved now if you check the github issues