privatevoid BuyProfit()
{
if (Position.MarketPosition == MarketPosition.Long)
{
ExitLongLimit(Position.AvgPrice + Target * TickSize, "Buy1_Profit", "Buy1");
}
}
What would be the best way to Cancel and Replace this order with a BreakEven if conditions became unfavorable?
Thanks

Comment