MCPcopy Index your code
hub / github.com/quantopian/zipline / initialize

Method initialize

zipline/algorithm.py:430–436  ·  view source on GitHub ↗

Call self._initialize with `self` made available to Zipline API functions.

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

428 self.engine = ExplodingPipelineEngine()
429
430 def initialize(self, *args, **kwargs):
431 """
432 Call self._initialize with `self` made available to Zipline API
433 functions.
434 """
435 with ZiplineAPI(self):
436 self._initialize(self, *args, **kwargs)
437
438 def before_trading_start(self, data):
439 self.compute_eager_pipelines()

Callers 1

_create_generatorMethod · 0.95

Calls 1

ZiplineAPIClass · 0.90

Tested by

no test coverage detected