PureBytes Links
Trading Reference Links
|
Sorry....meant to post this one. It's the WEEKLY support/resistance pivots.
Add to this the pivot formula (the first one I posted previously. Ignore
the
second formula posted earlier.
{Weekly Typical Price}
PP1:=If(Dw=1,
{then}(Ref(HighestSince(1,Dw=1,H),-1)+
Ref(LowestSince(1,Dw=1,L),-1)
+
Ref(C,-1))/3,
{else}0);
{Weekly High}
Wh1:=If(Dw=1,
{then}Ref(HighestSince(1,Dw=1,H),-1),
{else}0);
{Weekly Low}
Wl1:=If(Dw=1,
{then}Ref(LowestSince(1,Dw=1,L),-1),
{else}0);
Wh:=ValueWhen(1,Wh1>0,Wh1);
Wl:=ValueWhen(1,Wl1>0,Wl1);
PP:=ValueWhen(1,PP1>0,PP1);
{Resistance 1}
R1:=(2*PP)-Wl;
{Support 1}
S1:=(2*PP)-Wh;
{Resistance 2}
R2:=(PP-S1)+R1;
{Support 2}
S2:=PP-(R1-S1);
R2;
R1;
S1;
S2;
Lionel Issen wrote:
Claude:Could
you post some clarification for what comes after "And this:"Lionel
Issen
lissen@xxxxxxxxx
<blockquote dir=ltr
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
----- Original Message -----
<div
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black">From:
Claud
Baruch
To: metastock@xxxxxxxxxxxxx
Sent: Wednesday, February 28, 2001
2:28 PM
Subject: Re: Support Indicator/Thanks
Try This.
{P = Pivot Price}
(H + L + C)/3;
{R1 = 1st Resistance}
(2*((H + L + C)/3))-L;
{S1 = 1st Support}
(2*((H + L + C)/3))-H;
{R2 = 2nd Resistance }
(((H + L + C)/3)-((2*((H + L + C)/3))-H))+((2*((H + L
+ C)/3))-L);
{S2 = 2nd Support}
((H + L + C)/3)-(((2*((H + L + C)/3))-L)-((2*((H
+ L + C)/3))-H))
And this:
PP:=Typical();
R1:=(2*PP)-L;
S1:=(2*PP)-H;
R2:=(PP-S1)+R1;
S2:=PP-(R1-S1);
R2;
R1;
S1;
Claud
Larry & Paula wrote:
Thanks
guys,What I wanted to do was create the Pivot Point and resistance I and
II along with support I and II from the EOD for the next day. In
Metastock when you make the indicator it shows up on the day that you are
using instead of for the next day. So I will do it in a worksheet
instead . Thanks againLarry
<blockquote dir=ltr
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
----- Original Message -----
<div
style="BACKGROUND: #e4e4e4; FONT: 10pt arial; font-color: black">From:
Larry &
Paula
To: metastock@xxxxxxxxxxxxx
Sent: Friday, February 16, 2001 3:26
PM
Subject: Support Indicator
Is there a way to advance a support
or resistance indicator forward for the day that there is no data field.
ThanksLarry
begin:vcard
n:Baruch;Claud
x-mozilla-html:TRUE
version:2.1
email;internet:ClaudB@xxxxxxxxxxxxx
x-mozilla-cpt:;0
fn:Claud Baruch
end:vcard
|