In trying to minimize slippage I am trying to implement a strategy using limit orders. The problem is when placing a limit order my order is placed on the order queue and is not guaranteed to get filled.
To get around that I would like to be able to place an order that becomes a market order only if the ask/bid is at a price I specify. I realize that is does not quarantees my price but it will get me in very close rather than not at all.
Is it possible to do this in a NT strategy running on 5 minute charts?
Also I notice that strategies seem to be able to execute only one order per bar.
For example the code:
ExitShort("Short"); // exit short position at market
EnterLongLimit(Close[0],"Long"); // enter long position at limit price
will execute the short exit on the next bar and the limit long on the bar after that. I would rather have both orders executed on the same bar.
Thanks

Comment