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

RE: [amibroker] Annual High



PureBytes Links

Trading Reference Links

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





SPONSORED LINKS
Investment management software Investment property software Investment software
Investment tracking software Return on investment software

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___