Securities lending

Fully Paid Securities Lending (FPSL) is a practice in which DriveWealth can lend customers’ securities to other financial institutions. This generates interest revenue which is typically shared with the customer and the partner firm.

🚧

Associated risks

Securities lending activities increase risks for customers including loss of SIPC protection. Consider these risks before enabling access to this feature.

Only customers holding a Cash or LPMA Account are eligible to participate in FPSL. Review Enabling leverage to learn more about the account types.

Each customer must individually opt in to FPSL, either at account opening, or later. This can be done by first adding a unique digital document to their User, indicating their acceptance of terms:

PATCH /back-office/users/{userID}
{
     "documents" : [
        {
            "type": "FPSL_DISCLOSURE",
            "data": {
                "fpslAgreement": true
            }
        }
     ]
}

Then, an Account can be opted in. Each Account for a User can individually choose to participate or not:

PATCH /back-office/accounts/{accountID}
{
        "fpslEnrolled": true
}

An Account can be opted-out at any time by reversing the above field.

Receiving loan interest

DriveWealth automatically monitors opted-in Accounts and their Positions. When possible, the assets will be loaned to other financial institutions, based on demand and interest rates. The customer can always sell their assets, even if they are on loan.

A unique type of Transaction will be posted to an Account each month for the interest it received. There may be months where no interest is generated, and no Transaction will be created.

{
    "id": "event_b598b88a-b225-4652-b833-ae31ace2e724",
    "type": "transactions.created",
    "timestamp": "2022-07-26T04:11:54.330847595Z",
    "payload": {
        "accountID": "81151531-63ec...",
        "accountNo": "ABCD000025",
        "userID": "81151531-63ec...",
        "transaction": {
            "accountAmount": 5,
            "accountBalance": 5,
            "comment": "FullyPaid Securities Lending Rebate 06/2022",
            "finTranID": "JG.dd3530f2-cefb-4350-a828-7dfff776c69d",
            "finTranTypeID": "SLIP",
		...
        }
    }
}

Other effects during a loan

Although a customer won’t see in real-time what positions are on loan, they will receive an additional page in their Month-end Statements Month-end Statement with details like:

  • The date in which the positions were out on loan
  • How much of their positions were on loan
  • The accrued rebate for that date
  • The collateral associated with that position

Additionally, while positions are loaned, customers do not receive dividends directly from the issuer. Instead, the borrowing party receives those dividends, then repays them. In effect, this means a customer with positions on loan receives a Manufactured Dividend, which looks very similar to a regular dividend when posted as a Transaction:

{
  "id": "event_a1acdf71-17d2-4e38-81ce-871a86374b40",
  "type": "transactions.created",
  "timestamp": "2022-04-25T19:25:14.711707573Z",
  "payload": {
    "accountID": "8c7bebbf-25d1...",
    "accountNo": "DWEF000110",
    "userID": "b25f0d36-b4e4...",
    "transaction": {
      "accountAmount": 10.00,
      "accountBalance": 3480.27,
      "comment": "F Manufactured Dividend, $0.1000/share",
      "finTranID": "JG.1cd7606a-7d57...",
      "wlpFinTranTypeID": "e8ff5103-ad40...",
      "finTranTypeID": "DIVM",
      "instrument": {
        "id": "a524e79a-aaac-42c1-acd7-a1a0f8e11cab",
        "symbol": "F",
        "name": "Ford Motor Co."
      },
      "dividend": {
        "type": "CASH",
        "amountPerShare": 0.1000,
        "taxCode": "NON_TAXABLE"
      },
      ...
    }
  }
}

The primary difference between a Manufactured Dividend and a regular dividend is a change in tax treatment in some regions.