PureBytes Links
Trading Reference Links
|
I'll take a crack at this :
FirstPeak = PeakBar( High, 0, 1);
SecondPeak = PeakBar( High, 0, 1);
//The above should provide the number of bars since the first and
//second peak. Now I assume that you only want to get the subsequent
//highs from the last value in the database
// Now barcount gives the total number of bars
// I'll assume you want an atr of 20
FirstIndex = barcount - FirstPeak[barcount] ;
SecondIndex = barcount - SecondPeak[barcount] ;
FirstHigh = High[FirstIndex] ;
AtrArray = ATR(20) ;
for ( i=SecondIndex; i < FirstIndex ; i ++
{
if ( Low[i] < FirstHigh - AtrArray[i] )
// do whatever you want if its true
}
--- In amibroker@xxxxxxxxxxxxxxx, "fborriel" <f.borriello@xxxx> wrote:
> Hi, Jason
>
> Thanks a lot. I learned a lot studying your IB.. but ...
> In fact what I want exectly is : to locate TWO subsequent HIGHs and
> then look if there is between those two Highs a Low smaller than the
> first High minus ATR. Does it make sense ?
>
> Thanks again
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> > Fborriel,
> >
> > I am not sure exactly what you are after but this should get you
> started....
> >
> >
> > x=HHV(C,20);
> > y=BarsSince(C==LastValue(x));
> >
> > you could plot this to check it out......
> >
> >
> > x=HHV(C,20);
> > y=BarsSince(C==LastValue(x));
> > Plot(C,"",4,64);
> > Plot(C==LastValue(x),"High ",4,2|styleOwnScale);
> > //Title="hhv "+x+" bars since high "+y;
> > Plot(x,"",5,1);
> > Title="hhv"+x+" Price "+C+ " Barssince high " +y;
> >
> >
> >
> > Regards,
> > Jayson
> > -----Original Message-----
> > From: fborriel [mailto:f.borriello@x...]
> > Sent: Thursday, March 04, 2004 10:31 AM
> > To: amibroker@xxxxxxxxxxxxxxx
> > Subject: [amibroker] Re: What is the number of a specific array's
> cell ?
> >
> >
> > Thanks, for sure you must be right but..
> > 1)I'm not very "easy" with Barssince and..
> > 2) Eventually I think I MUST get the bar number because I intend to
> > program a loop between two bars
> >
> > Is there a way ?
> >
> > TIA
> >
> >
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "Jayson" <jcasavant@xxxx> wrote:
> > > sounds like barssince()
> > >
> > > Regards,
> > > Jayson
> > > -----Original Message-----
> > > From: fborriel [mailto:f.borriello@x...]
> > > Sent: Wednesday, March 03, 2004 11:52 AM
> > > To: amibroker@xxxxxxxxxxxxxxx
> > > Subject: [amibroker] What is the number of a specific array's
> > cell ?
> > >
> > >
> > > I'm sure it must be quite easy but I didn't get the answer going
> > > through the Help book.
> > > In fact my real problem is : I look for the HHV for instance and
> I
> > > want to Know tne number of bar elapsed till NOW and this sort of
> > > things. TIA
> > >
> > >
> > >
> > > Send BUG REPORTS to bugs@xxxx
> > > Send SUGGESTIONS to suggest@xxxx
> > > -----------------------------------------
> > > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > > --------------------------------------------
> > > Check group FAQ at:
> > > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> > >
> > >
> > >
> > > -----------------------------------------------------------------
> --
> > ---------
> > > ----
> > > Yahoo! Groups Links
> > >
> > > a.. To visit your group on the web, go to:
> > > http://groups.yahoo.com/group/amibroker/
> > >
> > > b.. To unsubscribe from this group, send an email to:
> > > amibroker-unsubscribe@xxxxxxxxxxxxxxx
> > >
> > > c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> > Service.
> >
> >
> >
> > Send BUG REPORTS to bugs@xxxx
> > Send SUGGESTIONS to suggest@xxxx
> > -----------------------------------------
> > Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> > (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> > --------------------------------------------
> > Check group FAQ at:
> > http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> >
> >
> >
> > -------------------------------------------------------------------
> ---------
> > ----
> > Yahoo! Groups Links
> >
> > a.. To visit your group on the web, go to:
> > http://groups.yahoo.com/group/amibroker/
> >
> > b.. To unsubscribe from this group, send an email to:
> > amibroker-unsubscribe@xxxxxxxxxxxxxxx
> >
> > c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service.
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|