On hourly chart, I implemented a below breakout channel using limit and stop orders:
<<
if (Close[0] < upEntryTarget)
EnterLongStop((int) Math.Round(tradeAUM), upEntryTarget, "LS");
if (Close[0] > upEntryTarget)
EnterLongLimit((int) Math.Round(tradeAUM), upEntryTarget, "LL");
>>
Looking at some trades:
- Case 1 is OK.
- Case 2 works if price plunged to the limit order order (red line) and then rebounds to the profit limit (orange line). As this time pattern is not included (visible) in the hourly bar, I assume NT must run the simulation using higher frequency data ?
Thank you very much,
Best
Nicolas

Comment