PureBytes Links
Trading Reference Links
|
Hi All,
I need to plot a classic pivot point line/dot for the R3 and S3. I already
have the code to display the PP, R1, R2, S1 and S2 (got it from
trader.online.pl) as below:
R#2:=((H+L+C)/3) - (2*((H+L+C)/3) - H) +
(2*((H+L+C)/3) - L);
R#1:=2*((H+L+C)/3) - L;
S#1:=2*((H+L+C)/3) - H;
PP:=(H+L+C)/3;
S#2:=((H+L+C)/3) - (((2*((H+L+C)/3) -
L)-(2*((H+L+C)/3) - H)));
R#2;
R#1;
PP;
S#1;
S#2;
The calculation are as below (copy paste from wikipedia):
*PP = (H+L+C)/3
**R1 = (2*PP)-L**
S1 = (2*PP)-H*
*R2 = (PP-S1) + R1**
S2 = PP - (R1 - S1)**
R3 = H + 2*(PP - L)**
S3 = L - 2*(H - PP)*
The problem is everytime I code the R3 and S3, the result is different
compare to some online pivot point calculator. Anybody please give me a
advice what is the right code for R3 and S3 based on above formula?
Many thanks.
Wiro.
[Non-text portions of this message have been removed]
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|