-
-
Notifications
You must be signed in to change notification settings - Fork 1.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
Issue with bt.plot() #1158
Comments
Install the latest version from GitHub to incorporate recent fixes: The PyPI version (0.3.3) may not include the necessary fix |
The solution is :
Best regards |
This helped me a lot, i was pulling out my hair yesterday trying to get this to work i tried everything under the sun, thank you so much, when will PyPi be updated to reflect the new changes? |
I experienced the same issue and came across this thread. THe solution here works perfectly (#1158 (comment)) When will we have the update in PyPI please? Thank you!! |
installing from git returning same error |
Not sure if this is still relevant but I had the same error until I made some adjustments to the initial data frame. Initially, returned "ValueError: failed to validate DatetimeTickFormatter(id='p1996', ...).days: expected a value of type str, got ['%d %b', '%a %d'] of type list" for bt.plot() But once I reset the index: df = yf.Ticker("SPY").history(start='2010-01-01', end='2021-01-01').tz_localize(None) df=df[df.High!=df.Low] bt.plot() returns the figures |
Expected Behavior
bt.plot() doesn't show up and returns error.
Actual Behavior
error:
Steps to Reproduce
code:
Additional info
Installing bokeh==3.4.2 fix the issue but makes everything lag and some other errors appears
The text was updated successfully, but these errors were encountered: