Replies: 1 comment
-
So unfortunately the speed will likely not be improved upon as we are just using the finance_database to grab tickers. We may be able to implement certain caching that could potentially speed up the loading, but the search function will still take the majority of the time. As for the limit functionality, this is an area of improvement on our end. The search function returns a df as well as prints a table with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello I am wondering if anyone else is facing slow response issues with this API in the SDK:
companies_response = openbb.stocks.search(query=search_term, limit=1)
(on average takes ~3.25 seconds but sometimes 2-3x longer)It seems that the
limit
does not improve the response time of the search.Question 1: Is there a plan to improve the performance of the search?
Question 2: I am noticing that
limit
is not being honored. Is that intentional (Example: Search forbo
)Beta Was this translation helpful? Give feedback.
All reactions