-
Notifications
You must be signed in to change notification settings - Fork 352
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
YahooFinanceProcessor failure to download the market data #87
Comments
This is not an issue. The error is because you are trying to download the data for Sat, Sun and public holiday which does not exist. If you check the dates, they are moving forward regardless. |
I have a similar problem. My software is the same version. I have a while loop that repeatedly pulls stock values until a condition is met. The loop works for several minutes then gives the data not found message. I can restart the program and it again works for several minutes than fails. The sleep function at the end is so that the data request is executed only 1 per minute. Any ideas on how to prevent this from failing are appreciated. while MO == 0: print("ctrl c will close a program from an infinite loop. Voice of experience.")
I am commenting out the next 2 print lines to see if that fixes the program terminatingprint("Time ", now)print ("Hecla Mining ", HL)AIM evaluation goes here.
print("SV = ",SV)
print("made it to MO = 0")
|
What is your error message? |
similar problem,can't download the data |
Data is missing for that bar. Open the csv file and check if data is present for 13:38 or 13:39. You need to handle missing data. |
I am facing an issue while executing the code to download market data.
Following is the error:
1 Failed download:
['AXP']: Exception('%ticker%: No price data found, symbol may be delisted (1d 2008-01-01 00:00:00 -> 2008-01-02 00:00:00)')
And this keeps repeating and it never ends.
I feel there is a bug here either in finrl or in yfinance. My old tutorial runs well.
Following is my current configuration:
Python 3.10 , Finrl = finrl-0.3.6 and yfinance-0.2.38
Screenshot
[
]
The text was updated successfully, but these errors were encountered: