| Look up assets | context.symbol, context.sid, context.future_symbol, context.symbols_universe |
| Read current data | await data.current(...) |
| Read trailing windows | await data.history(...) |
| Place orders | context.order, context.order_target, context.order_target_percent, context.order_percent, context.order_target_value |
| Inspect orders | context.get_open_orders, context.get_order, context.cancel_order |
| Inspect portfolio | context.portfolio, context.account, portfolio helper methods |
| Record metrics | context.record(...) |
| Schedule callbacks | context.schedule_function(...), date_rules, time_rules |
| Configure controls | context.set_long_only, context.set_max_leverage, context.set_max_position_size, context.set_max_order_size, context.set_max_order_count |
| Use pipelines | context.attach_pipeline, context.pipeline_output |
| Migrate old Zipline code | Migrating from Classic Zipline |