    if (exchangeRate < icTotal) {
      priceTarget = icTotal;
    }
     return
      (exchangeRate <= (priceTarget - lowerThreshold) &&
        !auction.auctionExists(auction.currentAuctionId())) ||
      exchangeRate >= (priceTarget + upperThreshold);
