Woodie's Pivot Point Calculator Calculation


Few days ago in Unofficed forum, We were discussing about Pivot Points. I was reading about that lately and found something called Woodies’ pivot point.

I landed in the above website with the above calculator.

When I saw half values are missing, I digged below to check the formula -

### Woodie’s Pivot Points

The formula employed in the calculation of Woodie Pivot Points are:

R4 = R3 + range
R3 = H + 2 * (PP – L) (same as: R1 + RANGE)
R2 = PP + range
R1 = (2 * PP) – LOW
PP = (HIGH + LOW + (TODAY’S OPEN * 2)) / 4
S1 = (2 * PP) – HIGH
S2 = PP – range
S3 = L – 2 * (H – PP) (same as: S1 – RANGE)
S4 = S3 – range

Where R1 through R4 are Resistance levels one to four, PP is that the Pivot point, S1 through S4 are support levels one to four, range is that the High minus the Low for the given timeframe (usually daily).

As I am a mathematician, I became quite sure that S3,S4,R3,R4 should be there. So I wrote a small piece of JS quickly to check on it.

Sure, here’s an example JavaScript code to calculate the pivot points and support and resistance levels based on the provided formula:


const open = 86;
const high = 123;
const low = 22;
const close = 60;

const range = high - low;
const pp = (high + low + (2 * open)) / 4;
const r1 = (2 * pp) - low;
const r2 = pp + range;
const r3 = high + 2 * (pp - low);
const r4 = r3 + range;
const s1 = (2 * pp) - high;
const s2 = pp - range;
const s3 = low - 2 * (high - pp);
const s4 = s3 - range;

console.log(`PP: ${pp.toFixed(2)}, R1: ${r1.toFixed(2)}, R2: ${r2.toFixed(2)}, R3: ${r3.toFixed(2)}, R4: ${r4.toFixed(2)}, S1: ${s1.toFixed(2)}, S2: ${s2.toFixed(2)}, S3: ${s3.toFixed(2)}, S4: ${s4.toFixed(2)}`);

The answer came -

PP: 79.25, R1: 136.50, R2: 180.25, R3: 237.50, R4: 338.50, S1: 35.50, S2: -21.75, S3: -65.50, S4: -166.50

I digged more content -

Woodie’s Pivot Points is a popular technical analysis tool used by traders to identify potential support and resistance levels in the market. Woodie’s Pivot Points is a variation of the traditional pivot points formula and was developed by a trader named Tom Woodie. The Woodie’s Pivot Points formula is straightforward to calculate and requires the trader to have access to the high, low, and close prices of the previous trading session. In this article, we will explain how to calculate Woodie’s Pivot Points and its support and resistance levels.

Calculation of Woodie’s Pivot Points

The calculation of Woodie’s Pivot Points is based on the following formula:

Woodie’s Pivot Point (PP) = (High + Low + 2 x Close) / 4

The pivot point is the central point of the calculation, and traders use it to determine the overall trend of the market. Once the pivot point is calculated, traders can determine the support and resistance levels based on the pivot point. The support and resistance levels are calculated using the following formulas:

First Support (S1) = (2 x PP) - High
Second Support (S2) = PP - High + Low
Third Support (S3) = Low - 2 x (High - PP)

First Resistance (R1) = (2 x PP) - Low
Second Resistance (R2) = PP + High - Low
Third Resistance (R3) = High + 2 x (PP - Low)

The first level of support and resistance is calculated using the pivot point, while the second and third levels are calculated using the high, low, and pivot point. The second and third levels of support and resistance are considered to be stronger than the first level.

Notice this??

Woodie’s Pivot Point (PP) = (High + Low + 2 x Close) / 4
or
Woodie’s Pivot Point (PP) = (High + Low + 2 x Open) / 4

Which is correct?

Woodie’s Pivot Point (PP) can be calculated using either the closing price or the opening price, depending on the trader’s preference. So, both formulas are correct:

Woodie’s Pivot Point (PP) = (High + Low + 2 x Close) / 4

or

Woodie’s Pivot Point (PP) = (High + Low + 2 x Open) / 4

