2.3.2 SIPAMETRICS - INFRA_EQUITY_COMPARABLE
Description: Returns the composite mean and median value of the requested metric based on the TICCS and FACTORS profile, along with the corresponding datum count and company count.
Parameters
metric: (string, required)
The metric for which the comparable has to be evaluated.
Acceptable values include:"ev2ebitda", "irr", "p2b", "p2sales", "premia", "wacc", "revenue_growth".
currency: (string, optional)
The currency of monetary factor inputs such as size.
Acceptable values include:'USD', 'EUR', 'GBP'.
age_in_months: (int, optional)
The age of the company in months. The comparable computation will keep companies within 6 months of this value. If this parameter is set,end_date
andwindow_in_years
will be ignored.end_date: (date, optional)
The maximum date of the comparable dataset.window_in_years: (int, optional)
The window in years of the comparable dataset. The minimum date of the dataset is calculated asend_date - window_in_years
.industrial_activities: (array of strings, optional)
List of industrial activity TICCS codes.
Acceptable values include: "IC10", "IC20", "IC30", etc.business_risk: (string, optional)
Business risk TICCS code.
Acceptable values include: "BR1", "BR2", "BR3".corporate_structure: (string, optional)
Corporate structure TICCS code.
Acceptable values include: "CS1", "CS2".countries: (array of strings, optional)
List of country ISO codes. Values can be obtained by calling countries.size: (string, optional)
Total assets or size of the company. Represented either as an absolute value in millions of the specified currency (e.g., ‘USD', 'EUR') or as a quintile value.
Acceptable value in millions: Enter any numerical value. eg. 5 represents 5 million
Acceptable quintile values include: "Q1", "Q2", "Q3", "Q4", "Q5".leverage: (string, optional)
Total senior liabilities over total assets. Represented either as a percentage (e.g., "50%") or as a quintile value.
Acceptable percentage values: range 1 to 100 only.
Acceptable quintile values include: "Q1", "Q2", "Q3", "Q4", "Q5".profitability: (string, optional)
Return on assets or profitability metric. Represented either as a percentage (e.g., "15%") or as a quintile value.
Acceptable percentage values: range 1 to 100 only.
Acceptable quintile values include: "Q1", "Q2", "Q3", "Q4", "Q5".investment: (string, optional)
Capital expenditures over total assets. Represented either as a percentage (e.g., "10%") or as a quintile value.
Acceptable percentage values: range 1 to 100 only.
Acceptable quintile values include: "Q1", "Q2", "Q3", "Q4", "Q5".time_to_maturity: (string, optional)
Years until maturity. Represented as either a numerical value (e.g., "10 years") or as a bucket.
Acceptable numeric values: Enter any numerical value.
Acceptable bucket values:"T1"
: 0-5"T2"
: 5-10"T3"
: 10-15"T4"
: 15-20"T5"
: 20+
Example 1: Quintile
response = await session.infra_equity_comparable(
metric="ev2ebitda",
currency="",
age_in_months=None,
end_date=date(2023, 7, 31),
window_in_years=2,
industrial_activities=["IC10"],
business_risk="BR1",
corporate_structure="CS1",
countries=["AUS", "NZL"],
size="Q1",
leverage="Q1",
profitability="Q1",
investment="Q1",
time_to_maturity="T2",
)
Example 2: Absolute value
response = await session.infra_equity_comparable(
metric="ev2ebitda",
currency="",
age_in_months=None,
end_date=date(2023, 7, 31),
window_in_years=2,
industrial_activities=None,
business_risk=None,
corporate_structure=None,
countries=None,
size="50",
leverage="54",
profitability="0.2",
investment="23",
time_to_maturity="7",
)