for Entry I use:
EnterLongStop & EnterShortStop
for Exit I use in Initialize:
SetStopLoss
SetProfitTarget
The main data series is a 6 Tick Range Bars. The issue I have is that I want to back test with Tick data but I cannot use BarsInProgress with SetStopLoss and SetProfitTarget
I know I should be able to use :
ExitLongStop - ExitShortStop
ExitLongLimit - ExitShortLimit
My attempts are giving me errors that shows I am not processing the orders right.
How can I write my own SetStopLoss and SetProfitTarget with BarsInProgress?

Comment