[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [EquisMetaStock Group] formula



PureBytes Links

Trading Reference Links




Hi Tim,
Thanks for your attention.
I try to draw the setup I am looking for, building 
an exploration to scan for stocks.
 
 
<FONT face=Arial 
size=2>                               
I                   
 later: price rising above preceding top
<FONT face=Arial 
size=2>              
I             
I
<FONT face=Arial 
size=2>            
I   I         I
<FONT face=Arial 
size=2>          
I       I    I
I       
I           
I                 
first: bottom above preceding bottom
  I   I 
    I 
 
 
Greeting,
Paul
 
<BLOCKQUOTE 
>
  ----- Original Message ----- 
  <DIV 
  >From: 
  Tim Hyder 
  To: <A 
  title=equismetastock@xxxxxxxxxxxxxxx 
  href="">equismetastock@xxxxxxxxxxxxxxx 
  
  Sent: Tuesday, January 20, 2004 11:03 
  PM
  Subject: RE: [EquisMetaStock Group] 
  formula
  
  HI 
  Paul,
  <FONT face=Arial color=#0000ff 
  size=2> 
  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.
  <FONT face=Arial color=#0000ff 
  size=2> 
  <FONT face=Arial color=#0000ff 
  size=2>Regards,
  <FONT face=Arial color=#0000ff 
  size=2>Tim.
  
    
    <FONT 
    face=Tahoma size=2>-----Original Message-----From: Paul Lerno 
    [mailto:paul.lerno@xxxxxxxxxx] Sent: Tuesday, 20 January 2004 
    9:41 PMTo: equismetastock@xxxxxxxxxxxxxxxSubject: 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
    <BLOCKQUOTE 
    >
      "a bottom above the preceding bottom 
      followed by price is rising above preceding top"
      Greetings
      Paul
       
       
      ----- Original Message ----- 
      <DIV 
      >From: 
      Tim Hyder 
      To: <A 
      title=equismetastock@xxxxxxxxxxxxxxx 
      href="">equismetastock@xxxxxxxxxxxxxxx 
      
      Sent: Monday, January 19, 2004 10:20 
      PM
      Subject: RE: [EquisMetaStock Group] 
      formula
      
      <FONT face=Arial color=#0000ff 
      size=2>Hi Paul,
      <FONT face=Arial color=#0000ff 
      size=2> 
      <FONT face=Arial color=#0000ff 
      size=2>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. 
      <FONT face=Arial color=#0000ff 
      size=2> 
      <FONT face=Arial color=#0000ff 
      size=2>{Get the high of the most recent low}
      <FONT face=Arial color=#0000ff 
      size=2>Hg:=LowestSince(1,Cross(Mov(C,10,W),C),H));
      <FONT face=Arial color=#0000ff 
      size=2>Buy:=C>Hg;
      <FONT face=Arial color=#0000ff 
      size=2> 
      <FONT face=Arial color=#0000ff 
      size=2>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.
      <FONT face=Arial color=#0000ff 
      size=2> 
      
      <FONT face=Arial color=#0000ff 
      size=2>{Get the high of the lowest low over the look back 
      period}
      <FONT face=Arial color=#0000ff 
      size=2>Hg:=LLV(H,10));
      <FONT face=Arial color=#0000ff 
      size=2>Buy:=C>Hg;
      <FONT face=Arial color=#0000ff 
      size=2> 
      <FONT face=Arial color=#0000ff 
      size=2>I hope this helps.
      <FONT face=Arial color=#0000ff 
      size=2> 
      <FONT face=Arial color=#0000ff 
      size=2>Regards,
      <FONT face=Arial color=#0000ff 
      size=2>Tim.
      <FONT face=Arial color=#0000ff 
      size=2> 
      <FONT face=Arial color=#0000ff 
      size=2> 
      -----Original Message-----From: 
      Paul Lerno [mailto:paul.lerno@xxxxxxxxxx] Sent: Thursday, 15 
      January 2004 9:15 PMTo: 
      equismetastock@xxxxxxxxxxxxxxxSubject: 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
         
        <BLOCKQUOTE 
        >
          ----- Original Message ----- 
          <DIV 
          >From: 
          Tim Hyder 
          
          To: <A 
          title=equismetastock@xxxxxxxxxxxxxxx 
          href="">equismetastock@xxxxxxxxxxxxxxx 
          
          Sent: Tuesday, January 13, 2004 
          10:25 PM
          Subject: RE: [EquisMetaStock 
          Group] formula
          
          <FONT face=Arial color=#0000ff 
          size=2>Hi Paul,
          <FONT face=Arial color=#0000ff 
          size=2> 
          <FONT face=Arial color=#0000ff 
          size=2>The code you are after is
          <FONT face=Arial color=#0000ff 
          size=2>L>Ref(L,-1) and H>(Ref(H,-1)
          <FONT face=Arial color=#0000ff 
          size=2> 
          <FONT face=Arial color=#0000ff 
          size=2>and if it is important that the Low for today starts from 
          inside of yesterday's price range, the code would 
          read.
          <FONT face=Arial color=#0000ff 
          size=2><FONT face=Arial color=#0000ff 
          size=2>L>Ref(L,-1) and L<Ref(H,-1) and 
          H>(Ref(H,-1)
          <FONT face=Arial color=#0000ff 
          size=2> 
          <FONT face=Arial color=#0000ff 
          size=2>Regards,
          <FONT face=Arial color=#0000ff 
          size=2>Tim.
          
            
            <FONT 
            face=Tahoma size=2>-----Original Message-----From: Paul 
            Lerno [mailto:paul.lerno@xxxxxxxxxx] Sent: Wednesday, 14 
            January 2004 12:24 AMTo: equis 
            metastockSubject: [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
            
              To visit your group on the web, go to:<A 
              href="">http://groups.yahoo.com/group/equismetastock/  

              To unsubscribe from this group, send an email to:<A 
              href="">equismetastock-unsubscribe@xxxxxxxxxxxxxxx  

              Your use of Yahoo! Groups is subject to the <A 
              href="">Yahoo! Terms of 
              Service. 
          
          Yahoo! Groups Links
          
            To visit your group on the web, go to:<A 
            href="">http://groups.yahoo.com/group/equismetastock/  

            To unsubscribe from this group, send an email to:<A 
            href="">equismetastock-unsubscribe@xxxxxxxxxxxxxxx  

            Your use of Yahoo! Groups is subject to the <A 
            href="">Yahoo! Terms of 
            Service. 
        
        Yahoo! Groups Links
        
          To visit your group on the web, go to:<A 
          href="">http://groups.yahoo.com/group/equismetastock/  

          To unsubscribe from this group, send an email to:<A 
          href="">equismetastock-unsubscribe@xxxxxxxxxxxxxxx  

          Your use of Yahoo! Groups is subject to the <A 
          href="">Yahoo! Terms of Service. 
          
      
      Yahoo! Groups Links
      
        To visit your group on the web, go to:<A 
        href="">http://groups.yahoo.com/group/equismetastock/  

        To unsubscribe from this group, send an email to:<A 
        href="">equismetastock-unsubscribe@xxxxxxxxxxxxxxx  

        Your use of Yahoo! Groups is subject to the <A 
        href="">Yahoo! Terms of Service. 
        
    
    Yahoo! Groups Links
    
      To visit your group on the web, go to:<A 
      href="">http://groups.yahoo.com/group/equismetastock/  

      To unsubscribe from this group, send an email to:<A 
      href="">equismetastock-unsubscribe@xxxxxxxxxxxxxxx  

      Your use of Yahoo! Groups is subject to the <A 
      href="">Yahoo! Terms of Service. 
    
  
  Yahoo! Groups Links
  
    To visit your group on the web, go to:<A 
    href="">http://groups.yahoo.com/group/equismetastock/  

    To unsubscribe from this group, send an email to:<A 
    href="">equismetastock-unsubscribe@xxxxxxxxxxxxxxx  

    Your use of Yahoo! Groups is subject to the <A 
    href="">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/equismetastock/ 
To unsubscribe from this group, send an email to:equismetastock-unsubscribe@xxxxxxxxxxxxxxx 
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.