i coded my strategy and i need further clarification for opening orders.
Orders Open @ 1.3140
lotAmount is @ 0.001
this.engine.submitOrder("order1", usedPair, OrderCommand.BUY, lotAmount, 0, 2, 1.3120, 1.3250);
this.engine.submitOrder("order2", usedPair, OrderCommand.BUY, lotAmount, 0, 2, 1.3120, 1.3260);
this.engine.submitOrder("order3", usedPair,OrderCommand.BUY, lotAmount, 0, 2, 1.3120, 1.3270);
do i need to add wait time for each order to process or it is fine that way .