An SEC examiner emails your firm requesting documentation for the "AI-driven" language on your website and the model that powers your robo-advisory allocations. You have 30 days. The examiner wants to know: How does the model decide? Who reviewed it? Can you show that a recommended portfolio was suitable for the client who received it?
If your answer is "the data science team built it and it works well," you have a problem. Let's build the file you should have had from day one.
A deployed asset management model rarely faces just one rule. The same recommendation engine can be scrutinized under three different frameworks at once.
The Marketing Rule (SEC Rule 206(4)-1, in effect since 2021) governs how registered investment advisers advertise. It bans false or misleading statements and requires that any claim be substantiated.
The AI trap: calling your product "AI-powered" or "machine learning optimized" when the model is a simple linear regression, or claiming performance the model has not actually delivered net of fees. If marketing says the AI "outperforms," you must be able to back that with records.
Concrete example: your site says "our AI adapts to market volatility in real time." An examiner asks for the retraining logs and the definition of "real time." If the model retrains monthly, that claim is misleading.
The SEC's own summary is worth bookmarking: SEC Marketing Rule resources.
Suitability means a recommendation must fit the specific client (risk tolerance, time horizon, financial situation). For broker-dealers, Regulation Best Interest (Reg BI) raises the bar: recommendations must be in the client's best interest, not just "suitable."
The AI trap: a model that optimizes for a house metric (fee revenue, fund flows) rather than client outcomes. If your allocation engine systematically steers clients toward higher-fee proprietary funds, you need a documented reason tied to client benefit, not firm economics.
SR 11-7 is Federal Reserve and OCC guidance on model risk management, issued in 2011. Though written for banks, it has become the de facto standard across finance, and asset managers are increasingly held to it. Its core idea: a model is a simplification of reality, so it carries risk, and that risk must be managed across the model's whole life.
SR 11-7 rests on three pillars:
Read the primary source; it is short and readable: SR 11-7 guidance.
Here is what regulators (and, increasingly, sophisticated institutional clients doing due diligence) expect to see.
Every model gets an entry in a central register. At minimum:
If you cannot list your models, you cannot govern them. Many firms discover during an exam that shadow models built in spreadsheets never made the inventory.
Write down what the model assumes and where it breaks. Example: "This mean-variance optimizer assumes returns are normally distributed. It underestimates tail risk during liquidity crises." That single sentence shows an examiner you understand the model's blind spots.
The person who validates must not be the person who built it. Validation covers:
Traditional models were transparent. A linear model tells you each factor's weight. Modern machine learning models (gradient boosting, neural networks) are black boxes: accurate but hard to interpret.
Regulators do not ban black boxes. They demand that you can explain any individual decision. If a client asks "why did the model cut my equity allocation?", "the algorithm decided" is not an acceptable answer.
Suitability lives in the local view. You need to explain the decision for *this* client, on *this* date.
SHAP (SHapley Additive exPlanations) breaks a single prediction into contributions from each input feature, grounded in cooperative game theory. It turns "the model said 40 percent bonds" into "age contributed +8 percent to bonds, stated risk tolerance contributed +15 percent, and short time horizon contributed +12 percent."
import shap
# model = a trained allocation model
# X_client = one client's feature row
explainer = shap.TreeExplainer(model)
shap_values = explainer.shap_values(X_client)
# Produces per-feature contributions you can log and show a client
shap.plots.waterfall(shap_values[0])The output is auditable. Log it with the recommendation. Now when the examiner asks about client 4471, you retrieve the exact feature contributions that drove the advice. That log is your suitability evidence.
An audit trail is a time-stamped, tamper-evident record of what happened and why. For an AI advice engine, capture:
The version point is critical. If you retrain monthly, you may have twelve different models in a year. When a client disputes advice from March, you must reproduce March's model, not December's. Store versioned model artifacts, not just the latest one.
Regulators view fully automated advice with more caution than AI-assisted advice. Documenting where a human adviser reviews and can override the model both reduces risk and strengthens your Reg BIBITechnologies and processes that turn raw data into actionable insights via reporting, dashboards and analysis, so teams can decide based on facts rather than intuition.View full definition → position. Log the overrides too: they reveal where the model and human judgment diverge.
Knowledge check
1. A firm's website claims its AI 'adapts to market volatility in real time,' but the model retrains only on a monthly schedule. Under the SEC Marketing Rule, why is this a problem?
2. What is the core distinction between traditional 'suitability' and Regulation Best Interest (Reg BI)?
3. Why is the response 'the data science team built it and it works well' inadequate when an examiner requests model documentation?
4. Select ALL correct answers. Which situations represent 'AI traps' that could trigger regulatory scrutiny under the frameworks described?
Select all the correct answers.
5. Select ALL correct answers. Which questions should a firm expect to answer when an examiner reviews an 'AI-driven' robo-advisory model?
Select all the correct answers.
Suitability has a fairness dimension. If your client-risk-scoring model was trained on historical data that underserved certain groups, it may systematically recommend worse products to them. This is both a compliance risk and a reputational one.
Test for it. Compare recommendations across client segmentssegmentsDividing a market into distinct groups of customers who share similar needs, characteristics or behaviours, so each group can be served with a tailored approach.View full definition → holding financial profile constant. If two clients with identical finances and goals get materially different advice, you need to know why. Document the test, even if the result is clean. "We tested and found no disparity" is a strong line in an exam.
The theme across all three regulatory lenses is the same: document before you are asked, not after. A reconstructed explanation looks defensive. A contemporaneous log looks like control.
A minimum viable governance package for one deployed model:
1. Inventory entry with materiality tier.
2. Development documentation: purpose, data, assumptions, limitations.
3. Independent validation report.
4. Per-decision explainability logs (SHAP or equivalent).
5. Versioned audit trail linking inputs, outputs, model version, and human review.
6. Bias and fair-treatment test results.
7. Substantiation for every marketing claim about the model.
This is not investment or legal advice; consult your compliance and legal teams on how these frameworks apply to your specific firm and jurisdiction.