GuidesRecipesAPI Reference
Log In
Guides

Portfolio summary

Portfolio summary provides the key statistics of a fund vehicle's portfolio as of a selected date

API Reference : /api/summary/portfolio/{scopeId}/{fundVehicleId}/{asOfDate}
[Get portfolio summary] (https://quantiumfund.readme.io/reference#portfoliosummary)

Definition

Portfolio summary consists of standard fieldsets of output calculation from Quantium CORE.

Output is fund vehicle specific as of a selected date.

The following is a list of standard fieldsets returned from Quantium API.

OutputDescription
fullyRealizedDealsDeal(s) with current investment cost as zero
partialyRealizedDealsDeal(s) with current investment cost less than total investment cost and greater than zero
unrealizedDealsDeal(s) with current investment cost equal to total investment cost
initialInvestmentDateInitial date that records a new deal transaction of an asset
investingEntityEntity (i.e. fund vehicle or SPV) that makes the deal investment
industryIndustry that the asset operates in
sectorSector that the asset operates in
commitmentReserveAmount(s) that an entity commits to invest in an asset with a deal transaction status as "committed"
currentOwnershipPercentCurrent ownership percentage of a deal by an investing entity
initialInvestmentCostTotal investment cost(s) of a deal
remainingInvestmentCostCurrent investment cost(s) of a deal
dealExpenseInvestment related expense(s) of a deal
dealIncomeInvestment related income(s) (excluding dividends, interest) of a deal
proceedsTotal investment return (i.e. realized gain / (loss) + investment cost) of a deal
fmvFair market value of a deal
totalValueTotal value = proceeds + FMV of a deal
realizedGainLossSum of all realized gain/loss from EQ-Sale, LN-Sale, EQ-Dividend income and LN-Cash interest income of a deal
unrealizedGainLossSum of all unrealized gain/loss of a deal
multipleOfCostTotal value / total investment cost of a deal
grossIrrInternal rate of return using all investment related cash flows and remaining fair market value of a deal as of selected date
committedDealsDeal(s) that an entity commits to invest with a deal transaction status as "committed"
writeOffDealsDeal(s) whose current investment cost is greater than zero but fair market value is equal to zero

Generating portfolio summary output

HTTP MethodGET
Path/api/summary/portfolio/{scopeId}/{fundVehicleId}/{asOfDate}
Request parametersScope ID (string): An ID of the selected scope which can be acquired by the [Scope list API]

fundVehicleId (integer): unique ID of fund vehicle

asOfDate: "YYYY-MM'DD" format
ReferenceAPI Reference : /api/summary/portfolio/{scopeId}/{fundVehicleId}/{asOfDate}

Example

{
  "fullyRealizedDeals": [
    // list of fully realized deal object
  ],
  "partialyRealizedDeals": [
     // list of partially realized deal object
  ],
  "unrealizedDeals": [
    {
      "assetId": 3,
      "dealId": 5,
      "dealName": "0030 - Asset I",
      "dealSerialNumber": 30,
      "initialInvestmentDate": "02-2018",
      "investingEntity": "Fund I - USD",
      "industry": "Chemicals",
      "industryId": 3,
      "sector": null,
      "commitmentReserve": 0,
      "currentOwnershipPercent": 0.2,
      "initialInvestmentCost": 2000000,
      "remainingInvestmentCost": 2000000,
      "dealExpense": 0,
      "dealIncome": 0,
      "proceeds": 0,
      "realized": 0,
      "fmv": 2000000,
      "totalValue": 0,
      "realizedGainLoss": 0,
      "unrealizedGainLoss": 0,
      "multipleOfCost": 1,
      "grossIrr": 0,
         }
  ],
  "committedDeals": [
     // list of committed deal object
  ],
  "writeOffDeals": [
       // list of write off deal object
  ],
}