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.
@loganathansiva70633 жыл бұрын
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.
@Megaihsuka3 жыл бұрын
Thanks you are saving me a lot of time looking for books and so on...
@OzgurUrhan4 жыл бұрын
Can we get more than one share data? eg ETH-USD, BTC-USD ....
@loganathansiva70633 жыл бұрын
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.
@clarence2c4083 жыл бұрын
Excuse me, may I wonder what is the purpose of "flag" in the getsignal cell?
@Zouflow4 жыл бұрын
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).
@dandymoderne4 жыл бұрын
Thanks trendfollowing strategy are easy afterwards in trend markets but it is not the same in ranking markets
@juanc92513 жыл бұрын
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!
@loganathansiva70633 жыл бұрын
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?.
@loganathansiva70633 жыл бұрын
THANKS SIR, i GOT IT CORRECTED. tHANK YOU SO MUCH
@maxs.81464 жыл бұрын
Great video. I would love to see one where you are using the ichimoku Cloud
@ajayrajput36814 жыл бұрын
Thank you so much for making such a knowledgeable video ..... hope to see you again with new session on option chain
@rajeswariashok67753 жыл бұрын
Hi..you are telling past buy and sell prediction,how to prepare future buy and sell prediction with help of your coding?
@rajeswariashok67753 жыл бұрын
Pls reply
@vemulamanish83823 жыл бұрын
Sir can you make a video on word or sentence recognition???
@bhargav74764 жыл бұрын
Where can I get the code for this?
@ComputerSciencecompsci1123584 жыл бұрын
You can get this code on patreon. Patreon.com/computerscience
@arkachandra37293 жыл бұрын
Sir please tell me how to work API. And video api base script
@John-dw6jb4 жыл бұрын
WOW AMAZING THANK YOU
@ComputerSciencecompsci1123584 жыл бұрын
Thanks!
@samifrnds90183 жыл бұрын
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
@OzgurUrhan4 жыл бұрын
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
@OzgurUrhan4 жыл бұрын
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())