Hello,

I am new to Quantconnect. I wanted to place multiple limit orders intraday every 4 hour. 

def OnData(self, data):
        if self.Time.hour % 4 != 0: return

If I placed a limit order, is the system will check each minute bar (I will add minutes data in Universe) to trade or only trade every 4 hours?

 

Author