if (order.Action==Action.Buy &&
order.OrderState==OrderState.Filled
)
{
SetStopLoss("long", CalculationMode.Ticks, initialstop, false);
}
when there is a long trade the position gets immediatly terminated, and NT reports in the execution list that a stop was rejected (the stop price NT tried to place was the exact entry price of the last long trade which was higher than todays entry price)
so would i have to place a stoploss order properly?

Comment