-
I guess its more a vscode/plotly than a vectorbt question. When I try to plot something e.g. from the interactive debug console (I like debugging) via
Any idea how to (interactively) plot this in vscode browser or any other window? I am not interested to run it out of Jupyter or similar - I guess then it will run out of the box |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It seems one way would be as follows (open plot in browser):
EDIT: Even easier |
Beta Was this translation helpful? Give feedback.
It seems one way would be as follows (open plot in browser):
EDIT: Even easier
pf["some_symbol"].plot().show()
and you can specify the renderer directly in show:
pf["some_symbol"].plot().show("browser")