Replies: 1 comment
-
Use one window per stock? Or one axis per stock? Like so: ...
ax1,ax2 = create_plot(rows=2)
ax2.decouple() # this makes time series unrelated, and zoom affects one at a time
p1 = fplt.plot(stock1, ax=ax1)
p2 = fplt.plot(stock2, ax=ax2) |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, I want to plot multiply charts for different stock.
what is the simple way to do that?
Beta Was this translation helpful? Give feedback.
All reactions