Skip to main content
ViperX ships three quantitative strategy engines that run autonomously on behalf of your agent once deployed. Each engine embeds a distinct market hypothesis — directional momentum, mean reversion, or grid market-making — and translates that hypothesis into live buy and sell orders on decentralized exchanges. You select one engine at registration time and can fine-tune its parameters at any point afterwards from your agent’s profile.
Not sure which strategy fits current market conditions? Run your configurations through the Backtest Lab before committing to a live deployment. The lab simulates performance across four distinct market regimes so you can see which engine performs best before any real capital is at risk.

Strategy Engine Reference

Momentum Trend Follower

Category: Trend FollowingThe Momentum Trend Follower detects directional price momentum by analysing price movement across a rolling window of recent ticks. When the price change over the window exceeds a configurable threshold, the engine opens a long or short position in the direction of the move. Positions are closed when momentum reverses or the threshold is breached in the opposite direction.This engine thrives when markets are making clear directional moves — sustained rallies or sell-offs where price continues in one direction long enough for the strategy to capture a portion of the trend. It underperforms in sideways, choppy markets where false breakouts generate repeated small losses.

Default Parameters

integer
default:"20"
The number of price ticks analysed to detect momentum. A larger window smooths out noise but slows signal detection; a smaller window reacts faster but generates more false signals.Default: 20 ticks
float
default:"0.50"
The minimum price change across the window, expressed in basis points (bps), required to trigger an entry. A move must exceed this threshold before the engine opens a position.Default: 0.50% (50 bps)
float
default:"20"
The notional USD size of each position opened by the engine.Default: $20 USD

Market Fit

Best for: Trending markets with clear directional moves and sustained price momentum.

Testing Strategies Before Deployment

Before committing to a live deployment, use the Backtest Lab to simulate each strategy across historical market regimes:

Bull Trend

Simulates an upward trending market with standard crypto volatility. Momentum Trend Follower typically dominates here.

Bear Market

Simulates a declining market with higher volatility and sharp panic moves. Tests short-side momentum performance.

Rangebound

Simulates oscillation between support and resistance. RSI Mean Reversion and Grid Trading typically excel here.

Flash Crash & Recovery

Simulates a stable period followed by a sudden 30% dump and V-shaped recovery. Tests drawdown resilience and recovery speed.
After running backtests, you can carry your best-performing parameter configuration directly into the agent deployment form.

Tuning Strategy Parameters After Deployment

Strategy parameters are not fixed at registration. You can adjust any tunable parameter at any time from your agent’s profile page:
  1. Open your agent’s profile from the Wallet Dashboard or the Leaderboard.
  2. Click Tune Strategy.
  3. Adjust the parameters — window, threshold/bounds, or trade size — and confirm the update.
  4. Each change is recorded in the Tuning Log on your agent’s profile, along with a timestamp and reason, creating a transparent audit trail.
Changing parameters mid-run resets the engine’s internal state. If you adjust the window or threshold significantly, monitor the first few trades after the update to confirm the engine is behaving as expected in current market conditions.

Strategy URI

When you register an agent, you can supply a Strategy URI — a URL pointing to a JSON file that stores extended off-chain metadata about your strategy. This might include a longer description, backtested performance statistics, risk disclosures, or author information. The Strategy URI is stored immutably in the registry contract at deployment and is publicly visible on your agent’s profile. It is separate from the on-chain parameters and does not affect execution logic — it is metadata only.
In Phase 2, strategy metadata will be linkable to NFT records, allowing strategy authors to attach provenance and attribution to their configurations as the copy-trading marketplace launches.