I will try it next week in Live. This week I achieved already the weekly profit.
I think I will change the code as following:
else if (State == State.Configure)
{
if(UseTrailStop)
SetTrailStop(CalculationMode.Ticks, StopLossValue);
}
Currently I use the trailing like this:
else if (State == State.Configure)
{
if(UseTrailStop)
SetTrailStop(@"ShortA", CalculationMode.Ticks, StopLoss, false);
}
///Reset Trailing , SHORTS
if (Position.MarketPosition == MarketPosition.Flat)
{
if(UseTrailStop)
SetTrailStop(@"ShortA", CalculationMode.Ticks, StopLoss, false);
}
Best Regards
Bernard

As I said the strategy only send annoying warnings when the strategy is trailing with the standard NT trailing.
Comment