PureBytes Links
Trading Reference Links
|
Paul,
A couple of thoughts. First, are you looking for a double bottom or a
fractal low? Second, turning points are not always best defined by
the close but rather by price range. Try using the price range (H-L)
and see if that makes a difference.
Preston
--- In equismetastock@xxxxxxxxxxxxxxx, "Paul Lerno" <paul.lerno@xxxx>
wrote:
> MessageHi 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 Sponsor
> ADVERTISEMENT
>
>
>
>
>
> --------------------------------------------------------------------
----------
> 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/
|