| | |
| | | } |
| | | |
| | | public String getOpeningFeeAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, openingFeeAmount); |
| | | return openingFeeAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | |
| | | public String getForceClosingPrice() { |
| | |
| | | } |
| | | |
| | | public String getClosingFeeAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, closingFeeAmount); |
| | | return closingFeeAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | |
| | | public String getBondAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, bondAmount); |
| | | return bondAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | |
| | | public String getRewardAmount() { |
| | | return CommonUtils.amountDotFormat(this.symbol, rewardAmount); |
| | | return rewardAmount.setScale(2, BigDecimal.ROUND_DOWN).toPlainString(); |
| | | } |
| | | } |