Hello Savant,
Could you please share the basic formula which you use to get the Pivot points for the next day? Also can you please tell me on which time frame you get them? I am using Amibroker and using below mentione formula to get pivots on daily charts -
_SECTION_BEGIN("Pivot Point Graph");
P = ((H + L + C) / 3);
R1 = ((2 * P) - L);
R2 = ((P + H) - L);
S1 = ((2 * P) - H);
S2 = ((P - H) + L);
MaxGraph = 5;
Graph0 = P;
Graph1 = R1;
Graph3 = R2;
Graph2 = S1;
Graph4 = S2;
Graph0Style = 4;
Graph1Style = 1;
Graph2Style = 1;
Graph3Style = 1;
Graph4Style = 1;
Graph0Color = 16;
Graph1Color = 24;
Graph2Color = 19;
Graph3Color = 24;
Graph4Color = 19;
_SECTION_END();
I am confused because the values which I am getting are different from yours. What I am seeing for 16th May is -
P=4124.2
S1=4098.8
S2=4077.3
R1=4145.7
R2=4171.1
Please suggest.
Thanks in advance.
Cheers
Abhi
Hi Abhi,
Eventual Pivots that is Posted is derived not from a simple Pivot Calculator, therefore the Pivots posted by me will always be different than a System or a Pivot Calculator.
Its a Programme that has been custom developed over a period of 7 months, It is a modified system using Many Indicators & Studies, here is just a few to let you know what goes into it.
INDICATORS:
1) Exponential, Triangular, Weighted, Variable & Time Series
Moving Average.
2) Detrended Price Oscillator & ATR
3) William's Accumulation Distribution
4) Ease Of Movement & CMO
5) MFI & ASI
STUDIES:
1)BB, MAE, NNI, Linear Regression R2, LR Intercept, Quadrant & Tirone
I guess the above is enough to keep you busy for a while...
Presently Working on refinements should be done in a month ...at best.
Happy & Safe Trading
SavantGarde