We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following request will fail:
from iexfinance imort Stock aig = Stock("aig+") # iexfinance.utils.exceptions.IEXSymbolError: Symbol AIG+ not found.
per the IEX docs:
Be sure to url-encode the values you pass to your parameter. (i.e. ?symbols=AIG+ encoded is ?symbols=AIG%2b.)
since we are not doing so now, we are essentially passing:
symbols=AIG+
which will not work. Need to url-encode all symbol names to force percent-encodings of non-alphanum characters.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following request will fail:
per the IEX docs:
since we are not doing so now, we are essentially passing:
which will not work. Need to url-encode all symbol names to force percent-encodings of non-alphanum characters.
The text was updated successfully, but these errors were encountered: