← All Insights
FrameworksArchitecture
6 min read

The 7 Pillars of ALF: Why AI Trading Needs a Governance Framework

ALF is built on seven architectural pillars that define how AI-assisted trading should work. Each pillar is enforced in code, not policy — answering the questions regulators, allocators, and operators need answered.

Most conversations about AI in trading focus on one question: how accurate is the model?

It’s the wrong question. Or at least, it’s incomplete. A model that generates alpha but can’t explain why it made a specific recommendation is a liability, not an asset. A model that performs well in backtest but has no governance around how it operates in production is a ticking clock. And a model whose decisions can’t be reconstructed after the fact — for an audit, an investigation, or a post-mortem — isn’t institutional-grade. It’s a prototype.

The missing piece isn’t better models. It’s a governance framework that makes AI-assisted trading decisions auditable, explainable, and controllable by design.

That’s why we built ALF.

What ALF Is — And What It Isn’t

ALF — the Auditable Lifecycle Framework — is not a feature. It’s the condition of operation for our entire platform. It’s the set of architectural constraints that govern every AI-assisted decision from signal generation through execution to post-trade review.

ALF isn’t a compliance checklist. Checklists are retrospective — someone reviews whether the rules were followed after the fact. ALF is preventative — the architecture makes non-compliant operation structurally impossible. You can’t bypass the governance without bypassing the system itself.

Design Principle
ALF is preventative — the architecture makes non-compliant operation structurally impossible.

ALF consists of seven pillars. Each pillar answers a specific question that regulators, allocators, and operators need answered before they can trust an AI-powered trading system.

The Seven Pillars

1. Authority — Who is allowed to cause this action?

Every operation in the platform is scoped to a specific identity with explicit permissions. There are no ambient authorities — no “admin can do anything” backdoors, no shared service accounts that blur accountability. When the AI generates a recommendation, the system records which model produced it. When an operator approves a trade, the system records which operator approved it and under what authority they were acting.

Why It Matters
Regulators don't ask "what happened." They ask "who caused it to happen and were they authorised to do so?"

2. Boundary — What is this allowed to affect?

Every action is constrained to a defined scope. Tenant isolation is enforced at the schema level — not just the application level — meaning data from one fund, strategy, or operator physically cannot leak into another’s decision space. Module containment ensures that a failure in one component doesn’t cascade into unrelated systems.

Boundary enforcement is what prevents the AI from operating outside its sanctioned scope. A model trained on crypto spot data cannot silently influence equity decisions. A strategy approved for conservative position sizing cannot access aggressive parameters. The boundaries are architectural, not procedural.

3. Lifecycle — What stage is this action in?

Every decision has a lifecycle: inception, validation, approval, execution, settlement, review. ALF tracks which stage every action is in and enforces stage-appropriate constraints. A signal that hasn’t passed pre-trade validation cannot reach execution. An executed trade that hasn’t been reconciled cannot be excluded from reporting.

This sounds obvious, but most systems don’t enforce lifecycle stages architecturally. They rely on application logic and hope that every code path respects the intended order. ALF makes lifecycle violations structurally impossible — the system won’t process an action that’s in the wrong stage.

4. Constraint — What limits apply right now?

Before any AI recommendation reaches execution, it passes through a validation gate covering position limits, exposure constraints, concentration thresholds, correlation checks, and risk boundaries. These aren’t advisory warnings — they’re hard stops. If a constraint is violated, the order doesn’t proceed.

The key word is “right now.” Constraints are dynamic. A position limit that was acceptable at market open may not be acceptable after a significant adverse move. ALF evaluates constraints against current state, not static configuration.

5. Evidence — What proof exists?

Every state change in the platform produces an immutable record with cryptographic integrity. We use SHA-256 hashing on every audit trail entry, stored in append-only format that satisfies SEC Rule 17a-4’s traditional WORM requirement for non-rewriteable, non-erasable media (the SEC’s 2022 amendments also permit an audit-trail alternative).

This isn’t logging. Logs are designed for debugging — they’re operational, informal, and often incomplete. Evidence is designed for enforcement — it’s structured, comprehensive, and independently verifiable. An auditor examining ALF’s evidence chain can verify that no record has been altered without needing to trust our systems or our team.

6. Explainability — Can this be explained without interpretation?

When ALF’s AI recommends a trade, the recommendation includes the complete reasoning chain: which models contributed, what signals they generated, how those signals were weighted and fused, what the composite confidence score was, and which pre-trade checks it passed. Every contributing factor is recorded with its numerical value and the data it was derived from.

This is deterministic explainability. You don’t need a data scientist to interpret what the model “probably” considered. You can replay the exact inputs, the exact computation, and arrive at the exact same output. Same inputs, same outputs — every time.

Regulators are increasingly asking firms to explain AI-assisted decisions. “The model said so” is not an acceptable answer. ALF provides the alternative: a reproducible chain of evidence from market data to trading decision.

7. Escalation & Override — How are exceptions handled?

AI systems will encounter situations they weren’t designed for. The question is what happens next. ALF implements a three-tier escalation model:

Tier 1 — Automated response. Circuit breakers that halt trading when predefined thresholds are breached. No human intervention required, no delay.

Tier 2 — Operator review. The human-in-loop layer. The AI presents its recommendation with full reasoning; the operator approves, modifies, or rejects. The operator’s decision and rationale are recorded with the same evidence-grade audit trail as every other action.

Tier 3 — Kill switch. Immediate cessation of all automated activity. One action, system-wide effect, instant.

The escalation model is what makes human-in-loop more than a checkbox. The operator isn’t just rubber-stamping AI decisions — they’re exercising informed judgement with full visibility into the AI’s reasoning, and their judgement is recorded as part of the permanent evidence chain.

Why This Matters Now

The regulatory landscape for AI in financial services is tightening globally. The EU AI Act classifies AI systems used in credit scoring and life and health insurance as high-risk — and while AI-assisted trading doesn’t fall directly under those provisions today, the direction of travel is clear. The SEC has signalled increased scrutiny of AI-assisted trading decisions, charging investment advisers for misleading AI claims and listing AI as an examination priority. Singapore’s MAS has published FEAT Principles (Fairness, Ethics, Accountability, Transparency) governing AI use in financial services.

Firms that deploy AI without a governance framework are accumulating regulatory risk with every trade. The AI performs well until it doesn’t, and when it doesn’t, the first question regulators ask is: “Show us how this decision was made and what controls were in place.”

ALF is our answer to that question. Not a retrospective explanation, but a real-time governance framework that produces the evidence as a byproduct of normal operation.

Key Takeaway
Kill switches stop disasters. Governance prevents them.

Scott Davies is the Chief Architect and Founder of ALF Capital, an AI-powered trading intelligence platform governed by the Auditable Lifecycle Framework.