Direct answer
A “worked example of Forex indicators” is a fully spelled-out scenario that shows how an indicator is calculated from assumed price data (and chosen settings), and then how its outputs are interpreted. The key point is transparency: you state every assumption (data type, sampling interval, indicator parameters, and what you treat as “success”) so someone else can reproduce the same indicator values on the same input.
How it works (mechanics)
Forex indicators are mathematical transformations applied to market data such as prices (open, high, low, close) or returns. “Indicators” can describe momentum, trend, volatility, or mean reversion. A worked example usually includes:
- Inputs: what series you use (e.g., closing prices), the time interval (e.g., 1-hour candles), and whether you use bid, ask, mid, or last. Many indicator calculations assume a single price series; real Forex execution can differ.
- Settings/parameters: for example, a moving average length or a lookback window.
- Computation steps: the exact arithmetic or algorithm.
- Interpretation rule (if any): for example, “indicator crosses above zero.” Even then, interpretation is not a guarantee of future outcomes.
Evidence or example (worked numeric scenario)
Assume you want a simple moving average (SMA)–based indicator as a trend gauge. This example is purely educational and uses made-up numbers.
Assumptions
- Data: you use closing prices sampled every hour.
- Indicator: SMA(3), the average of the last 3 closes.
- You compute one SMA value at a time using the most recent three closes.
- No spreads, commissions, or slippage are included because the goal is to show indicator computation, not trading results.
Example data
Let the last four hourly closes be:
- Hour 1: 100
- Hour 2: 102
- Hour 3: 101
- Hour 4: 105
Computation
- SMA(3) at Hour 3 uses Hours 1–3:
- (100 + 102 + 101) / 3 = 303 / 3 = 101
- SMA(3) at Hour 4 uses Hours 2–4:
- (102 + 101 + 105) / 3 = 308 / 3 = 102.666…
What “the indicator output” means
At Hour 4, the current close (105) is above the SMA(3) (~102.67). In a descriptive sense, this often corresponds to the recent price being higher than the average of the last three closes. However, this descriptive comparison does not by itself specify future direction, probability, or profitability.
A second assumption to show sensitivity
Now assume instead you used SMA(4) (lookback length 4) with the same prices. You’d compute:
- SMA(4) at Hour 4: (100 + 102 + 101 + 105) / 4 = 408 / 4 = 102 So at Hour 4, 105 is also above SMA(4), but the magnitude of the difference changes. This shows that indicator “readings” can shift when parameters change.
Limitations and risks
A worked example should also state at least one material failure mode. Common ones include:
- Lag: moving averages and many trend/volatility indicators rely on past data, so they react after price has already moved.
- Parameter sensitivity: changing lookback windows, smoothing methods, or thresholds can materially change the indicator values.
- Data-definition mismatch: real Forex execution may use bid/ask/mid differences, while your indicator might use one constructed series (e.g., closes) that does not reflect actual trade prices.
- Overfitting when “success” is defined using history: if you choose parameters to match past behavior without an independent test period, you may fit noise rather than a stable pattern.
- Costs and execution differences: even if the indicator calculation is correct, translating it into outcomes requires modeling costs, timing, and practical order execution—details that are not captured in the numeric indicator computation above.
Verification or next question
To independently verify indicator behavior from a worked example:
- Recompute the indicator values from the stated assumed inputs and parameters.
- Check the same calculation across additional periods (more data points) to ensure you understand edge cases like the first time the window becomes fully available.
- When you move from “indicator values” to any evaluation criterion, use a clear, reproducible definition (e.g., how you label “was the move in one direction after time t?”) and test on data you did not use to choose parameters.