Seems simple when watching it but when you start coding you realize how deep this is!! Excellent stuff!!
@mikkaruru2 жыл бұрын
Yes, more financial stuff please! Portfolio visualization would be interesting topic!
@k2icc3 жыл бұрын
#FutureWarning: The default value of regex will change from True to False in a future version. In addition, single character regular expressions will*not* be treated as literal strings when regex=True.
@michelarruda76343 жыл бұрын
In this morning i just thought about doing a stocks trading bot project for my portfolio. This video will help a lot!
@NeuralNine3 жыл бұрын
glad to hear that :)
@minegun72483 жыл бұрын
Your content is so good I thought there are more than 1 mil subs. With this content, you will reach one mil or more very easy
@NeuralNine3 жыл бұрын
everybody keeps saying that. happy to hear that. But I guess it just takes some time ^^
@khalidsaleem1450 Жыл бұрын
You have excellent voice and skill for online delivery. So Thanks sir for providing this learning series. Please guide why I’m getting Error in line 11 of this same program but it’s running well in your video. TypeError: string indices must be integers, not ‘str’
@birdddle Жыл бұрын
Hi I got the same problem. Have you solve it?
@luisgiuliano61610 ай бұрын
@@birdddle me too , did one of u solved it?
@MathonX3 жыл бұрын
YES. A new video. Keep it up 🔥🔥
@NeuralNine3 жыл бұрын
thank you ^^
@Christian_Ky2 жыл бұрын
me: writing hello world in python > 500 errors him: after 30 minutes coding > one misspelling me: rage quit internet
@LatinoWebStudio2 жыл бұрын
Great video! Thanks so much for it. I got started into trading some time ago and now I'm trying to learn Python to become an algorithmic trader and use Python to make better trading decisions so these videos are super helpful Do you have videos on creating your own trading bots? Do you know if a trading bot can be used on a paper trading account?
@pucek3653 жыл бұрын
If only my university had teachers like you I would be genius by now.
@Seriosso3 жыл бұрын
Thanks for the great videos!
@arronacesatooya48623 жыл бұрын
i got this output: 'SMA_150' for A 'SMA_150' for AAL 'SMA_150' for AAP 'SMA_150' for ACN Empty DataFrame Columns: [Ticker, Latest_Price, Score, PE_ratio, PEG_Ratio, SMA_150, 52_Week_Low, 52_Week_High] Index: [] can someone help?
@jasonfaustino88153 жыл бұрын
Thanks man. Good video just exactly what I was looking for. I do have one question tho, every time the code runs, does it compute all the computation again? Like the sma150 and sma200. What if I just want to update the dataframe? Just to save some computational memory. Thanks
@luisgiuliano61610 ай бұрын
when I try this there comes the error in line 11 string indices must be integers but is exakt the same way like you did
@ondrejfidrmuc41803 жыл бұрын
Great video, thank you! Could you please tell me, how would you edit the code to print out data from the past? So not for today, but for example half a year ago? I still keep getting error, when trying to figure it out. Thank you very much again!
@tcgvsocg14583 жыл бұрын
Its really good ! Hope sometiles you do a live you do a sofg with pourcent (maybe hand rate poker ) but no add ,no import ,only python 3 vanilla
@andredaher10273 жыл бұрын
Hi!! Could you plase make a real time map programming video please? I'm a big fan!!
@kevinhashimoto1194 Жыл бұрын
Hey @NeuralNine I'm having an issue with something. Traceback (most recent call last): File "C:\Users\FilePathGoesHere\SP_Scan.py", line 11, in sp500_df = web.DataReader('^GSPC', 'yahoo', start, end) I'm pretty new to python but I think I have everything written correctly. I keep getting an error on line 11 "in Any ideas?
@luisgiuliano61610 ай бұрын
did you figured out till now? I got the same error and don't get my mistake
@axelaguirre91057 ай бұрын
@@luisgiuliano616 yahoo finance changed the compatibility with some pandas datareader
@dustinshaw33553 жыл бұрын
is anyone else having problems with from yahoo_fin import stock_info, it's acting like stock_info isn't a part of the library? I watched the video and seen it work for him. But it doesn't work for me.
@nickroyal86192 жыл бұрын
Yes. Fixed as follows: I realised that there are 2 different libraries (probably more) associated with downloading data to Python from the yahoo finance pages. These are "yahoo-finance" and "yahoo-fin". I had this error as I was calling on the "yahoo- finance" library looking for the stock_info method, but that is actually located in the library "yahoo-fin." So, in terminal ensure you have run "pip install yahoo-fin" (NOT "pip install yahoo-finance"), and let it do its thing. You can then check it worked with: import pandas_datareader as web import pandas as pd from yahoo_fin import stock_info as si import datetime as dt tickers = si.tickers_sp500() print(tickers) Then crack on as this gentleman has shown. An hour of troubleshooting later I'm ready to start minute 4 of the video, which has been my experience of learning Python from day 1. :-D
@newdata2 жыл бұрын
how to backtest for past fundamentals screens
@hardikphagotra13842 жыл бұрын
Hey this was really good but the code does not work for me and the reason is: after running the code and even making the stock data library it gives an error called url lib certificate verify failed. can you please tell me how to fix this error, I really wanna use this code for my personal analysis
@rubihermosa37863 жыл бұрын
I have a problem at 29:25 I create the directory but still not working what I should do, please help me and thank you
@aryaplayzz Жыл бұрын
did u figure it out
@Kig_Ama2 жыл бұрын
How do I get all ticker symbols available on yahoo finance not only that of s&p 500?
@elijahapollos2 жыл бұрын
On line 16 data frame columns is it possible to add the ticker’s dividend yield ?
@lambolin6003 жыл бұрын
hello Flori! are you doing custom jobs?
@thenvsnow9551 Жыл бұрын
Can I use "yahoofin" data for commercial app??
@BjrnTrdr2 жыл бұрын
Great Video I learned a lot! But I have a question as I am coding my own version of this. Before you are doing the ranking you calculate the ratio for all PCT Change results to the SPY. But Afterwards you are ranking them all. Comparing all to SPY is an unnecessary step, if you are ranking them anyway or am i mistaken here? Does anyone else have an opinion on this...would be interested to understand if i am missing something here. Keep up the awesome video! 🚀🚀🚀 Greetings from frankfurt
@disrael21013 жыл бұрын
great can we add it as an actual on web filter via django or flask for example?
@FireFly9693 жыл бұрын
thank you
@user-kq5cd7bd3o3 жыл бұрын
pandas_datareader._utils.RemoteDataError - Does somebody have the same problem?
@30BrianaFerni3 жыл бұрын
I do not have that neura nine, how do I get it
@bogussingh61753 жыл бұрын
Hi. I need earning share, dividend and revenue data for a screener. How can I get it?
@desislavgeorgiev46703 жыл бұрын
Is it possible to do same but for crypto scanning?
@30BrianaFerni3 жыл бұрын
can you please help I get this error line 18 for ticker in tickers: ^ SyntaxError: invalid syntax
@sovietpigeon13462 жыл бұрын
have it written on the beginning of the line
@allendouglas13113 жыл бұрын
I tried his code on the NASDAQ tickers and pulled in about 90 'tickers' before execution error on line 55 Traceback (most recent call last):...KeyError: 'Date'. I've tried putting both 'pass' and 'continue' after the except Exception as e: and the print statement. Any ideas on what's going wrong? I'm not a python developer but I've coded in c++ about 20 years ago.
@AzamdamonSiddiqui2 жыл бұрын
I always end up with empty data frame in the end
@yuvalbra3 жыл бұрын
tanks for the video, where can i find the source code?
@k2icc3 жыл бұрын
When running for ticker in tickers: few minutes after done, it shows:
@bogussingh61753 жыл бұрын
It is giving me an error. Error - Unable to read URL
@allanbrand3 жыл бұрын
Not sure what the issue is but this does not work at all. Have gone over multiple times to make sure everything is correct, but all I get is: {{_future warning removed_}} 1 for AAPL 1 for ABBV 1 for ADBE Empty DataFrame Columns: [Ticker, Latest_Price, Score, PE_Ratio, PEG_Ratio, SMA_150, SMA_200, 52_Week_Low, 52_Week_High] Index: []
@charjags65003 жыл бұрын
exact same output. how do i fix it.
@allanbrand3 жыл бұрын
@@charjags6500 I never got it working
@indranildutta42523 жыл бұрын
Removal of PEG, 52WeekHigh, 52WeekLow - Still not working --- Empty DataFrame Columns: [Ticker, Latest_Price, Score, PE_Ratio, SMA_50, SMA_100] Index: []
@wilsongomes33602 жыл бұрын
what a pity,it doesnot work
@shahjamalbiswas81273 жыл бұрын
This is really a great video tutorial Could please make a same video for Indian stock market, because india stock market is booming now
@luisgiuliano61610 ай бұрын
you just have to change for Indian index with sp500
@alibakhtiari62973 жыл бұрын
where is the code sir?
@fx2gbg5963 жыл бұрын
TOP
@amardhillon97273 жыл бұрын
Cool
@keeperofthelight96812 жыл бұрын
Peg ratio function at line 41 doesn’t work with [1][4] indexing. Please let me know whats going on
@akkn30433 жыл бұрын
Can you give me source code thanks
@keeperofthelight96812 жыл бұрын
Outdated tutorial most of the screeners code not working move on
@mahenkul643 жыл бұрын
Hi, I ran this code in vs code, however I'm getting the error, TypeError Traceback (most recent call last) f:\Mahendra\MISC\Python Files\MMK\Stock Data Analysis\NSE50 Stock selection.ipynb Cell 2' in 9 return_list = [] 10 final_df = pd.DataFrame(columns=['Ticker', 'Latest_price', 'Score', 'PE Ratio', 'PEG_Ratio', 'SMA44', 'SMA200', '52_week_Low', '52_Week_High']) ---> 12 for ticker in tickers: 13 df = web.DataReader(ticker, 'yahoo', start, end) 14 df.to_csv(f'stock_data/{ticker}.csv') TypeError: 'function' object is not iterable Can you help me to resolve this error? Thanks :)