First, I apologize for my ignorance. Before posting a question I do my best to research it myself, however, my research leaves me with multiple answers.
I am still learning Quantopian, and have started learning pipeline. However, the api help page conflicts with some tutorials I've seen, and even conflicts with the template when creating a new algorithm.
The api help suggests creating an empty pipeline. The tutorial suggests the same, but the template jumps right into creating the pipeline with code.
The api help uses .add
# Register outputs.
pipe.add(sma_10, 'sma_10')
pipe.add(sma_30, 'sma_30')
...whereas the template and tutorial do not make mention of this step.
The api uses '.set_screen' whereas it looks like the tutorial and template screen the data while creating the pipe ex. pipe = pipeline(screens and such)
What is the most up to date way to use pipeline? and which is up-to-date for learning the api help, or the tutorial?
Thank you,