Fix deviation in open portfolio offers & history.

This commit is contained in:
jmacxx 2023-10-23 14:26:01 -05:00
parent 175a0946e5
commit 7f4bde8669
No known key found for this signature in database
GPG Key ID: 155297BABFE94A1B
3 changed files with 15 additions and 8 deletions

View File

@ -26,6 +26,7 @@ import bisq.core.offer.OpenOffer;
import bisq.core.trade.model.Tradable;
import bisq.core.trade.model.bisq_v1.Trade;
import bisq.core.util.FormattingUtils;
import bisq.core.util.PriceUtil;
import bisq.core.util.coin.BsqFormatter;
import bisq.core.util.coin.CoinFormatter;
@ -49,7 +50,6 @@ import static bisq.core.trade.model.bisq_v1.Trade.DisputeState.DISPUTE_CLOSED;
import static bisq.core.trade.model.bisq_v1.Trade.DisputeState.MEDIATION_CLOSED;
import static bisq.core.trade.model.bisq_v1.Trade.DisputeState.REFUND_REQUEST_CLOSED;
import static bisq.core.util.FormattingUtils.BTC_FORMATTER_KEY;
import static bisq.core.util.FormattingUtils.formatPercentagePrice;
import static bisq.core.util.FormattingUtils.formatToPercentWithSymbol;
import static bisq.core.util.VolumeUtil.formatVolume;
import static bisq.core.util.VolumeUtil.formatVolumeWithCode;
@ -142,11 +142,9 @@ public class ClosedTradableFormatter {
}
public String getPriceDeviationAsString(Tradable tradable) {
if (tradable.getOffer().isUseMarketBasedPrice()) {
return formatPercentagePrice(tradable.getOffer().getMarketPriceMargin());
} else {
return Res.get("shared.na");
}
return PriceUtil.offerPercentageToDeviation(tradable.getOffer())
.map(FormattingUtils::formatPercentagePrice)
.orElse(Res.get("shared.na"));
}
public String getVolumeAsString(Tradable tradable, boolean appendCode) {

View File

@ -129,6 +129,15 @@ public class PriceUtil {
return bsq30DayAveragePrice;
}
public static Optional<Double> offerPercentageToDeviation(Offer offer) {
if (offer.isUseMarketBasedPrice()) {
return Optional.of(offer.getDirection() == OfferDirection.SELL ?
offer.getMarketPriceMargin() : -offer.getMarketPriceMargin());
} else {
return Optional.empty();
}
}
public boolean hasMarketPrice(Offer offer) {
String currencyCode = offer.getCurrencyCode();
checkNotNull(priceFeedService, "priceFeed must not be null");

View File

@ -85,12 +85,12 @@ class OpenOfferListItem implements FilterableListItem {
public Double getPriceDeviationAsDouble() {
Offer offer = getOffer();
return priceUtil.getMarketBasedPrice(offer, offer.getMirroredDirection()).orElse(0d);
return PriceUtil.offerPercentageToDeviation(offer).orElse(0d);
}
public String getPriceDeviationAsString() {
Offer offer = getOffer();
return priceUtil.getMarketBasedPrice(offer, offer.getMirroredDirection())
return PriceUtil.offerPercentageToDeviation(offer)
.map(FormattingUtils::formatPercentagePrice)
.orElse("");
}