In the first formula, the closing price is used to calculate the pivot point, while in the second formula, the opening price is used.

but what woodie himself used to use?

The original pivot point formula, which is still widely used today, is:

Pivot Point (PP) = (High + Low + Close) / 3

Woodie’s pivot point formula is a modified version of the traditional formula. It was developed by trader Tom Wood, also known as “Woodie,” in the early 1990s. The Woodie’s pivot point formula is:

Woodie’s Pivot Point (PP) = (High + Low + 2 x Close) / 4

Woodie’s pivot point formula takes into account the previous day’s price action and gives more weight to the closing price. The formula adjusts the support and resistance levels accordingly. In addition to the pivot point, Woodie’s formula also calculates three levels of support and resistance, known as S1, S2, S3 and R1, R2, R3.

While both the traditional pivot point formula and Woodie’s formula can be used to identify potential support and resistance levels, the Woodie’s formula is considered a more dynamic indicator that reflects recent price action. Traders should use the pivot point formula that best fits their trading strategy and style.

So I did -

const open = 86;
const high = 123;
const low = 22;
const close = 60;

const range = high - low;
const pp = (high + low + (2 * close)) / 4;
const r1 = (2 * pp) - low;
const r2 = pp + range;
const r3 = high + 2 * (pp - low);
const r4 = r3 + range;
const s1 = (2 * pp) - high;
const s2 = pp - range;
const s3 = low - 2 * (high - pp);
const s4 = s3 - range;

console.log(`PP: ${pp.toFixed(2)}, R1: ${r1.toFixed(2)}, R2: ${r2.toFixed(2)}, R3: ${r3.toFixed(2)}, R4: ${r4.toFixed(2)}, S1: ${s1.toFixed(2)}, S2: ${s2.toFixed(2)}, S3: ${s3.toFixed(2)}, S4: ${s4.toFixed(2)}`);

It comes with

PP: 66.25, R1: 110.50, R2: 167.25, R3: 211.50, R4: 312.50, S1: 9.50, S2: -34.75, S3: -91.50, S4: -192.50

In short now, it is matching with the guy’s calculator. So, I guess he have copied half baked content from one site and half baked code from another site? Lol

Then I browsed more of internet and found most of all used this version only.

Later I found out the entire calculation is bound to be wrong because -

The pivot: (Previous high + previous low + 2 x previous close) / 4

R1: (2 x pivot) – previous low
R2: Pivot + high - low
R3: High + 2 x (Pivot – low)
S1: (2 x pivot) – Previous high
S2: pivot – (high - low)
S3: Low – 2 x (High – pivot)

This is the correct formula. It is using both Previous Low and Low variables. So, Unless you take those inputs, there is no question of posting R3,S3 as it needs previous day’s data. R4,S4 - does not exist

This is why I never trust another Indian Website.

0 due diligence. 100 copy paste.

Well I also found dailyfx also copy pasted content while being drunk.
How to Trade with Woodies Pivot Points

Moral - Never trust the internet!

**Also, Woodie’s formula does not include R4 or S4 levels. **

After deep headache.

Traders who use Woodie’s formula typically choose which variation to use based on their trading style and preference. Some traders prefer to use the first variation if they are day trading and want to focus only on the current day’s price action and vice versa.

I settled for -

const woodiesPivot = (high + low + (2 * close)) / 4;

const woodieResistance1 = (2 * woodiesPivot) - low;
const woodieResistance2 = woodiesPivot + (high - low);
const woodieResistance3 = high + (2 * (woodiesPivot - low));
const woodieResistance4 = woodieResistance3 + (high - low);

const woodieSupport1 = (2 * woodiesPivot) - high;
const woodieSupport2 = woodiesPivot - (high - low);
const woodieSupport3 = low - (2 * (high - woodiesPivot));
const woodieSupport4 = woodieSupport3 - (high - low);

Pivot Point Calculator - Unofficed
Made this … at the end …getting angry.

Added more content -

Classic Pivot Point - Unofficed
Woodie's Pivot Point - Unofficed
Camarilla Pivot Point - Unofficed
DeMark Pivot Point - Unofficed