Direct answer
A worked example of EA settings shows, step by step, how a specific set of parameter values would be interpreted by an expert advisor (EA) to produce order-related outputs (for example, position size or whether trading stops). It does this with explicit assumptions so you can independently verify the calculations and understand where uncertainty enters.
Because EA behavior and market conditions vary, the key is not the “result,” but the mapping from settings → decisions → outputs, plus the failure modes when assumptions are wrong.
Mechanism or definition
EA settings are the input parameters you configure in an automated trading system (an EA) so it can run without manual choices. Typical settings include:
- Risk or sizing rules (how position size is determined)
- Constraints (maximum open positions, daily limits, time filters)
- Order management rules (stop-loss / take-profit logic, trailing, break-even)
- Execution assumptions (how orders are sent and re-sent, how errors are handled)
A worked example should separate two parts:
- Stable mechanics: the parts that follow from arithmetic or clearly defined rules (for example, how “risk per trade” maps to lot size).
- Variable conditions: spreads, slippage, liquidity, execution delays, and any platform/provider differences.
Evidence or example: a transparent numerical scenario
Below is a worked example focused on one common mapping: “risk per trade” → position size. This is not a promise of performance; it is only an example of how settings can be translated into an order-size calculation.
Assumptions (state everything)
- You have an EA setting: risk per trade = 1%.
- Account equity at the time of decision = 10,000 (currency units).
- EA setting: stop-loss distance = 50 “pips” (you interpret the EA’s pip definition consistently).
- You assume the pip value per 1.0 lot is 10 per pip (under your platform’s instrument specification).
- Ignore swap/financing costs and commissions for the calculation.
- Assume the EA places one trade per decision and that stop-loss is exactly 50 pips away.
Step-by-step calculation
-
Risk amount in account currency:
- Risk = 1% × 10,000 = 100.
-
Total “pip risk” if the stop-loss is 50 pips:
- Risk (currency) = (pip value per lot) × (pips) × (lots)
- 100 = 10 × 50 × lots
-
Solve for lots:
- 100 = 500 × lots
- lots = 0.2
What this illustrates about EA settings
- If your EA settings specify 1% risk and a 50-pip stop, the mechanics imply an order size of 0.2 lots (given the stated pip-value assumption).
- If any assumption changes—especially pip value, pip distance, or costs—the computed lots change.
Second part: where variable conditions break the “math match”
Even if the arithmetic is correct, real outputs can diverge because:
- Spread and slippage can shift the actual entry price.
- The actual stop-loss distance may differ from the “intended pips” due to execution price and rounding.
- Commission and swaps can consume part of the intended risk budget.
A worked example should explicitly mark these as uncertainty sources rather than treating them as fixed facts.
Limitations and risks
At least one material limitation is that a worked example is only as valid as its assumptions. Common failure modes include:
- Wrong instrument assumptions: pip value per lot is instrument- and broker/platform-specific.
- Unit mismatch: some EAs use points rather than pips, or apply pip/quote scaling differently.
- Hidden constraints: the EA may enforce maximum lot size, margin constraints, or minimum step size, changing the effective order size.
- Backtest vs live difference: historical relationships do not establish future results, and execution quality often changes.
- Unhandled errors: if the EA encounters order rejections, requotes, or connectivity issues, it may behave differently than the simple worked logic.
Because outcomes vary with market conditions, costs, execution, and jurisdiction, you should treat worked examples as interpretation aids, not as predictions.
Verification or next question
To verify an EA settings worked example independently, check:
- Does every calculation state its inputs (equity, risk %, stop distance, pip value)?
- Do units match the instrument settings you are using?
- Do platform rules (lot step, min/max lot, margin checks) alter the computed size?
- Does the EA apply the stop-loss distance exactly as assumed, or does it recalculate from live prices?