| | |
| | | } |
| | | |
| | | public String getOpeningFeeAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, openingFeeAmount); |
| | | return openingFeeAmount == null ? "" : openingFeeAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | |
| | | public String getBondAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, bondAmount); |
| | | return bondAmount == null ? "" : bondAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | |
| | | public String getHoldAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, holdAmount); |
| | | return holdAmount == null ? "" : holdAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | |
| | | public String getForceClosingPrice() { |