PureBytes Links
Trading Reference Links
|
Hello,
Thanks for that. Unfortunately, I got some very weird results when I
tried plotting it.
Regards,
Kevin
At 16:34 18/03/2004 -0500, you wrote:
If
it helps, this I what I have in my files for Daily Pivots on a lower time
frame.
[I think it s from you, Roy]
Dm:=If(Hour()<=Ref(Hour(),-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;
S3:=ppm-(Mh-Ml);
S2:=S1-(R1-S1);
R2:=R1+(R1-S1);
R3:=ppm+(Mh-Ml);
evm:=(mh-PPm)+ml;
r3;
r2;
r1;
ppm;
s1;
s2;
s3;
-----Original Message-----
From: Roy Larsen
[mailto:rlarsen@xxxxxxxxxxxxxx]
Sent: Thursday, March 18, 2004 3:12 PM
To: Metastockusers@xxxxxxxxxxxxxxx
Subject: Re: [Metastockusers] Daily Pivot Points On Five Minute
Chart
Kevin
> I want to incorporate a condition in a system test on a five-minute
chart.
> I do not want to buy if the price is within a certain percentage of
one of
> the daily pivot points. Does anybody know how to plot daily pivots
on
> intraday charts for testing purposes? Unfortunately, Henry's
excellent
> pivot points indicator only plots the value for the current
period.
>
> Thanks in advance,
> Kevin
Show me the code you use for daily pivots and I'll convert it to plot on
any intraday chart
Roy
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/Metastockusers/
To unsubscribe from this group, send an email to:
Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the
Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
Yahoo! Groups Links
To visit your group on the web, go to:http://groups.yahoo.com/group/Metastockusers/
To unsubscribe from this group, send an email to:Metastockusers-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|