Hello,

I am looking for a way to set adaptive algo (for interactive brokers) on the orders placed from my QC algorithm and it is not clear to me as to how I should go about doing this.

Help would be appreciated. My language of choice is python.
 

I am currently doing the following in my QCAlgorithm and algorithm_id and algorithm_params are apparently not valid

ibkr_props = InteractiveBrokersOrderProperties()

ibkr_props.exchange = Exchange.SMART

ibkr_props.time_in_force = TimeInForce.DAY

ibkr_props.outside_regular_trading_hours = False

ibkr_props.algorithm_id = "Adaptive"

ibkr_props.algorithm_params = { "adaptivePriority": "Normal" }

self.default_order_properties = ibkr_props