MCPcopy
hub / github.com/quantopian/zipline / get_generator

Method get_generator

zipline/algorithm.py:613–619  ·  view source on GitHub ↗

Override this method to add new logic to the construction of the generator. Overrides can use the _create_generator method to get a standard construction generator.

(self)

Source from the content-addressed store, hash-verified

611 self.pipeline_output(name)
612
613 def get_generator(self):
614 """
615 Override this method to add new logic to the construction
616 of the generator. Overrides can use the _create_generator
617 method to get a standard construction generator.
618 """
619 return self._create_generator(self.sim_params)
620
621 def run(self, data_portal=None):
622 """Run the algorithm.

Calls 1

_create_generatorMethod · 0.95