Direct answer
A worked example of Fibonacci Pivots is a fully numeric demonstration of how you compute pivot-based support and resistance levels from a previous period’s high, low, and close, then map those levels onto the next period as reference points. The key is that you choose and state assumptions (for example, which high/low/close you use and which price basis), so someone else can reproduce the same calculations.
Mechanism or definition
Pivot points are price levels derived from earlier market data that act as reference points for analysis. Fibonacci Pivots add Fibonacci proportions to the pivot framework.
A common, reproducible way to compute a Fibonacci-style pivot set uses three inputs from a prior period:
- H = prior period high
- L = prior period low
- C = prior period close
Then define the range as:
- R = H − L
One practical definition of a Fibonacci pivot level set centers on a pivot point and a series of proportional levels around it. Because providers and trading platforms can implement formulas differently, the worked example below is intentionally explicit about the formula choices.
Example formula set (stated assumptions):
- Pivot point: P = (H + L + C) / 3
- Fibonacci-proportional supports/resistances based on the range:
- S1 = P − 0.382·R
- S2 = P − 0.618·R
- R1 = P + 0.382·R
- R2 = P + 0.618·R
This is a worked calculation template. If a specific platform uses a different exact method (for example, different pivot base, different Fibonacci multipliers, or additional levels), the numeric results will differ.
Evidence or example (transparent numerical worked example)
Assumptions for this example:
- We use the prior period values H = 1.1200, L = 1.1000, C = 1.1100.
- We use the formula set listed above.
- Prices are treated as plain numbers (no conversion, no normalization).
- We are computing reference levels only, not claiming they will be reached.
Step 1: Compute the range
- R = H − L = 1.1200 − 1.1000 = 0.0200
Step 2: Compute the pivot point
- P = (H + L + C) / 3
- P = (1.1200 + 1.1000 + 1.1100) / 3 = 3.3300 / 3 = 1.1100
Step 3: Compute Fibonacci proportional levels
- 0.382·R = 0.382·0.0200 = 0.00764
- 0.618·R = 0.618·0.0200 = 0.01236
Supports:
- S1 = P − 0.382·R = 1.1100 − 0.00764 = 1.10236
- S2 = P − 0.618·R = 1.1100 − 0.01236 = 1.09764
Resistances:
- R1 = P + 0.382·R = 1.1100 + 0.00764 = 1.11764
- R2 = P + 0.618·R = 1.1100 + 0.01236 = 1.12236
How to use the result (non-predictive interpretation): you would compare later prices against these computed reference levels to see whether price action clusters near them. Clustering is an observation; it is not a guaranteed cause-and-effect.
Limitations and risks (material failure modes)
- Formula mismatch across providers: If another source uses a different pivot base or different Fibonacci mapping, your numeric levels will not match. Always verify the exact formula and multipliers.
- Changing market conditions: Levels derived from a prior period may be less informative when volatility regime, liquidity, or broader conditions shift.
- Execution and costs: Even if price approaches a level, real-world trading outcomes depend on spread, slippage, and order execution behavior—these can change what happens relative to the reference level.
- No guarantee of future behavior: Historical relationships do not establish future results, and a level may be passed through with little interaction.
Verification or next question
To independently verify a worked example, do two checks:
- Recalculate R, P, and each level using the stated inputs and exact multipliers.
- Confirm your own data selection rules (which day/session counts as the “prior period,” and whether you use the same close definition).
If you want, tell me which exact Fibonacci Pivot formula your platform uses (the multipliers and pivot-point definition), and I can rewrite the same worked example using your specific method—without assuming any live prices.