PureBytes Links
Trading Reference Links
|
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/
|