Would the following code be the best way to do that:
if (Performance.RealtimeTrades.TradesPerformance.Gros sProfit +
Performance.RealtimeTrades.TradesPerformance.Gross Loss
< -250 )
{
//Disable strategy if exceeded $250
Disable();
Print(Time[0] + "EXIT Strategy exceeded target loss of $250 ") ;
}

Comment