PureBytes Links
Trading Reference Links
|
Fred/Graham
Thanks to you both for your prompt responses. I'll give your
suggestions a go.
Best regards.
--- In amibroker@xxxxxxxxxxxxxxx, "Fred S. Esch" <fesch@xxx> wrote:
>
> Dear Bernard,
>
> Does this accomplish your purpose?
>
> This code assumes that "Today" represents one of the last two
days.
>
>
>
> YrlyHi = H>=Ref(HHV(H,250),-1);
>
> RecentYrlyHi = IIf(BarsSince(YrlyHi)<=1,1,0);
>
>
>
> If you want yesterday and the day before yesterday to represent the
last two
> days then simply substitute:
>
>
>
> RecentYrlyHi = IIf(BarsSince(YrlyHi)<=2,1,0);
>
>
>
> Hope this works for you.
>
>
>
> Regards,
>
>
>
> Fred
>
> _____
>
> From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx]
On Behalf
> Of bernardedmond01
> Sent: Sunday, April 29, 2007 2:28 PM
> To: amibroker@xxxxxxxxxxxxxxx
> Subject: [amibroker] Annual High
>
>
>
> Hello
> I'm trying to code that the annual high occurred in the last 2 days.
>
> I originally coded:
> BarsSince (HHV(H,250))<=2;
> This gives inaccurate results, so I presume is incorrect code.
>
> I've seen examples in the library, from which I've also translated:
> Barssince (Ref (HHV(H,250), -1))<=2;
> This also gives incorrect answers.
>
> I'm not a coder so I've obviously made a basic error. Can someone
> help me out please?
>
> With reference to earlier posts, a simple glossary would really
help.
> Is there one?
>
> Good trading,
> Bernard
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|