Return a list of all the TradingAlgorithm API methods.
(cls)
| 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. |
no outgoing calls