My situation is that my primary timeframe is a non-time based one (like a volume or tick based chart). My secondary timeframe is the 1 min timeframe which I use as a heartbeat timeframe.
Sometimes multiple 1 min bars may come thru before the primary bar comes or vice versa due to nature of the primary bar. What I want to do is have my profit stop exit no matter which bar crosses the profit stop first. I searched the forum but didn't find any threads asking about submitting multiple ExitLongLimit orders in 2 different timeframe simultaneously (using same symbol). I was considering something like this where I invoke the same profit limit order but with the 2 timeframes:
profitStopOrderPrimary = ExitLongLimit(0, true, execution.Order.Filled, profitTargetPrice, "Profit Stop", ""); profitStopOrderSecondary = ExitLongLimit(1, true, execution.Order.Filled, profitTargetPrice, "Profit Stop", "");
Are there any negatives with doing the above or any gotchas I should be wary about? Currently writing this on NT 6.5 but will moving this over to beta NT 7 within a month.
JD

Comment