Python for Finance: Learn how to make candlestick graphs with stock data using plotly

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ธ.ค. 2024

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

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

    A few months ago, I started exploring finance analysis using python. I found it fascinating and with infinite potential. I already read and browse different videos and sites, and yours are clearly the best and most focused on this matter. Thank you very much for all the effort making your videos. Every second of it is worth it.

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

    Amazing video, amazing explanation!

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

    Better than some college classes.

  • @murugan8238
    @murugan8238 6 หลายเดือนก่อน

    how to implement this data for mt4 chart? , how to deploy?

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

    Hey, thanks! But what if i want to show buy and sell signals (like scatter in matplotlib)

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

    thank you for sharing this, i actually used it and it really helped me in stock analysis . a question from me- is it possible to create moving average for more than one stocks? i am struggling to get this done for 10 stocks in my watch list using above ?

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

    Thanks for this video. I used plotly to display candlestick chart. But the candles are not changing size vertically which makes it less interactive. Any idea how can we implement that?

  • @MS-fp5jq
    @MS-fp5jq 3 ปีที่แล้ว +2

    Great video..learned quite a bit from it. Two questions:
    1. is it possible to have that range slider at the bottom of the two plots
    2. i am iterating over a list dictionary that tells me how to draw a subplot. in your code, you specify the height of the subplots in the make_plot function. Is it possible to set the height as you are building the traces and adding them to the figure?

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

      Thanks for the questions.
      1. Yes it is possible (with a bit of difficulty), suggest you look at Plotly slider documentation plotly.com/python/sliders/
      2. Yes it is possible, try:
      fig['layout']['yaxis1'].update(domain=[0, 0.7])
      fig['layout']['yaxis2'].update(domain=[0.8, 1])
      Check out this link if you get stuck: community.plotly.com/t/how-to-set-different-height-to-subplots-sharing-x-axes/14677

  • @HKNAGPAL7
    @HKNAGPAL7 3 ปีที่แล้ว

    awesome

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

    You look quite handsome to me but I don't think it's necessary to see a small window of you while working - it's quite dysfunctional.

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

    i tried diffrent notebooks tried so many different ways to use pdr.get_data_yahoo but it is not working please help me 🥲

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

      i am stuck here from 3 hours 🥲

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

      try use this
      import yfinance as yfin
      yfin.pdr_override()
      then run all code again