If(LongEntryCriteria ==true)
{
EnterLong(1,"LMOMO1");
EnterLong(1,"LMOMO1T2");
SetStopLoss(CalculationMode.Price, stop);
SetProfitTarget("LMOMO1", CalculationMode.Ticks, t1);
SetProfitTarget("LMOMO1T2", CalculationMode.Ticks, t1*2);
}
This worked fine when I was using a single timeframe but some reason it is not taking both entries on this multi-time frame version. Is this a limitation of a multi time frame strategy?? Or do I just need to use the Iorder method instead?
Please note that I am using entries per direction of 2 - so that is not the issue.
Thanks in advance.
----------------------
Hard coding the entries per direction seems to have resolved this issue.

Comment