Code is below:
// Set 2
if ((Position.MarketPosition == MarketPosition.Long)
&& (Close[0] >= (Position.AveragePrice + (5 * TickSize)) ))
{
MoveToBE = Position.AveragePrice;
ExitLongStopMarket(Convert.ToInt32(DefaultQuantity ), MoveToBE, "", "")
Edit: Figured it out. Stops and Targets tab can not have anything in them in order for the breakeven condition to work. My apologies for the post.

Comment