-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
-
I want to plot two candlestick charts, can I pass OHLC data to self.I and plot it? Thank you
Beta Was this translation helpful? Give feedback.
All reactions
Strategy.I()
only supports overlaying or appending line and scatter plots, but Backtest.plot()
does return you a Bokeh Figure object and maybe you can fiddle with it yourself:
backtesting.py/backtesting/backtesting.py
Line 1592 in 267d99f
backtesting.py/backtesting/_plotting.py
Lines 718 to 727 in 267d99f
Replies: 1 comment
-
Strategy.I()
only supports overlaying or appending line and scatter plots, but Backtest.plot()
does return you a Bokeh Figure object and maybe you can fiddle with it yourself:
backtesting.py/backtesting/backtesting.py
Line 1592 in 267d99f
backtesting.py/backtesting/_plotting.py
Lines 718 to 727 in 267d99f
Beta Was this translation helpful? Give feedback.
All reactions
-
👍 1