Showing disclosures
In order to open a brokerage account with DriveWealth a customer must agree to pre-determined disclaimers and disclosures. The required disclaimers and disclosures change based upon the type of account a customer is opening, where the customer is located, and a few other variables that are listed below.
DriveWealth offers a page that can be hyperlinked in a Partners platform that includes all necessary items. This embedded disclosures page can be utilized along with path parameters that help preload the required agreements.
Standard language presented
Fundamentally, a customer must be prompted on the platform that they have read and agreed to the agreements provided to them prior to continuing through the onboarding process. Agreement can be identified by having the customer digitally sign their full legal name, or through a checkbox. Through either path, typical language includes the following pattern:
β "By checking the box below you acknowledge that you have read and agree to all disclaimers and disclosures presented
Prior to exposing any disclosure language, review all material with legal counsel to ensure it complies with local regulations.
List of required disclosures
Sets forth the terms and conditions under which DriveWealth will maintain a Customerβs Account and receive orders for the purchase and sale of securities and other assets
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Same as Customer Account Agreement (Margin) except the purchasing of securities is facilitated by borrowing money from DriveWealth for part of your transactions
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Same as Customer Account Agreement (Margin) except the purchasing of securities is facilitated by borrowing money from DriveWealth for part of your transactions
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
By visiting and using DriveWealth property you agree to all DriveWealth Terms
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Automatically invests or sweeps free credit balances in your DriveWealth brokerage accounts into a FDIC Bank Account.
β only required if entering into bank sweep program.
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Automatically invests or sweeps free credit balances in your DriveWealth brokerage accounts into a Money Market Fund.
β only required if entering into money market fund
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Rule 14b1(c)
A customerβs name, address and relevant investment holdings are required to be disclosed by DriveWealth to Issuers whose investment you own. A customer can opt out of providing this information to Issuers.
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Market Data Agreements
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Limited Power of Attorney and Fee Withdrawal Agreement
The Partner directs DriveWealth to accept the Advisorβs trading (cash and securities) direction and Advisorβs fee removal from the Customerβs account
β only required if accountManagementType includes RIA_MANAGED
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
EU/GDPR/CCPA
Privacy Policy and Data Sharing β Describes how DriveWealth needs to collect, use, disclose, transfer, store, retain or otherwise process customer personal data in order to service the brokerage account.
Cash | LPMA | Margin | Custodial | RIA | Retirement |
---|---|---|---|---|---|
β | β | β | β | β | β |
Passing acceptance through the API
After a customer has ackwnoledged they've read and accepted all the conveyed agreements, the Disclosures object to create the customers user should mark all the required fields as being true.
β There is a single exception to this rule. findersFee
should always be marked as false
The API request additionally requires a digital signature be passed in. Simply put, this property take the string value of a customers full legal name as exampled below:
{
"type": "DISCLOSURES",
"data": {
"termsOfUse": true,
"customerAgreement": true,
"marketDataAgreement": true,
"rule14b": true,
"findersFee": false,
"privacyPolicy": true,
"dataSharing": true,
"signedBy": "Calvin Broadus Jr."
}
}
Updated about 1 year ago