Multi Assets Parameters

The multi assets parameters endpoint returns information on all multi assets indexes parameters.

You can use this endpoint to retrieve information on your index. You can use its internal API symbol while querying to filter by symbol. If you don't pass any symbol, you receive information on all indexes Vinter calculates.

Example URL

Response Fields

FieldTypeDescription

symbol

string

The index symbol

min_volume

number

Minimum daily average volume at review date. The period length is specified in the volume_days field.

min_market_cap

number

Minimum average market cap at review date. The period length is specified in the market_cap_days field.

volume_days

integer

Days used to compute the average volume

market_cap_days

integer

Days used to compute the average market cap

price_days

integer

Minimum amount of price data points

ranking_window

integer

Number of days used for the market cap based on ranking of constituents

constituent_number

integer

Number of constituents

max_rank

integer

Max rank of constituents

min_rank

integer

Min rank of constituents

cap

number

Max weight of constituents

floor

number

Min weight of constituents

rebalance_frequency

string

Rebalance frequency of the index

business_days_offsets

integer

Number of days between Review date and Rebalance date

launch_date

string

Date representing the Index launch date

GET https://vinterapi.com/api/v3/multi_assets_parameters/

Query Parameters

NameTypeDescription

symbol

String

Filter by symbol

Sample
{
  "result": "success",
  "message": "Success",
  "data": [
    {
      "symbol": "vntr-smc-10-d",
      "min_volume": 20000000.0,
      "min_market_cap": 500000000.0,
      "volume_days": 1,
      "market_cap_days": 1,
      "price_days": 90,
      "ranking_window": 1,
      "constituent_number": 10,
      "max_rank": 30,
      "min_rank": 21,
      "cap": 1.0,
      "floor": 0.0,
      "rebalance_frequency": "quarterly",
      "business_days_offsets": 5,
      "launch_date": "2023-07-05"
    },
    {
      "symbol": "vntr-mmc-10-d",
      "min_volume": 20000000.0,
      "min_market_cap": 500000000.0,
      "volume_days": 1,
      "market_cap_days": 1,
      "price_days": 90,
      "ranking_window": 1,
      "constituent_number": 10,
      "max_rank": 20,
      "min_rank": 11,
      "cap": 1.0,
      "floor": 0.0,
      "rebalance_frequency": "quarterly",
      "business_days_offsets": 5,
      "launch_date": "2023-07-05"
    },
  ],
  "params": {
    
  }
}

Last updated