I'd like my strategy to place limit orders and then let them sit there for a given amount of time (if not filled instantly) and then cancel them and immediatley place a market order.
something like this:
if(xxx)
{ EnterLongLimit(Enterlongsize,GetCurrentBid(), "1st entry"); "let this order sit here for x amount of time( i'd like it to be seconds or a percentage of the current bar) and then cancel if not filled and then do the following"
}
else
{else(EnterLong();
thanks.

Comment