AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Order Management Advisor

skill-joellewis-finance-skills-order-management-advisor · by JoelLewis

Manage the advisor trade lifecycle from order entry through settlement, covering block trading, allocation, pre-trade compliance, custodian routing, and error correction. Use when the user asks about designing an OMS for an RIA, executing model portfolio changes across many accounts, structuring block trades with fair allocation, configuring pre-trade compliance rules or restricted lists, routing…

No reviews yet
0 installs
3 views
0.0% view→install

Install

$ agentstack add skill-joellewis-finance-skills-order-management-advisor

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-joellewis-finance-skills-order-management-advisor)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Order Management Advisor? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Order Management — Advisor

Core Concepts

Order Management System (OMS) in Advisory Context

The order management system is the operational bridge between investment decisions and trade execution. In an advisory practice, the OMS receives trade instructions generated by the portfolio management system (PMS), validates them against compliance rules, aggregates them into block orders where appropriate, routes them to custodians or brokers for execution, and tracks them through settlement.

Advisory OMS platforms differ materially from institutional OMS platforms. An advisory OMS is optimized for model-driven trading across many small accounts — a single model change may generate hundreds or thousands of individual account-level trades that must be aggregated, compliance-checked, and routed efficiently. An institutional OMS, by contrast, is designed for large orders with complex execution strategies such as algorithmic trading, dark pool access, and multi-venue order splitting.

Core OMS functions in an advisory context include:

  • Order creation: Translating PMS-generated trade proposals into executable orders, including security identification, quantity calculation, and order type selection.
  • Validation: Verifying that each order satisfies pre-trade compliance rules before submission.
  • Aggregation: Combining individual account orders for the same security into block orders to achieve better execution and lower costs.
  • Routing: Transmitting orders to the appropriate custodian or broker based on account-custodian mapping and routing rules.
  • Execution management: Monitoring order status, handling partial fills, and managing order amendments or cancellations.
  • Allocation: Distributing block execution results back to individual accounts at fair and equitable prices and quantities.
  • Confirmation and settlement tracking: Receiving fill confirmations, generating client-level confirmations, and tracking settlement status through T+1 (for equities as of May 2024).

The OMS sits between the PMS (which generates trades) and the custodian (which executes and settles them). Data flows bidirectionally: the PMS sends trade proposals to the OMS, and the OMS sends execution results back to the PMS for portfolio accounting updates.

Common advisory OMS platforms include Orion Trading (integrated with Orion Portfolio Solutions), Tamarac Trading (part of the Envestnet ecosystem), Schwab iRebal (now part of Schwab Advisor Services, widely used by RIAs custodying at Schwab), and Fidelity's trading tools (available to advisors on the Fidelity Institutional platform). Many of these platforms combine OMS and rebalancing functionality, blurring the line between PMS and OMS.

Order Types and Time-in-Force

Standard order types (market, limit, stop, stop-limit) and time-in-force instructions (day, GTC, IOC, FOK) carry their usual meanings; the advisory-specific considerations are below. Two operational notes: custodians typically cap GTC duration at 60 or 90 calendar days, and FOK is rarely used in advisory trading except for block orders where partial fills would create allocation complications.

NAV-sensitive orders (mutual funds):

  • Market-on-close (MOC): For equities and ETFs, an order to execute at the closing price. Used when the advisor wants to match a benchmark that uses closing prices.
  • Limit-on-close (LOC): An order to execute at the close, but only if the closing price is at or better than a specified limit.
  • Mutual fund forward pricing: Mutual fund orders do not execute at a market price during the trading day. Under SEC Rule 22c-1, mutual fund shares are priced at the next calculated net asset value (NAV) after the order is received. Orders placed before the fund's pricing cutoff (typically 4:00 PM Eastern) receive that day's NAV. Orders placed after the cutoff receive the next business day's NAV. This means mutual fund orders are inherently market orders — the advisor cannot specify a price.
  • Mutual fund order types: Purchase, redemption, and exchange (selling shares of one fund and purchasing shares of another within the same fund family, which may or may not trigger a taxable event depending on account type).

ETF vs. mutual fund order handling: ETFs trade intraday on exchanges like stocks and support all standard order types (market, limit, stop, stop-limit) and time-in-force instructions. Mutual funds trade once per day at NAV and support only purchase, redemption, and exchange orders. This distinction has significant implications for block trading — ETF blocks can be executed with price control during market hours, while mutual fund blocks settle at the same NAV regardless of when the order is placed (provided it is before the cutoff).

