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

RE: [amibroker] How to relate a date to barindex



PureBytes Links

Trading Reference Links

try this
d = dayssince1900();
say event = cross(c, ema(c, 50);
ayearago = valuewhen(event, d - 365);
to translate it to datetime
dt = valuewhen(d == ayearago, datetime());
 
 


From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf Of tipequity
Sent: Thursday, 17 July 2008 3:55 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] How to relate a date to barindex

I am trying to find the date for 252 bar ago. I have written the
following code. However, it does not work! any suggestion is much
appreciated. TIA

SetBarsRequired(10000);
BarIndx = BarIndex();
aYearAgo = BarIndx - 252;

AYearAgoDate = LastValue(ValueWhen ( BarIndx <= aYearAgo ,DateTime()));
_TRACE("AYearAgoDate: " + NumToStr( AYearAgoDate));

Title =
"BarIndex: " + BarIndx
+ " \n" + "aYearAgoBar: " + aYearAgo
+ " \n" + "A Year Ago Date: " + WriteVal( AYearAgoDate , formatDateTime)
+ " \n" + Interval(2) + " - " + Date() ;

__._,_.___

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




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

__,_._,___