Skip to main content

Strategy settings

Configure strategy parameters — capital allocation, risk per trade, max positions, and AI behavior — before deploying.

Find it at: /agentic-trading/strategy-settings

Strategy settings


1. Capital allocation

Capital allocation defines how much of your account a strategy is allowed to use, and how that pool is split across positions.

SettingWhat it controls
Total capital availableDollar amount the strategy is allowed to deploy. Treated as a hard ceiling — the strategy will not exceed it even if a high-conviction signal appears.
Max per positionDollar (or %) cap on any single open position. Prevents one ticker from absorbing the full allocation.
Reserve bufferOptional cash buffer the strategy will not touch — leaves room for fees, slippage, and unexpected fills.

Allocate conservatively when first deploying a new strategy. Once it has fired live a few times and behaved, scale up the total.


2. Risk parameters

Risk parameters are the per-trade and per-day guardrails. They apply across all trades the strategy places.

ParameterTypical rangeWhat happens at the limit
Stop-loss %1% – 10% per positionStrategy closes the position when the drawdown from entry hits the threshold
Take-profit %2% – 20% per positionStrategy closes the position when the gain from entry hits the threshold
Max daily drawdown1% – 5% of total capitalStrategy auto-pauses for the rest of the trading day when the threshold is hit
Max position drawdownaccount-levelStrategy pauses entirely and surfaces an alert until you review

The daily drawdown kill switch is the most important field — it caps how bad a single day can get if the strategy mis-fires.


3. Position limits

Position limits constrain concurrency, so a single setup can't run the same idea across too many tickers at once.

  • Max concurrent open positions — total positions the strategy can hold simultaneously across all tickers
  • Per-symbol cap — max positions on a single ticker (prevents pyramiding into one name)
  • Per-sector cap:::warning planned — limit positions per GICS sector to keep exposure balanced

When a new signal would breach a limit, the strategy skips the trade and writes the reason ("position limit reached") to the execution log.


4. AI behavior toggles

AI behavior toggles tune how Alphio AI interprets your investment profile when planning trades. The settings page reads / writes the Investment Profile stored on your account.

SectionOptionsEffect
Core Risk ToleranceConservative / Moderate / Aggressive / SpeculativeSingle-select. Shifts entry confidence threshold and position sizing aggressiveness.
Investment HorizonScalping / Day Trading / Swing Trading / PositionMulti-select. Determines the timeframes Alphio AI considers when generating signals.
Asset Class FocusEquities / Options / ETFs / Crypto / Fixed IncomeMulti-select. Filters which markets the strategy can trade.
Strategy & StyleGrowth / Value / Quantitative / Institutional Shadowing / Macro-DrivenMulti-select. Biases the research approach Alphio AI uses to find ideas.
warning

The exact toggle names for "scale in" vs "scale out" behavior are being finalized. The four sections above are live today; finer-grained scale-in / scale-out controls land in a later release.


5. Approval gating

Approval gating decides whether Alphio AI executes trades directly or pauses for your confirmation first.

ModeBehavior
Auto-executeAlphio AI places orders as soon as it decides to act. Fast, hands-off. Best when the strategy is mechanical and well-tested.
Require approval per tradeEach proposed trade surfaces a confirmation card in chat / notifications. Order fires only after you tap approve. Best for new strategies or large position sizes.

Approval gating is set per strategy. You can flip a running strategy from auto-execute to approval-required (or vice versa) at any time from the Strategy Settings page — the change applies to the next decision, not retroactively.


6. Saving and re-using settings

Click Save Changes at the bottom of the Strategy Settings page to persist your investment profile. The profile is account-level — it applies to every Agentic Trading strategy you launch, so a fresh strategy inherits these defaults at creation time.

warning

Named settings profiles (so you can keep e.g. a "swing trading" profile and a "DCA" profile side-by-side, and switch between them) are planned for a later phase. Today, the saved settings act as a single account-wide default.


Agent Instructions: Querying This Documentation

If you need information not on this page, you can query the docs dynamically by sending a GET request with the ask query parameter:

GET https://docs.alphio.ai/agentic-trading/strategy-settings.md?ask=<question>

The question should be specific, self-contained, and written in natural language. The response includes a direct answer plus relevant excerpts and sources.