Block Trading and Allocation

Block trading is the practice of aggregating orders for the same security across multiple client accounts into a single block order. This achieves better execution through larger order size (which may access better pricing or reduce per-share transaction costs) and operational efficiency (one order instead of hundreds).

Regulatory framework:

Block trading by investment advisers is governed by SEC no-action letters (most notably the SMC Capital, Inc. no-action letter of 1995) and FINRA guidance. The SEC has permitted block trading by advisers provided that:

  • The adviser has a written allocation policy established before the trade is executed.
  • All participating accounts receive fair and equitable treatment.
  • No account is systematically advantaged or disadvantaged by the allocation methodology.
  • The allocation is determined before the block order is placed (pre-trade allocation), not after the results are known (which would enable cherry-picking).

Fair allocation methods:

  • Pro-rata allocation: Each account receives a share of the execution proportional to its order size relative to the total block order. For example, if Account A ordered 1,000 shares and Account B ordered 500 shares in a 1,500-share block, Account A receives 66.7% and Account B receives 33.3% of each fill. This is the most common and widely accepted method.
  • Average price allocation: All accounts in the block receive the same average execution price. If the block is filled in multiple lots at different prices, the average price is calculated and applied to each account. This ensures price fairness when execution occurs over multiple fills.
  • Rotation: Accounts rotate priority in receiving allocations from block trades. Account A may receive priority on the first block trade, Account B on the second, and so on. This method is appropriate when minimum lot sizes prevent perfect pro-rata allocation.

Partial fills: When a block order is only partially filled, the allocation methodology must be applied to the partial fill. Under pro-rata allocation, each account receives its proportional share of the partial fill, rounded to whole shares. Rounding adjustments should follow a documented, consistent procedure (e.g., accounts with the largest fractional shares round up first, or rounding priority rotates). The remaining unfilled portion may be carried forward as a new order or canceled, depending on the advisor's trading policy.

Documentation requirements:

  • Pre-trade: The allocation methodology must be documented before the block order is placed. The OMS should record the intended allocation for each account in the block.
  • Post-trade: The actual allocation to each account must be recorded, including the execution price, quantity allocated, and any rounding adjustments. If the actual allocation deviates from the pre-trade methodology (which should be rare), the reason must be documented and approved by compliance.

Pre-Trade Compliance

Pre-trade compliance is the automated (and sometimes manual) checking of proposed orders against a set of rules and restrictions before the orders are submitted for execution. This is a critical control point in the trade workflow — catching violations before execution avoids costly corrections, client harm, and regulatory exposure.

Common pre-trade compliance checks:

  • Restricted and watch list screening: Orders are screened against the firm's restricted list (securities that cannot be traded due to possession of material non-public information or other regulatory restrictions) and watch list (securities under heightened surveillance). Restricted list violations produce hard blocks; watch list matches may produce soft blocks requiring compliance review.
  • Concentration limits: Rules that prevent excessive exposure to a single security, sector, or asset class. For example: no more than 5% of an account in a single equity position, no more than 25% in a single sector, no more than 10% in high-yield bonds. These limits may be set at the firm level, model level, or individual account level.
  • Client-specific restrictions: Individual account constraints such as ESG exclusions (no fossil fuel companies, no tobacco, no firearms), do-not-buy lists, legacy position restrictions (client does not want to sell inherited shares of a specific stock), and religious or ethical investment screens.
  • Investment policy compliance: Orders are checked against the investment policy statement (IPS) for each account. The IPS may specify permissible asset classes, quality minimums (e.g., investment-grade bonds only), maturity restrictions, liquidity requirements, or prohibited investment types.
  • Regulatory limits: For registered investment companies (mutual funds), diversification rules under the Investment Company Act of 1940 impose concentration limits (no more than 5% of assets in a single issuer for 75% of the fund, no more than 25% in a single industry).

Hard blocks vs. soft blocks:

  • Hard blocks prevent order submission entirely. The order cannot proceed until the underlying condition is resolved or the order is modified. Examples: trading a restricted list security, exceeding a regulatory concentration limit, trading in a frozen or suspended account.
  • Soft blocks generate a warning that requires acknowledgment and documented justification before the order can proceed. Examples: exceeding an internal concentration guideline, trading a watch list security, minor deviation from the model allocation. Soft block overrides must be logged with the identity of the person authorizing the override, the timestamp, and the stated justification.

