PureBytes Links
Trading Reference Links
|
Paul,
It appears that you are looking for a rising bouble bottom.
There was a formula written in TASC that defines a double bottom and
with a few modifications should work for you. Here is the formula:
Double Bottoms
PK:=Zig(C,10,%)<Ref(Zig(C,10,%),-1) AND
Ref(Zig(C,10,%),-1)>Ref(Zig(C,10,%),-2);
TR:=Zig(C,10,%)>Ref(Zig(C,10,%),-1) AND
Ref(Zig(C,10,%),-1)<Ref(Zig(C,10,%),-2);
TR1:=TroughBars(1,C,10);
TR2:=TroughBars(2,C,10);
(ValueWhen(1,TR,Ref(C,-1))/ ValueWhen(2,TR,Ref(C,-1))>.96 AND
ValueWhen(1,TR,Ref(C,-1)) / ValueWhen(2,TR,Ref(C,-1)) < 1.04) AND
TR2-TR1>=10 AND Cross(C,ValueWhen(1,PK,Ref(C,-1)))
{end}
Play with this and see if it works for you.
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "Paul Lerno" <paul.lerno@xxxx>
wrote:
> MessageHi Tim,
> Thanks for your attention.
> I try to draw the setup I am looking for, building an exploration
to scan for stocks.
>
>
> I later: price
rising above preceding top
> I I
> I I I
> I I I
> I I I first: bottom above preceding
bottom
> I I
> I
>
>
> Greeting,
> Paul
>
> ----- Original Message -----
> From: Tim Hyder
> To: equismetastock@xxxxxxxxxxxxxxx
> Sent: Tuesday, January 20, 2004 11:03 PM
> Subject: RE: [EquisMetaStock Group] formula
>
>
> HI Paul,
>
> if you could send through a small screen captured example of a
chart with the exact setup you are looking for, I am sure that we
could then assist in helping you write the code you are looking for.
>
> Regards,
> Tim.
> -----Original Message-----
> From: Paul Lerno [mailto:paul.lerno@x...]
> Sent: Tuesday, 20 January 2004 9:41 PM
> To: equismetastock@xxxxxxxxxxxxxxx
> Subject: Re: [EquisMetaStock Group] formula
>
>
> Hi Tim,
> Thanks for your answer.
> I am looking for a formula for use in an explorer.
> I have the following formula, but I am seurching a better one.
> first: a bottom above a preceding bottom: LLV(c,5)>LLV(c,20)
> second and more recently: price is rising above a preceding
top: c>ref(HHV(c,20),-1)
> My problem is this: the explorer selects some stocks that does
n't correspond with
> "a bottom above the preceding bottom followed by price is
rising above preceding top"
> Greetings
> Paul
>
>
> ----- Original Message -----
> From: Tim Hyder
> To: equismetastock@xxxxxxxxxxxxxxx
> Sent: Monday, January 19, 2004 10:20 PM
> Subject: RE: [EquisMetaStock Group] formula
>
>
> Hi Paul,
>
> If you can specify when the event would of occurred, i.e. do
you want it to occur after a certain event, such as in the example
below. Which is, what is the high of the most recent low after you
get a close below the 10 day moving average. A positive signal can
then be generated once the price closes above this low.
>
> {Get the high of the most recent low}
> Hg:=LowestSince(1,Cross(Mov(C,10,W),C),H));
> Buy:=C>Hg;
>
> If you are not working from a specific event, then the best
you can do is to use the LLV function. Using this function it is
important to note that you have to nominate a look back period and as
such the results can be a lot less accurate, as the actual low you
are looking for can be outside of the look back period.
>
> {Get the high of the lowest low over the look back period}
> Hg:=LLV(H,10));
> Buy:=C>Hg;
>
> I hope this helps.
>
> Regards,
> Tim.
>
>
> -----Original Message-----
> From: Paul Lerno [mailto:paul.lerno@x...]
> Sent: Thursday, 15 January 2004 9:15 PM
> To: equismetastock@xxxxxxxxxxxxxxx
> Subject: Re: [EquisMetaStock Group] formula
>
>
> Hi Tim,
> Thanks for your answer.
> I see now that I have formulated my question bad.
> I try to re-formulate "a bottom above the preceding bottom
x days (unknown) ago and the price is now rising above preceding top
x-y days (x and y unknown)ago, so that the price seems to climb on a
stairs".
> Looking te read you.
> Thanks
> Paul
>
> ----- Original Message -----
> From: Tim Hyder
> To: equismetastock@xxxxxxxxxxxxxxx
> Sent: Tuesday, January 13, 2004 10:25 PM
> Subject: RE: [EquisMetaStock Group] formula
>
>
> Hi Paul,
>
> The code you are after is
> L>Ref(L,-1) and H>(Ref(H,-1)
>
> and if it is important that the Low for today starts from
inside of yesterday's price range, the code would read.
> L>Ref(L,-1) and L<Ref(H,-1) and H>(Ref(H,-1)
>
> Regards,
> Tim.
> -----Original Message-----
> From: Paul Lerno [mailto:paul.lerno@x...]
> Sent: Wednesday, 14 January 2004 12:24 AM
> To: equis metastock
> Subject: [EquisMetaStock Group] formula
>
>
> Hi,
> I am a new member.
> Is there someone who can send me the formula
for "bottom above preceding bottom and rising above preceding top"?
> I am looking forward to read you.
> Thanks.
> Paul
>
>
> --------------------------------------------------------------------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/equismetastock/
>
> b.. To unsubscribe from this group, send an email to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the
Yahoo! Terms of Service.
>
>
>
>
> --------------------------------------------------------------------
--
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/equismetastock/
>
> b.. To unsubscribe from this group, send an email to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo!
Terms of Service.
>
>
>
>
>
> --------------------------------------------------------------------
----
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/equismetastock/
>
> b.. To unsubscribe from this group, send an email to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo!
Terms of Service.
>
>
>
>
>
> --------------------------------------------------------------------
------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/equismetastock/
>
> b.. To unsubscribe from this group, send an email to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo!
Terms of Service.
>
>
>
>
>
> --------------------------------------------------------------------
--------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/equismetastock/
>
> b.. To unsubscribe from this group, send an email to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms
of Service.
>
>
>
>
> --------------------------------------------------------------------
----------
> Yahoo! Groups Links
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/equismetastock/
>
> b.. To unsubscribe from this group, send an email to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/BefplB/TM
---------------------------------------------------------------------~->
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
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/
|