MCPcopy Create free account
hub / github.com/quantopian/zipline / all_api_methods

Method all_api_methods

zipline/algorithm.py:2409–2416  ·  view source on GitHub ↗

Return a list of all the TradingAlgorithm API methods.

(cls)

Source from the content-addressed store, hash-verified

2407
2408 @classmethod
2409 def all_api_methods(cls):
2410 """
2411 Return a list of all the TradingAlgorithm API methods.
2412 """
2413 return [
2414 fn for fn in itervalues(vars(cls))
2415 if getattr(fn, 'is_api_method', False)
2416 ]
2417
2418
2419# Map from calendar name to default domain for that calendar.

Callers 2

mainFunction · 0.80

Calls

no outgoing calls

Tested by 1