Regulatory expectations: Pre-trade compliance is not merely a best practice — it is a regulatory expectation. FINRA Rule 3110 (supervision) requires firms to establish supervisory systems reasonably designed to prevent violations. Automated pre-trade compliance checks are a key component of that supervisory system. SEC examination staff routinely evaluate the scope, effectiveness, and documentation of pre-trade compliance processes. Gaps in pre-trade compliance — such as failure to screen against restricted lists or failure to enforce IPS constraints — are common examination findings.

Trade Workflow: From Decision to Settlement

The end-to-end trade lifecycle in an advisory firm proceeds through a defined sequence of stages, each with specific responsible parties, system interactions, and exception-handling requirements.

Stage 1 — Investment decision: The investment committee, portfolio manager, or individual advisor decides to make a trade. This may be a model portfolio change (replacing one holding with another across all accounts assigned to the model), a rebalance (bringing drifted accounts back to target weights), or an ad hoc trade (a client-specific transaction such as raising cash for a withdrawal).

Stage 2 — Trade generation in PMS: The portfolio management system translates the investment decision into account-level trade proposals. For a model change, the PMS identifies every account assigned to the affected model, calculates the required trade for each account based on current holdings and target weights, and generates a trade list. For a rebalance, the PMS applies drift thresholds and target weights to generate trades that bring each account back into alignment.

Stage 3 — Pre-trade compliance check: The generated trades are screened against the compliance rule engine. Hard blocks are flagged for resolution. Soft blocks are flagged for review. Trades that pass all checks are marked as compliant and eligible for execution.

Stage 4 — Advisor review and approval: Depending on the firm's workflow, an advisor or portfolio manager reviews the trade list before submission. Some firms require explicit approval for all trades; others auto-approve model-driven trades and require manual approval only for exceptions. The review step provides a human checkpoint for catching errors that automated compliance may miss (e.g., a trade that is technically compliant but inappropriate given a client conversation that occurred that morning).

Stage 5 — Order routing to custodian/broker: Approved orders are transmitted to the custodian or executing broker. The OMS applies routing rules based on account-custodian mapping (each account is held at a specific custodian), order type (some custodians support certain order types that others do not), and any firm preferences for execution venues. Orders may be transmitted electronically via FIX protocol, custodian API, or in some cases entered manually into the custodian's trading platform.

Stage 6 — Execution: The custodian or broker executes the order on an exchange, through an internal execution desk, or via a third-party broker. The execution may occur in a single fill or multiple partial fills over time.

Stage 7 — Fill notification: The custodian transmits fill confirmations back to the OMS. The fill data includes the execution price, quantity filled, execution time, and execution venue.

Stage 8 — Allocation (for blocks): For block orders, the OMS allocates the execution results to individual accounts according to the pre-trade allocation methodology. Each account receives its share of the fill at the average execution price.

Stage 9 — Confirmation generation: The OMS generates trade confirmations for each client account reflecting the allocated execution details. Confirmations are delivered to clients per SEC Rule 10b-10 requirements.

Stage 10 — Settlement: Securities and cash are exchanged between counterparties. Since May 28, 2024, the standard settlement cycle for U.S. equities is T+1 (one business day after trade date). Mutual funds generally settle at T+1 as well, though certain fund types may have different settlement cycles. Government securities settle T+1. Listed options were already settling T+1 before the 2024 equity-cycle change and continue to do so.

Status tracking: The OMS maintains real-time status for each order: pending (awaiting compliance check), approved (compliance passed, awaiting submission), submitted (sent to custodian), partially filled, filled, allocated, confirmed, and settled. Exception statuses include rejected (by custodian or compliance), canceled, and error.

Exception handling: Rejected orders require investigation — common reasons include insufficient buying power, invalid security identifier, or custodian system error. Partial fills require a decision on whether to leave the remaining order open, cancel it, or resubmit. Busted trades (trades canceled by the exchange after execution, typically due to erroneous pricing) require reversal of the allocation and client notification.

Custodian Integration and Order Routing

Advisory firms route orders to custodians for execution. The integration between the OMS and custodian systems is a critical operational link.

FIX protocol (Financial Information eXchange): FIX is the industry-standard protocol for electronic order routing, execution reporting, and trade allocation messaging

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.