Hi,

I want to check the ongoing and fulfilled order stop limit value, how can I get this information?

For example, I put a stop-limit-buy order before, now not matter it is open or fulfilled already, Can I use below syntax to get the stop limit price? It seems I can only get Type/LimitPrice etc, but no stop limit price?

for order in self.Transactions.GetOrders(None): # self.Debug(dir(order)) self.Debug((order.CreatedTime)) self.Debug((order.Symbol)) self.Debug((order.Type)) self.Debug((order.LimitPrice)) self.Debug((order.Id)) self.Debug((order.Price)) self.Debug((order.Tag)) self.Debug((order.Value))Thanks,henry