Hello,

I'm trying to create custom matplotlib charts on the backtest results. Specifically I'd like to overlay icons to show when each buy and sell order was executed on a candlestick plot. 

I can run my backtest in main.py, and I can create the candlestick plot in research.ipynb.  However, I cannot figure out how to use the results of the backtest (the orders) in the research.ipynb to create the chart.

 

I also read in the docs that I should be creating my algorithm in the research.ipynb first before ever running it in main.py. However, I'm not sure how to execute the algorithm in the resarech.ipynb file?  What do I use to call the class I'm creating my algorithm in?

 

Thank you!