Strategy System

Build Bots Around the Way You Trade

Tell the AI agent you choose what you want to trade. It understands SurgePilot's strategy language, builds the blueprint, and hands it to a deterministic runtime for validation and execution.

AI-Built Strategies

Describe the strategy. Let your AI agent build the bot.

You do not need to learn the strategy language first. Tell your agent the market behavior, risk rules, and confirmation signals you want. It builds the SurgePilot blueprint so the runtime can validate, backtest, and execute it deterministically.

Example request

"Create a strategy blueprint that buys dips during an uptrend, avoids messy sideways markets, takes profit when the bounce fades, and uses a moderate trade size."

15+
Strategy starting points
4
Supported execution profiles
Unlimited
Custom generated strategies
Grid Ladder
Range Automation

Grid Ladders

Turn sideways price movement into a planned ladder of buys and sells, with guardrails for range, sizing, and exits.

Best Fit
Range-bound markets that revisit price levels
Candle Step
Trend + Momentum

Momentum Signals

Follow fresh shifts in direction with moving-average and MACD signals, then use clear exit rules to protect the trade.

Best Fit
Markets that can keep moving after a signal
Candle Step
RSI, Bollinger, Pullbacks

Mean Reversion

Look for prices that have stretched too far, enter when the rebound setup appears, and step out as momentum recovers.

Best Fit
Choppy ranges and pullback rebounds
Candle Step
Scheduled + Dip Buying

DCA Accumulators

Build a position over time with scheduled entries, deeper dip buys, spend limits, profit targets, and capital pacing.

Best Fit
Longer holding periods and steady entries
Tick Reactive
Order-Flow Microstructure

Tick-Reactive Scalpers

Watch live trade flow for pressure, liquidity, spread quality, and choppiness so fast bots can react before the next candle closes.

Best Fit
Fast markets with useful live trade flow
Hybrid Overlay
Tick Layer for Any Strategy

Microstructure Overlays

Add a live-market confirmation layer to grid, DCA, mean-reversion, momentum, or custom strategies before the bot acts.

Best Fit
Strategies that need stronger signal confidence
Execution Profiles

One strategy system. Multiple market tempos.

Markets do not move at one speed. Some strategies should wait for candle closes. Some should react to live trade flow. Others need both. SurgePilot agents can build across every supported execution profile, while the runtime validates the choice before anything reaches live trading.

View Strategy Language Examples
Execution Mode

Grid Ladder

An AI agent can turn a range-trading idea into planned levels, allocation, fills, and rebounds.

Execution Mode

Candle-Step

An AI agent can build candle-updated trend, pullback, DCA, and indicator-driven strategies.

Execution Mode

Tick-Reactive

An AI agent can build fast strategies that react to live pressure, spread, liquidity, and choppiness.

Execution Mode

Hybrid Overlay

An AI agent can add tick-level confirmation to a base strategy before entries or exits execute.

AI Strategy Agents

You do not have to become a strategy-language expert.

Work with the AI agent that fits your style. Describe the idea, risk rules, confirmation signals, and trade behavior you want. The agent writes SurgePilot strategy language for the runtime, then SurgePilot validates and executes that strategy as a deterministic system.

Describe the strategy in natural language.
Your AI agent builds the SurgePilot blueprint.
The runtime validates the execution profile.
Checked logic runs deterministically.
agent-built strategy
deterministic
strategy "Momentum Scalper" {
  family signal
  execution_profile tick_reactive

  rules {
    enter long when all {
      microstructure_available
      buy_pressure_score >= min_buy_pressure
      liquidity_score >= min_liquidity
      choppiness_score <= max_choppiness
    } size capital_pct position_size_pct reason "Buying pressure is strong"
  }

  diagnostics {
    show buy_pressure_score label "Buying Pressure"
  }
}
parameters

Trader-facing controls with safe defaults, labels, ranges, and optimizer hints.

indicators

SMA, EMA, RSI, MACD, Bollinger Bands, ADX, ATR, momentum, volatility, highs, and lows.

state

Strategy memory for armed setups, profit peaks, cooldowns, and counters.

rules

Readable entry, exit, and update conditions for the behavior the bot should follow.

diagnostics

Live values shown in the product so traders can see what the bot is watching.

optimization

Marks which controls can be tuned safely in backtests or by the auto-optimizer.

Want the proof under the hood?

Open the real grid, candle, tick, and overlay examples.

Open Examples