117738_1605713448.jpg

117738_1605713623.jpg

Above is an example of two orders,

My orders look like this:

self.LimitOrder(self.ticker, -self.orderQuantity, (1 + self.targetPercent) * self.Securities[self.ticker].Close)self.StopMarketOrder(self.ticker, -self.orderQuantity, (1 - self.targetPercent) * self.Securities[self.ticker].Close)

I am confused why when using these functions they have such a long delay between execution. Is there a class in charge of the order execution that is not using minute resolution or has a configuration that is causing this? I cannot seem to find it in documentation. I am using minute resolution by the way.