I have this condition to change stoploss :
if (Position.MarketPosition == MarketPosition.Long
&& enableShort == false)
{
if (stopOrderLong != null && stopOrderLong.StopPrice != (Position.AvgPrice - (stop * TickSize)))
{
ChangeOrder(stopOrderLong, 1, 0, (Position.AvgPrice - (stop * TickSize)));
}
}
Thanks in advance
Giuseppe

Comment