Skip to Content
Strategy BuilderAdjustment RulesOverview

Adjustment Rules Overview

Adjustment Rules are Step 3 of the strategy creation process. They allow your strategy to dynamically manage open positions when market conditions change — acting as your autonomous risk manager that monitors, adapts, and repairs positions mid-flight.


Why Adjustments Matter

Without adjustments, a strategy can only enter and exit. But markets evolve constantly — a trade that was profitable 10 minutes ago might be under threat now. Adjustments give your strategy the ability to:

  • Hedge when risk metrics blow out
  • Roll positions to better strikes or expirations
  • Close underperforming legs early
  • Reverse direction when momentum shifts

The Trading Edge

This is how hedge funds trade. Instead of taking a full loss when a defined-risk spread is breached, they roll out the untested side in time or strike. This “portfolio surgery” dramatically prolongs survival rate in the market until the trend corrects. Algo Architech automates this process entirely.


How Adjustment Rules Work

Open Position (Active Legs) ┌──────────────────────┐ │ Monitor Conditions │ ← Continuously evaluated on each candle/tick │ (Indicators, Greeks, │ │ Historic Signals) │ └──────────┬───────────┘ Condition Met? YES ▼ ┌──────────────────────┐ │ Execute Action │ │ • Close Position │ │ • Close & Re-Enter │ └──────────────────────┘

Configuration Components

Every adjustment rule has three parts:

1. Target Side

Which active positions should this adjustment monitor?

TargetWhat It Monitors
Buy SideOnly legs deployed from Buy signals
Sell SideOnly legs deployed from Sell signals
NeutralAll legs (for non-directional strategies)

2. Trigger Conditions

The conditions that must be met to fire the adjustment. Three trigger types are available:

Trigger TypeWhat It MonitorsLink
Indicator ValueTechnical indicators (RSI, SMA, etc.) with consecutive bar confirmationGreeks Triggers
Options GreeksReal-time Delta, Gamma, Theta, Vega of the portfolio or individual legsGreeks Triggers
Historic SignalsThe pattern of recent strategy signalsHistoric Signal Validation

3. Action Type

What happens when the trigger fires:

ActionDescriptionLink
Close PositionLiquidate targeted legs to cut riskThis page (below)
Close & Re-EnterClose legs and immediately deploy new onesClose & Re-Enter

Action: Close Position

The simpler of the two actions — when triggered, immediately close (liquidate) the targeted legs.

Close Options

OptionWhat It Closes
Close specific sideOnly Buy-side legs, only Sell-side legs, or only Neutral legs
Close allLiquidate the entire position

Use When: Risk has exceeded your tolerance and you want to cut exposure immediately without re-entering.


Action: Close & Re-Enter

The more powerful action — close the affected legs and immediately deploy new ones. This is the “rolling” mechanism that keeps your strategy alive.

→ Full details: Close & Re-Enter (Rolling)


Adjustment vs Entry vs Exit — What’s the Difference?

ComponentWhen It RunsWhat It Does
Entry ConditionsBefore any position existsOpens new positions
Adjustment RulesWhile positions are openModifies/rolls/hedges existing positions
Exit StrategyWhile positions are openCloses positions for profit/loss (final exit)

Adjustments are the middle layer — they keep your strategy alive between entry and exit by proactively managing risk.


Consecutive Bar Confirmation

Adjustment triggers support consecutive bar confirmation — requiring the trigger condition to sustain for a specified number of bars before firing. This prevents adjustments from being triggered by momentary spikes.

SettingBehavior
Consecutive = 1Adjust immediately on first breach
Consecutive = 3Condition must be true for 3 bars in a row before adjusting

Set consecutive bars ≥ 2 for volatile markets to avoid “over-adjusting” on momentary indicator spikes.


Next Steps

Learn about the most powerful adjustment trigger — Options Greeks monitoring:

→ Next: Greeks Triggers

Last updated on