Matthew Greenslet![]() Idol ![]() ![]() ![]() ![]() Posts: 2077 Joined: 2/27/2006 ![]() | Batch Submit should only be usable with EOD Daily Trader, not in interval mode. It is selected in the Daily mode settings but it is bleeding over into the interval mode. To correct this on line 48 of the UserInterface scipt you will see the hookup for the BatchSubmit time. It reads If UseBatchSubmit Then OmniPilot.OnTime(BatchSubmitTime, AddressOf MySubmitOrders) Change this line to the following. If Not IntervalTrader And UseBatchSubmit Then OmniPilot.OnTime(BatchSubmitTime, AddressOf MySubmitOrders) I will ensure these changes make it into the next pre-release as well. |