Buying Alternative Asset Funds

Trading in alternative asset funds

Partners can use the DriveWealth platform to enable their customers to search, trade, and settle alternative asset funds. These funds behave differently from traditional mutual funds and equities, and there are specific considerations for investment.

Searching for alternative funds

Partners can use the same fund search endpoints available for all mutual funds. Once results are returned, filter on the alternative fund attribute to determine which funds are categorized as alternatives. This allows you to clearly indicate to customers which funds fall into this category.

Identifying alternative funds

When retrieving available funds through the API, each fund object includes an asset class and sub-asset class attribute that indicates whether the fund is categorized as an alternative asset fund. You can see from the example below that mutualFundData.AssetClass is Alternatives and mutualFundData.subAssetClass includes the fund’s specific alternatives category with an AL prefix.

The subscriptionNoticeDays and redemptionNoticeDaysprovide the number of days of notice that an investor must provide to the fund for an order to be accepted for that Fund’s pricing cycle. So if an order for a weekly-priced Alternative Mutual Fund is placed and received by DriveWealth after the Fund’s notice days, the transaction will not be booked and confirmed until the next pricing period at the next pricing period’s NAV

{
    "mutualFundData": {
        "loadType": "NO_LOAD",
        "subAssetClass": "AL - Private Debt",
        "shareClass": "PB",
        "shortTermRedemptionRules": true,
        "subscriptionNoticeDays": 6,
        "redemptionNoticeDays": 30,
        "assetClass": "Alternatives",
        "subscriptionCommission": 0,
        "fundType": "OFFSHORE_US_DOLLAR",
        "managementCommission": 1.5,
        "subscriptionSettlementPeriodDays": 2,
        "maximumPurchaseAmount": 99999999.99,
        "purchaseCutOff": "13:30Z",
    }
}

Pricing Considerations

Unlike equities and traditional mutual funds, alternative funds are not priced daily. Instead, pricing timelines vary and are defined on a per-fund basis. Alternative funds typically are more illiquid and are priced at a monthly to an annual frequency.

Partners should surface this information to customers so they understand that their orders will not be filled immediately. The proceeds will be blocked till the pricing date and the positions will be made available to the account only after the fund is priced.

For redemptions, the settlement period can be around a month or more. These are defined at a fund level. This means that the funds will be made available almost a month after it is priced.

Order execution and pricing/settlement timing

When a customer places an order in an alternative asset fund:

  1. Depending on the type of fund, customers can place orders based on the fund’s most recent published valuation
  2. Once a customer submits an order, that order will be queued until the fund releases its NAV (e.g., the first of the following month)
  3. Once the NAV and price is published, the order is executed in a similar fashion to other mutual fund orders. Depending upon the pricing frequency, this can vary from a month to a year.
  4. For a redemption, the settlement periods can be longer than a month. This means that the proceeds will be made available almost a month after the fund was priced. Each fund will include the subscriptionSettlementPeriodDays parameter that indicates settlement timing.

It is important to distinguish between order execution and settlement. While execution confirms the customer’s order, settlement determines when the customer’s position and funds are fully available. Timing between settlement and execution will differ depending on the fund’s settlement period.