- Woodie's Pivot Points weight the closing price twice in the pivot calculation, biasing the central pivot toward where the market actually settled r...
- No configurable parameters; computation is stateless per bar.
- Validated against TA-Lib, Skender, and Tulip reference implementations where available.
Woodie's Pivot Points weight the closing price twice in the pivot calculation, biasing the central pivot toward where the market actually settled rather than treating high, low, and close equally. This close-weighted approach gives more emphasis to recent price action, making the pivot levels more responsive to the prior bar's close.
## Origin and Sources
- **Creator**: Ken Wood (Woodie), active trader and educator
- **Foundation**: Modification of classic floor-trader pivot points with double-weighted close
- **Philosophy**: The close is the most important price of the bar because it represents consensus; weighting it twice reflects this belief
## Formula
Using previous bar's High (H), Low (L), Close (C):
```
PP = (H + L + 2×C) / 4
range = H - L
R1 = 2×PP - L S1 = 2×PP - H
R2 = PP + range S2 = PP - range
R3 = H + 2×(PP - L) S3 = L - 2×(H - PP)
```
### Known Values Example
For H = 110, L = 90, C = 100:
- PP = (110 + 90 + 200) / 4 = 100.0, range = 20
- R1 = 200 - 90 = 110.0, S1 = 200 - 110 = 90.0
- R2 = 100 + 20 = 120.0, S2 = 100 - 20 = 80.0
- R3 = 110 + 2×10 = 130.0, S3 = 90 - 2×10 = 70.0
### Close-Weight Effect
When close differs from the midpoint of the range, Woodie's PP shifts toward the close: