PureBytes Links
Trading Reference Links
|
------------------------------------------------------------------------
You cannot reply to this message via email because you have chosen not
to disclose your email address to the group.
To reply: http://groups.yahoo.com/group/equismetastock/post?act=reply&messageNum=4988
------------------------------------------------------------------------
I have the formula, that plots the Pivots Points, for the Month
Dm:=If(DayOfMonth()<=Ref(DayOfMonth(),-1),1,0);
PP3:=If(Dm=1,(Ref(HighestSince(1,Dm=1,H),-1)+
Ref(LowestSince(1,Dm=1,L),-1) +
Ref(C,-1))/3,0);
Mh1:=If(Dm=1,Ref(HighestSince(1,Dm=1,H),-1),0);
Ml1:=If(Dm=1,Ref(LowestSince(1,Dm=1,L),-1),0);
Mh:=ValueWhen(1,Mh1>0,Mh1);
Ml:=ValueWhen(1,Ml1>0,Ml1);
PPM:=ValueWhen(1,PP3>0,PP3);
R1:=(2*PPM)-Ml;
S1:=(2*PPM)-Mh;
S2:=S1-(R1-S1);
R2:=R1+(R1-S1);
S3:=PPM-(Mh-Ml);
R3:=PPM+(Mh-mL);
evm:=(mh-PPM)+ml;
S2;s3;s1;ppm;evm;r1;r3;R2;
My question is:How can i plot the lines that refer to Quarter of the
yar, or to the Year?
The Pivot Point is no exotic Number. It's only the
(High+Low+Close)/3, the TYP() function otherwise.How can I plot that
number in a chart that contains daily data?
Can anyone help?
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Sell a Home for Top $
http://us.click.yahoo.com/RrPZMC/jTmEAA/MVfIAA/BefplB/TM
---------------------------------------------------------------------~->
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/
|