PerformanceDto

data class PerformanceDto(var amountYtd: BigDecimal? = null, var percentTimeWeightedYtd: BigDecimal? = null, var percentMoneyWeightedYtd: BigDecimal? = null, var percentReturn: BigDecimal? = null, var percentReturnCumulated: BigDecimal? = null)

Describes the performance of the portfolio.

Parameters

amountYtd

Performance amount in the portfolio's reference currency for the current year (YTD).

percentTimeWeightedYtd

Time-weighted performance in percent (%) for the current year (YTD).

percentMoneyWeightedYtd

Money-weighted performance in percent (%) for the current year (YTD).

percentReturn

Overall return in percent (%).

percentReturnCumulated

Cumulated return in percent (%).

Constructors

Link copied to clipboard
constructor(amountYtd: BigDecimal? = null, percentTimeWeightedYtd: BigDecimal? = null, percentMoneyWeightedYtd: BigDecimal? = null, percentReturn: BigDecimal? = null, percentReturnCumulated: BigDecimal? = null)

Properties

Link copied to clipboard
Link copied to clipboard