I was trying to code a Strategy in NT 7 where I only have one order until it is stopped or profit realized don't place any other orders. I thought having the Entires per direction to 1 and Entry Handling to All Entries would take care of this issue. However, this is not the case. Attached please find my strategy. It is placing multiple orders even if the Strategy order is open. Can anyone suggest a solution please. Please Help...I have calculate on Bar close as False for this Strategy but I still only want to execute one time until either the profit or loss is realized.
I thought the code
if (Position.MarketPosition == MarketPosition.Flat)
{EnterLong();}
}
might be causing an issue so I removed it and tried without it but it's the same results.

Comment