From what I have learned by researching in the Internet, there are several methods to make the order fill faster. Having a better network infrastructure to reduce latency, using a direct market broker, etc.
One effective way to make the order faster is to bid at a lower price. Now my question is how can I bid in QC with a lower price? is it enough to use a limit order with a lower price?
decimal price = bar.close;
price -= 0.01;
var buyTicket = LimitOrder(symbol, shares, price, tag: "Buy Limit at $" + price);
Thanks