def on_order_event(self, order_event: OrderEvent) :
    if order_event.status == OrderStatus.FILLED :
        tag = order_event.ticket.tag

        if not tag :
            quantity = order_event.fill_quantity
            symbol = order_event.symbol.value
            self.live_logger(f"on_order_event: no tag for order {quantity} x {symbol}")

        else :
            self.strategy_positions[tag] += order_event.fill_quantity

My on_order_event handler is throwing this error:

Runtime Error: Trying to retrieve an element from a collection using a key that does not exist in that collection throws a KeyError exception. To prevent the exception, ensure that the gld_friday - Warning: No quote information available at 12/02/2011 15:58:00 America/New_York, order filled using TradeBar data key exist in the collection and/or that collection is not empty. at on_order_event self.strategy_positions[tag] += order_event.fill_quantity

Normally, the ticket.tag contains a key of self.strategy_positions but on_order_event is overwriting this tag if no quote information is available.

Can this behavior be deactivated somehow?