Skip to content

Commit

Permalink
Add ExecutionEngine collection typing
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdsellers committed Dec 10, 2023
1 parent ebdb312 commit 37c328e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nautilus_trader/execution/engine.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ cdef class ExecutionEngine(Component):
cdef readonly Cache _cache
cdef readonly ExecutionClient _default_client
cdef readonly PositionIdGenerator _pos_id_generator
cdef readonly dict _clients
cdef readonly dict _routing_map
cdef readonly dict _oms_overrides
cdef readonly dict _external_order_claims
cdef readonly dict[ClientId, ExecutionClient] _clients
cdef readonly dict[Venue, ExecutionClient] _routing_map
cdef readonly dict[StrategyId, OmsType] _oms_overrides
cdef readonly dict[InstrumentId, StrategyId] _external_order_claims

cdef readonly bint debug
"""If debug mode is active (will provide extra debug logging).\n\n:returns: `bool`"""
Expand Down

0 comments on commit 37c328e

Please sign in to comment.