On-Balance-Volume (OBV) Stock Trading Strategy Using Python

Поділитися
Вставка
  • Опубліковано 4 гру 2020
  • On-Balance-Volume (OBV) Strategy Using Python
    ⭐Please Subscribe !⭐
    ▶️ Get 4 FREE stocks (valued up to $1600) on WeBull when you use the link below and
    deposit $100:
    act.webull.com/kol-us/share.h...
    ⭐Website:
    everythingcomputerscience.com/
    ⭐Support the channel on Patreon:
    ► / computerscience
    ⭐Helpful Programming Books
    ► Python (Hands-Machine-Learning-Scikit-Learn-TensorFlow):
    amzn.to/2AD1axD
    ► Learning Python:
    amzn.to/3dQGrEB
    ►Head First Python:
    amzn.to/3fUxDiO
  • Наука та технологія

КОМЕНТАРІ • 33

  • @techpetla3901
    @techpetla3901 2 роки тому +1

    The good thing I love about your videos is they are short, simple and straight forward. Would be great if you can implement halftrend indicator in python.

  • @Megaihsuka
    @Megaihsuka 3 роки тому +1

    Thanks you are saving me a lot of time looking for books and so on...

  • @loganathansiva7063
    @loganathansiva7063 2 роки тому

    Quiet amazing work. No word to praise. Absolutely thrilled. Very nice of you .May god bless you. Thanks for teaching great materials in a nutshell form. Congrats. Keep going ahead.

  • @bkdopistao
    @bkdopistao 3 місяці тому

    this is amazing!! thank you very much

  • @Zouflow
    @Zouflow 3 роки тому

    Im loving it ! Maybe for the next videos on this topic, a list of the best strategies and why they're good and accurate ?
    Maybe videos about daytrading strategies and why they are good (explainations of indicators).

  • @ajayrajput3681
    @ajayrajput3681 3 роки тому +1

    Thank you so much for making such a knowledgeable video ..... hope to see you again with new session on option chain

  • @maxs.8146
    @maxs.8146 3 роки тому

    Great video.
    I would love to see one where you are using the ichimoku Cloud

  • @dandymoderne
    @dandymoderne 3 роки тому +1

    Thanks trendfollowing strategy are easy afterwards in trend markets but it is not the same in ranking markets

  • @juanc9251
    @juanc9251 3 роки тому

    Awesome vid: however I get all nan values for the buy and sell signals... i looked over all the functions and the dataset, and all matches up!

  • @loganathansiva7063
    @loganathansiva7063 2 роки тому +1

    Thanks sir. I learnt through your lectures invaluable knowledge. Your effort is unequiable. Great work. For people like me it is gift of god through you. No word to praise. Thanks sir.

  • @loganathansiva7063
    @loganathansiva7063 2 роки тому

    THANKS SIR, i GOT IT CORRECTED. tHANK YOU SO MUCH

  • @clarence2c408
    @clarence2c408 3 роки тому +3

    Excuse me, may I wonder what is the purpose of "flag" in the getsignal cell?

  • @OzgurUrhan
    @OzgurUrhan 3 роки тому +6

    Can we get more than one share data?
    eg ETH-USD, BTC-USD ....

  • @loganathansiva7063
    @loganathansiva7063 2 роки тому +1

    Hai sir, Good day. Cheers. I have one error occuring in the pnenultimate cell where i the Buy_Sell_price is not matching. Length of index(12) is not matching. What could be the solution?.

  • @vemulamanish8382
    @vemulamanish8382 3 роки тому

    Sir can you make a video on word or sentence recognition???

  • @VladKochetov
    @VladKochetov 3 роки тому +1

    Thanks for video, like!

  • @John-dw6jb
    @John-dw6jb 3 роки тому +1

    WOW AMAZING THANK YOU

  • @arkachandra3729
    @arkachandra3729 3 роки тому

    Sir please tell me how to work API. And video api base script

  • @rajeswariashok6775
    @rajeswariashok6775 3 роки тому

    Hi..you are telling past buy and sell prediction,how to prepare future buy and sell prediction with help of your coding?

  • @OzgurUrhan
    @OzgurUrhan 3 роки тому +2

    I get the data as follows df= web.DataReader("ETH-USD", data_source='yahoo', start='2020-01-01', end='2020-12-05')
    What should I print the last date instead of "end" as the last date of the computer day?
    Thank you

    • @OzgurUrhan
      @OzgurUrhan 3 роки тому +4

      I solved the question I asked.
      from datetime import datetime
      df= web.DataReader("ETH-USD", data_source='yahoo', start='2020-01-01', end=datetime.now())

  • @bhargav7476
    @bhargav7476 3 роки тому +1

    Where can I get the code for this?

  • @arkantempest5606
    @arkantempest5606 3 роки тому

    Please make one using transformers

  • @techandhack4639
    @techandhack4639 3 роки тому

    dataset

  • @samifrnds9018
    @samifrnds9018 3 роки тому

    plt.figure(figsize = (12.2, 4.5))
    plt.plot(df['Close'], label = 'Close', alpha = 0.35)
    plt.scatter(df.index, df['Buy_Signal_Price'], label = 'Buy Signal', marker = '^', alpha = 1, color = 'green')
    plt.scatter(df.index, df['Sell_Signal_Price'], label = 'Sell Signal', marker = 'v', alpha = 1, color = 'red')
    plt.title('Buy & Sell Signals for SIVB Stock in 2020')
    plt.xlabel('Date')
    plt.ylabel('Price USD')
    plt.show()
    The last Section of Code is generating a problem in MY end. it is happening also in your MFI Algorithmic strategy Video, Can you please help me where I am making the mistake