Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
how to use get_backtest method ?

I want to use get_backtest method but i have no idea which package i should use.
I need help to implement that method.

Thanks!

1 response

You can only use it within the research platform. There's nothing to import. For example, just call:

bt = get_backtest('57e0f2fb917b4f1026c0ebd0')  

You'll need to replace the backtest reference string with your own.

Then, if you want to run analysis of the backtest, just call:

bt.create_full_tear_sheet()