Hi there,
When I reference the pipeline creation in an external file, like:
from codeload.quantrocket.buy_gap_zipline.pipeline import make_pipeline
any changes to the pipeline code don't seem to be reflected when I re-run the backtest algorithm.
When I include the pipeline creation inline within the strategy file, any changes are picked up, and the algorithm executes as expected.
Is there any caching that occurs when the pipeline is created in a file outside the strategy and referenced?
David