-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Add clenow and demark to SDK #3525
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems to work on my computer.
Do you know why we have this message?
c:\Users\MY_USER\miniconda3\envs\openbb-terminal\lib\site-packages\numpy\_distributor_init.py:30: UserWarning: loaded more than 1 DLL from .libs:
c:\Users\MY_USER\miniconda3\envs\openbb-terminal\lib\site-packages\numpy\.libs\libopenblas.FB5AE2TYXYH2IJRDKGDGQ3XBKLKTF43H.gfortran-win_amd64.dll
c:\Users\MY_USER\miniconda3\envs\openbb-terminal\lib\site-packages\numpy\.libs\libopenblas.XWYDX2IKJW2NMTWSFYNGFUWKQU3LYTCZ.gfortran-win_amd64.dll
warnings.warn("loaded more than 1 DLL from .libs:"
never seen this warning before, related to @piiq portfolio optimization issue yesterday? |
It's related to libfortran disapearing from numpy? Try a fresh env and clean pip cache before installing please |
Description
This PR fixes #3490
SDK:
from openbb_terminal.sdk import openbb
df = openbb.stocks.load("AAPL")
openbb.ta.demark(df["Close"])
openbb.ta.demark_chart(df)
openbb.ta.clenow(df["Close"])
openbb.ta.clenow_chart(df["Close"])