Deploy a Simulated Strategy
Learn how to deploy a backtest-validated strategy in simulation mode and evaluate its real-time behavior without using real funds.
I. Overview
A simulated deployment runs a backtest-validated strategy in simulation mode, using virtual capital while following live market prices to test stability and reliability in a real-time environment. It is a critical validation step between backtesting and live trading.
II. Prerequisites
A simulated deployment does not require an exchange API, but it does require an available server and the following preparation:
III. Configuration Steps
After completing a backtest, switch the runtime mode in the trading-engine node to deploy a simulation.
3.1 Open the Workflow Editor
3.2 Switch the Runtime Mode
3.3 Configure Simulation Parameters
IV. Parameter Reference
The trading engine exposes these parameters in simulation mode:
| Parameter | Description |
|---|---|
| Exchange | binance / okx; multiple exchanges can be added |
| Market type | spot / um (USDT-margined derivatives) / cm (coin-margined derivatives). Select one appropriate for the strategy type; market-neutral strategies support derivatives markets only |
| Initial capital | Virtual capital used for simulated trading. Spot and USDT-margined markets are denominated in USDT; coin-margined markets are denominated in units of the coin |
| Order type | Market order: executes immediately. Limit order: placed at the current price adjusted by the configured slippage |
| Slippage | Expected slippage percentage. 0.03 means 0.03% |
| Trading fee | Fee percentage for each trade. 0.04 means 0.04%; use the actual rate of the target exchange where possible |
| Asset leverage | Applies only to derivatives markets. A value of 1 means no leverage |
V. Simulation Configuration Panel
The panel below is the actual trading-engine configuration panel in simulation mode. Interact with it to explore every setting.
Up to 1 exchanges at your current membership level.
Market orders execute immediately; limit orders are placed at the current price plus or minus slippage.
0.03 = 0.03%
0.04 = 0.04%
An integer from 1 to 500 that caps leverage used by this node.
This affects only assets selected by the data source. Exchange leverage changes only when its current value is lower; exchange limits take precedence.
The strategy enforces hedge mode.
VI. Launch and Monitoring
After configuration, click Run to launch simulated trading.
VII. Simulation vs. Backtest vs. Live Trading
| Comparison | Backtest | Simulation | Live trading |
|---|---|---|---|
| Market data | Historical data | Live data | Live data |
| Capital | Virtual capital | Virtual capital | Real funds |
| Fill model | Idealized fills | Idealized fills | Actual fills |
| Capital risk | None | None | Yes |
| API required | No | No | Yes |
| Server required | Yes (free option available) | Yes | Yes |
| Purpose | Validate strategy logic | Validate real-time stability | Production operation |