Welcome Guest, please sign in to participate in a discussion. Search | Active Topics |

DeMark Rate this Topic:
Previous Topic · Next Topic Watch this topic · Print this topic ·
Aces4Me
Posted : Friday, June 23, 2017 7:37:11 AM
Registered User
Joined: 4/30/2015
Posts: 197

DeMark Pivot Points

The formula used in the calculation of the Tom DeMark "Pivot Points" are:

The value of X in the formula below depends on where the Close of the market is.
If Close < Open then X = (H + (L * 2) + C) 

If Close > Open then X = ((H * 2) + L + C) 

If Close = Open then X = (H + L + (C * 2)) 

R1 = X / 2 - L
PP = X / 4 (this is not an official DeMark number but merely a reference point based on the calculation of X)
S1 = X / 2 - H

Where R1 is the upper Resistance level, PP is the Pivot Point, S1 is the lower support level. 
 
I HAVE A REFERRAL FOR TC2000 BUT HE IS ASKING ABOUT DEMARK INDICATORS
I FOUND THIS IN OLD POST - is this do able in tc2000 v17
Bruce_L
Posted : Friday, June 23, 2017 9:45:29 AM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

The following assumes your calculations are correct and everyhing is for the current bar.

R1 would be:

IIF(C < O, H + L * 2 * C, IIF(C > O, H * 2 + L + C, H + L + C * 2)) / 2 - L

PP would be:

IIF(C < O, H + L * 2 * C, IIF(C > O, H * 2 + L + C, H + L + C * 2)) / 4

S1 would be:

IIF(C < O, H + L * 2 * C, IIF(C > O, H * 2 + L + C, H + L + C * 2)) / 2 - H

If things are based on the previous bar like more traditional pivot points, you would need to add 1 to all of the bars ago parameters.

R1 would be:

IIF(C1 < O1, H1 + L1 * 2 * C1, IIF(C1 > O1, H1 * 2 + L1 + C1, H1 + L1 + C1 * 2)) / 2 - L1

PP would be:

IIF(C1 < O1, H1 + L1 * 2 * C1, IIF(C1 > O1, H1 * 2 + L1 + C1, H1 + L1 + C1 * 2)) / 4

S1 would be:

IIF(C1 < O1, H1 + L1 * 2 * C1, IIF(C1 > O1, H1 * 2 + L1 + C1, H1 + L1 + C1 * 2)) / 2 - H1

TC2000 v17 even has a Last Value Horizontal Plot Style available in the Custom PCF Indicator which will plot the most recent calculated value as a horizontal line. But if you want to plot daily valiues on an intraday chart, there isn't a way to do so.



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Aces4Me
Posted : Friday, June 23, 2017 12:56:57 PM
Registered User
Joined: 4/30/2015
Posts: 197

ty

 

Bruce_L
Posted : Friday, June 23, 2017 1:08:14 PM


Worden Trainer

Joined: 10/7/2004
Posts: 65,138

You're welcome.



-Bruce
Personal Criteria Formulas
TC2000 Support Articles
Users browsing this topic
Guest-1

Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.